--- import { siteConfig } from '../../site.config.mjs'; interface Props { title: string; subtitle?: string; } const { title, subtitle } = Astro.props; ---

{siteConfig.site.name}

{title}

{subtitle &&

{subtitle}

}