summaryrefslogtreecommitdiff
path: root/website/src/layouts/Page.astro
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-05-12 08:33:19 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-05-12 08:33:19 +0100
commit0f75bf3443996f287b9a8a70abb0b3ac8031def8 (patch)
treec8136ceb877e6f7b0c1dc918fe5e2e3626cd5287 /website/src/layouts/Page.astro
parent88c6e8a6585c00f0a94e27f1351e77ef18518196 (diff)
Styling overhaul
Diffstat (limited to 'website/src/layouts/Page.astro')
-rw-r--r--website/src/layouts/Page.astro6
1 files changed, 5 insertions, 1 deletions
diff --git a/website/src/layouts/Page.astro b/website/src/layouts/Page.astro
index 4e5f3bb..d41e58c 100644
--- a/website/src/layouts/Page.astro
+++ b/website/src/layouts/Page.astro
@@ -1,5 +1,6 @@
---
import BaseHead from "../components/BaseHead.astro";
+import Navbar from "../components/Navbar.astro";
const { title, description } = Astro.props;
---
@@ -11,7 +12,10 @@ const { title, description } = Astro.props;
</head>
<body>
- <slot />
+ <Navbar />
+ <main>
+ <slot />
+ </main>
</body>
</html>