From 492d0481324c1417712686f75c2e93add17d16b5 Mon Sep 17 00:00:00 2001 From: jordan Date: Thu, 29 Jan 2026 08:37:48 +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..3691683 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,21 @@ +--- +interface Props { + title: string; +} + +const { title } = Astro.props; +--- + + + + + + + + + {title} + + + + +