--- import Layout from "~/layouts/Base.astro"; import Header from "~/components/ui/Header.astro"; import Strapline from "~/components/ui/Strapline.astro"; import Footer from "~/components/ui/Footer.astro"; interface Props { title: string, description: string, icon?: string, date?: Date, back?: string, backLabel?: string } const { title, description, icon, date, back, backLabel } = Astro.props; ---