From f64e114ba7539deb277b74ba0825b67e3c64d724 Mon Sep 17 00:00:00 2001 From: jordan Date: Wed, 28 Jan 2026 07:09:26 +0000 Subject: [PATCH] Add src/layouts/Layout.astro from template --- src/layouts/Layout.astro | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/layouts/Layout.astro diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro new file mode 100644 index 0000000..1b9a98e --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,21 @@ +--- +interface Props { + title: string; +} + +const { title } = Astro.props; +--- + + + + + + + + + {title} + + + + +