+
+
\ No newline at end of file
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index 121350c..ba7e0d7 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -1,9 +1,14 @@
---
+import Navbar from '../components/navbar.astro';
+import NavbarEntry from '../components/navbarEntry.astro';
+import navdata from '../../static/_navdata.json'
+
export interface Props {
title: string;
+ currentpage: string;
}
-const { title } = Astro.props;
+const { currentpage, title } = Astro.props;
const description: string = "A reference for all esports Servants, CEs and already completed TAs that Firq can provide. Contact information available as well.";
---
@@ -25,6 +30,9 @@ const description: string = "A reference for all esports Servants, CEs and alrea
+
+ {navdata.map((item) => ())}
+