--- import Head from "../components/Head.astro"; import Nav from "../components/Nav.astro"; import Header from "../components/Header.astro"; import Footer from "../components/Footer.astro"; interface Props { title: string; description: string; pubDate?: Date; modDate?: Date; slug?: string; } const { title, description, pubDate, modDate, slug } = Astro.props; ---