feat: add Header with language switcher and theme toggle

Also disables Vitest file parallelism since concurrent astro builds
across test files raced on the shared dist/ output.
This commit is contained in:
2026-08-02 15:57:35 +02:00
parent 1d65bb7aa8
commit 86049dd8b5
8 changed files with 119 additions and 0 deletions
+2
View File
@@ -1,8 +1,10 @@
---
import BaseLayout from '../../layouts/BaseLayout.astro';
import Header from '../../components/Header.astro';
const locale = 'fr';
---
<BaseLayout locale={locale}>
<Header locale={locale} />
<h1>Ombrora</h1>
</BaseLayout>