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