diff options
Diffstat (limited to 'website/src/pages')
| -rw-r--r-- | website/src/pages/blog/index.astro | 2 | ||||
| -rw-r--r-- | website/src/pages/index.astro | 2 |
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> |
