From 0deb79a0d0b343f8bb971add1025641f5ff7ca62 Mon Sep 17 00:00:00 2001 From: jordan Date: Wed, 28 Jan 2026 07:19:59 +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..65b5388 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,21 @@ +--- +interface Props { + title: string; +} + +const { title } = Astro.props; +--- + + + + + + + + + {title} + + + + +