This commit is contained in:
Ivy Turner 2025-05-05 15:55:53 +01:00
parent 5f63527955
commit f51dc7e078
No known key found for this signature in database
31 changed files with 331 additions and 88 deletions

View file

@ -3,6 +3,16 @@ 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;
---