From 92974cdbaa179b6b9cd2cc7495cc7055e449bda8 Mon Sep 17 00:00:00 2001 From: jordan Date: Wed, 28 Jan 2026 16:53:45 +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..b8baaad --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,21 @@ +--- +interface Props { + title: string; +} + +const { title } = Astro.props; +--- + + + + + + + + + {title} + + + + +