From 227eac690914886c5dd6d9a8bd627534c86b4a5d Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 1 Aug 2023 20:21:11 +0100 Subject: Initial commit --- frontend/src/layouts/Layout.astro | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 frontend/src/layouts/Layout.astro (limited to 'frontend/src/layouts') diff --git a/frontend/src/layouts/Layout.astro b/frontend/src/layouts/Layout.astro new file mode 100644 index 0000000..047538c --- /dev/null +++ b/frontend/src/layouts/Layout.astro @@ -0,0 +1,27 @@ +--- +import Footer from '../components/Footer.astro'; + +interface Props { + title: string; +} + +const { title } = Astro.props; +--- + + + + + + + + + + + + {title} | Scots Leid Associe + + + +