summaryrefslogtreecommitdiff
path: root/src/components/Navbar.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Navbar.astro')
-rw-r--r--src/components/Navbar.astro18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro
index c4e31b2..40e671b 100644
--- a/src/components/Navbar.astro
+++ b/src/components/Navbar.astro
@@ -4,17 +4,21 @@ import SwitchLanguageLink from './SwitchLanguageLink.astro';
import tSite from '$i18n/translations/site';
import translate from '$i18n/translate';
import getLocaleFromPath from '$lib/getLocaleFromPath';
+import NavLinks from './NavLinks.astro';
const locale = getLocaleFromPath(Astro.url.pathname);
const t = translate(locale);
---
<nav>
- <p class="title--small logo">
- <a href="/">
- {t(tSite, { key: 'scots-leid-associe' })}
- </a>
- </p>
- <SwitchLanguageLink />
- <Breadcrumbs />
+ <div class="nav__top-banner">
+ <p class="title--small logo">
+ <a href="/">
+ {t(tSite, { key: 'scots-leid-associe' })}
+ </a>
+ </p>
+ <SwitchLanguageLink />
+ <Breadcrumbs />
+ </div>
+ <NavLinks />
</nav>