From 681cd8c1cc2904c562f9a58db3cbb657d58fb552 Mon Sep 17 00:00:00 2001
From: seth
Date: Tue, 16 May 2023 03:53:24 -0400
Subject: feat: rewrite with astro
---
src/layouts/Base.astro | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
create mode 100644 src/layouts/Base.astro
(limited to 'src/layouts/Base.astro')
diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro
new file mode 100644
index 0000000..2e5b480
--- /dev/null
+++ b/src/layouts/Base.astro
@@ -0,0 +1,18 @@
+---
+import Head from "@components/Head.astro";
+import Nav from "@components/Nav.astro";
+// import Footer from "@components/Footer.astro";
+import "@styles/global.sass";
+const { title, description } = Astro.props;
+---
+
+
+
+
+
+
+
+
+
+
+
--
cgit v1.2.3