From a0485ad26353a08562c13c14ea9de73fd705f9de Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 1 Jan 2024 16:32:41 -0500 Subject: Initial Rewrite --- src/layouts/Layout.astro | 79 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 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..23e3efb --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,79 @@ +--- +interface Props { + title: string; +} + +const { title } = Astro.props; +import Navbar from '../components/Navbar.astro'; +--- + + + + + + + + + + + + + {title} + + + + +
+

© Copyright 2018-2024

+
+ + + -- cgit v1.2.3