--- import '@styles/global.css'; import { ClientRouter } from 'astro:transitions'; import Header from '@components/Header.astro'; import Footer from '@components/Footer.astro'; export interface Props { title: string; frontmatter?: { title: string; }; } const title = Astro.props.title || Astro.props.frontmatter?.title || 'Unknown'; ---