From 53c7ce959b5c72002c5444b7d6e5b458331a4275 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Tue, 27 Aug 2024 01:05:43 -0700 Subject: Initial commit --- src/layouts/Layout.astro | 97 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 src/layouts/Layout.astro (limited to 'src/layouts') diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro new file mode 100644 index 0000000..827dc43 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,97 @@ +--- +interface Props { + title: string; +} + +const { title } = Astro.props; +--- + + + + + + + + + + + {title} + + + + + + -- cgit v1.2.3