summaryrefslogtreecommitdiff
path: root/website/src/pages
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/pages
parent88c6e8a6585c00f0a94e27f1351e77ef18518196 (diff)
Styling overhaul
Diffstat (limited to 'website/src/pages')
-rw-r--r--website/src/pages/blog/index.astro2
-rw-r--r--website/src/pages/index.astro2
2 files changed, 3 insertions, 1 deletions
diff --git a/website/src/pages/blog/index.astro b/website/src/pages/blog/index.astro
index 0c617bd..61a1a46 100644
--- a/website/src/pages/blog/index.astro
+++ b/website/src/pages/blog/index.astro
@@ -2,6 +2,7 @@
import BaseHead from '../../components/BaseHead.astro';
import { SITE_TITLE, SITE_DESCRIPTION } from '../../consts';
import BlogFeed from '../../components/BlogFeed.astro';
+import Navbar from '../../components/Navbar.astro';
---
<!doctype html>
@@ -10,6 +11,7 @@ import BlogFeed from '../../components/BlogFeed.astro';
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
</head>
<body>
+ <Navbar />
<main>
<BlogFeed headingLevel={1} />
</main>
diff --git a/website/src/pages/index.astro b/website/src/pages/index.astro
index 74cf934..4e9d87b 100644
--- a/website/src/pages/index.astro
+++ b/website/src/pages/index.astro
@@ -8,4 +8,4 @@ import Page from '../layouts/Page.astro';
<Page title={SITE_TITLE} description={SITE_DESCRIPTION}>
<Me />
<BlogFeed hideAuthor />
-</Page> \ No newline at end of file
+</Page>