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