--- import "@/styles/global.css"; import Footer from "@/components/Footer.astro"; import Header from "@/components/Header.astro"; interface Props { title: string; description: string; } const { title, description } = Astro.props; ---