From d17bca56238e9ca326d60e58230d0d354f23bfe8 Mon Sep 17 00:00:00 2001
From: seth
Date: Wed, 9 Oct 2024 10:59:13 -0400
Subject: back to astro for hopefully the last time (#146)
---
src/layouts/Base.astro | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
create mode 100644 src/layouts/Base.astro
(limited to 'src/layouts')
diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro
new file mode 100644
index 0000000..2aa3d9e
--- /dev/null
+++ b/src/layouts/Base.astro
@@ -0,0 +1,21 @@
+---
+import Footer from "@components/Footer.astro";
+import Head from "@components/Head.astro";
+import Nav from "@components/Nav.astro";
+
+const { title, description } = Astro.props.frontmatter || Astro.props;
+---
+
+
+
+
+
+
+
+
+
+
+
+
--
cgit v1.2.3