From f2ff1aeb03400c77396c729d887bb284da963378 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Tue, 19 Sep 2023 15:21:51 -0700 Subject: Initial Commit --- src/layouts/Layout.astro | 53 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 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..b800e50 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,53 @@ +--- +interface Props { + title: string; +} + +const { title } = Astro.props; +import Header from '../components/Header.astro'; +--- + + + + + + + + + + {title} + +
+ + + + + -- cgit v1.2.3