--- import '../styles/tokens.css'; import '../styles/fonts.css'; interface Props { title: string; description?: string; } const { title, description } = Astro.props; const siteTitle = title === 'Crash Test Dev' ? title : `${title} — Crash Test Dev`; const base = import.meta.env.BASE_URL; ---
{description && }