From 989c8d6e947c56f0241a169da02ba2558653a4b0 Mon Sep 17 00:00:00 2001 From: Alam Guardin Date: Mon, 5 Aug 2024 21:11:05 -0500 Subject: init commit --- src/layouts/Layout.astro | 50 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/layouts/Layout.astro (limited to 'src/layouts/Layout.astro') diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro new file mode 100644 index 0000000..1810971 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,50 @@ +--- +interface Props { + title: string; +} + +const { title } = Astro.props; +--- + + + + + + + + + + {title} + + + + + + -- cgit v1.2.3