--- import Header from "../partials/Header.astro"; import Footer from "../partials/Footer.astro"; interface Props { title: string; description: string; empty?: boolean; } const { title, description, empty } = Astro.props; ---