summaryrefslogtreecommitdiff
path: root/src/components/Navbar.astro
blob: 8174efea4624f5be5df782252a6e111c56792f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
import type Locale from '../types/Locale';
import SwitchLanguageLink from './SwitchLanguageLink.astro';

interface Props {
  locale: Locale;
}

const { locale } = Astro.props;
---

<nav class="dark">
  <SwitchLanguageLink currentLocale={locale} />
</nav>