/* src/styles/global.css */ body { background: #0f1117; color: #c9d1d9; font-family: system-ui, sans-serif; margin: 0; } --- // src/layouts/BaseLayout.astro import '../styles/global.css'; interface Props { title: string; } const { title } = Astro.props; --- {title} --- ---
Card content