summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Navbar.astro14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro
index 40e671b..654b085 100644
--- a/src/components/Navbar.astro
+++ b/src/components/Navbar.astro
@@ -11,14 +11,14 @@ const t = translate(locale);
---
<nav>
- <div class="nav__top-banner">
- <p class="title--small logo">
- <a href="/">
- {t(tSite, { key: 'scots-leid-associe' })}
- </a>
- </p>
+ <p class="title--small nav__logo">
+ <a href="/">
+ {t(tSite, { key: 'scots-leid-associe' })}
+ </a>
+ </p>
+ <NavLinks />
+ <div class="nav__bottom-row">
<SwitchLanguageLink />
<Breadcrumbs />
</div>
- <NavLinks />
</nav>