--- import MainHead from '../components/MainHead.astro'; import Nav from '../components/Nav.astro'; import Footer from '../components/Footer.astro'; interface Props { title?: string | undefined; description?: string | undefined; } const { title, description } = Astro.props; ---