diff --git a/astro.config.mjs b/astro.config.mjs
index 8a015d2..a9627e2 100644
--- a/astro.config.mjs
+++ b/astro.config.mjs
@@ -7,5 +7,5 @@ import tailwind from '@astrojs/tailwind';
export default defineConfig({
integrations: [tailwind()],
site: 'https://freymaurer.github.io',
- base: 'astro-poc'
+ base: 'astro-poc',
});
\ No newline at end of file
diff --git a/src/components/CircleGraphNavigation.astro b/src/components/CircleGraphNavigation.astro
new file mode 100644
index 0000000..4ba9f50
--- /dev/null
+++ b/src/components/CircleGraphNavigation.astro
@@ -0,0 +1,51 @@
+---
+const circles = [
+ { id: 1, cx: 10, cy: 20, r: 2, href: '#link1' },
+ { id: 2, cx: 30, cy: 40, r: 2, href: '#link2' },
+ { id: 3, cx: 50, cy: 20, r: 2, href: '#link3' },
+ { id: 4, cx: 70, cy: 40, r: 2, href: '#link4' },
+];
+---
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Footer.astro b/src/components/Footer.astro
new file mode 100644
index 0000000..b1cfe66
--- /dev/null
+++ b/src/components/Footer.astro
@@ -0,0 +1,22 @@
+
\ No newline at end of file
diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro
index bda6df8..e62dad0 100644
--- a/src/components/Navbar.astro
+++ b/src/components/Navbar.astro
@@ -2,15 +2,15 @@
import ThemeController from "./ThemeController.astro"
const links = [
- {href: "./", text: "Home"},
- {href: "./about", text: "About"},
- {href: "./knowledgebase", text: "Knowledgebase"},
- {href: "./tools", text: "Tools"},
- {href: "./Partners", text: "Partners"},
+ {href: "/astro-poc", text: "Home"},
+ {href: "/astro-poc/about", text: "About"},
+ {href: "/astro-poc/knowledgebase", text: "Knowledgebase"},
+ {href: "/astro-poc/tools", text: "Tools"},
+ {href: "/astro-poc/Partners", text: "Partners"},
]
---
-
+
@@ -45,6 +45,6 @@ const links = [
-
+
\ No newline at end of file
diff --git a/src/layouts/Layout.astro b/src/layouts/BaseLayout.astro
similarity index 83%
rename from src/layouts/Layout.astro
rename to src/layouts/BaseLayout.astro
index 568952e..83424d1 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/BaseLayout.astro
@@ -1,5 +1,6 @@
---
import Navbar from '../components/Navbar.astro';
+import Footer from '../components/Footer.astro';
interface Props {
title: string;
@@ -20,8 +21,13 @@ const { title } = Astro.props;
{title}
-
-
+