Update site fonts and add a French flag to the navigation bar

Update CSS to use Bahnschrift for titles and a sans-serif font for body text, and add a French flag SVG to the navbar.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 923ae0e3-a363-4db8-b04a-e8baca2a1330
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 9aecc46b-faee-4e4a-962f-a8c239b6152b
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8af7d2ec-2cc3-4ece-8af3-9f071488d072/923ae0e3-a363-4db8-b04a-e8baca2a1330/g9Obdb0
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
pironantoine
2026-04-04 06:45:39 +00:00
parent 3d4a9efe8f
commit 93ba11905f
3 changed files with 22 additions and 10 deletions
+12
View File
@@ -28,6 +28,18 @@ function Navbar() {
<Link href="/about" className="transition-colors hover:text-foreground/80 text-foreground/60" data-testid="nav-about-link">À propos</Link>
<Link href="/transparence" className="transition-colors hover:text-foreground/80 text-foreground/60" data-testid="nav-transparence-link">Fonctionnement</Link>
</nav>
<div className="ml-auto flex items-center">
<span
title="République française"
aria-label="Drapeau français"
className="inline-flex overflow-hidden rounded-sm opacity-70"
style={{ width: 22, height: 15, boxShadow: "0 0 0 1px rgba(0,0,0,0.12)" }}
>
<span style={{ flex: 1, background: "#002395" }} />
<span style={{ flex: 1, background: "#EDEDED" }} />
<span style={{ flex: 1, background: "#ED2939" }} />
</span>
</div>
</div>
</header>
);