aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/header.svelte
blob: 57891965fca03b246d893013535f17f31d71394f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<script lang="ts">
	import { locale } from "$i18n/i18n-svelte";
	import LocaleSwitcher from "./locale-switcher.svelte";
</script>

<header>
	<a href="/{$locale}">
		<h1>Auroraklinikken</h1>
	</a>

	<LocaleSwitcher />
</header>