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.astro2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro
index 8174efe..80829d3 100644
--- a/src/components/Navbar.astro
+++ b/src/components/Navbar.astro
@@ -1,5 +1,6 @@
---
import type Locale from '../types/Locale';
+import Breadcrumbs from './Breadcrumbs.astro';
import SwitchLanguageLink from './SwitchLanguageLink.astro';
interface Props {
@@ -11,4 +12,5 @@ const { locale } = Astro.props;
<nav class="dark">
<SwitchLanguageLink currentLocale={locale} />
+ <Breadcrumbs />
</nav>