summaryrefslogtreecommitdiff
path: root/src/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'src/layouts')
-rw-r--r--src/layouts/Layout.astro2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index ca567f6..f63b0ad 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -1,5 +1,6 @@
---
import Footer from '../components/Footer.astro';
+import Navbar from '../components/Navbar.astro';
import translate from '../i18n/translate';
import site from '../i18n/translations/site';
import type Locale from '../types/Locale';
@@ -26,6 +27,7 @@ const t = translate(locale);
<title>{title} | {t(site, { key: 'title' })}</title>
</head>
<body>
+ <Navbar locale={locale} />
<slot />
<Footer />
</body>