78eb58844e
Integrate a dark mode, an accessibility panel with options for dyslexia, high contrast, and text scaling, and enhance keyboard navigation. Update documentation to reflect these changes. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 923ae0e3-a363-4db8-b04a-e8baca2a1330 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: bbd001b6-1b5f-4425-9310-55a9081dabf8 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8af7d2ec-2cc3-4ece-8af3-9f071488d072/923ae0e3-a363-4db8-b04a-e8baca2a1330/vOeFCU4 Replit-Helium-Checkpoint-Created: true
93 lines
3.7 KiB
TypeScript
93 lines
3.7 KiB
TypeScript
import { Switch, Route, Router as WouterRouter, Link } from "wouter";
|
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
import { Toaster } from "@/components/ui/toaster";
|
|
import { TooltipProvider } from "@/components/ui/tooltip";
|
|
import NotFound from "@/pages/not-found";
|
|
import Home from "@/pages/home";
|
|
import About from "@/pages/about";
|
|
import Transparence from "@/pages/transparence";
|
|
import Flyer from "@/pages/flyer";
|
|
import { AccessibilityProvider } from "@/hooks/use-accessibility";
|
|
import { AccessibilityPanel } from "@/components/accessibility-panel";
|
|
|
|
const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
retry: false,
|
|
refetchOnWindowFocus: false,
|
|
},
|
|
},
|
|
});
|
|
|
|
function Navbar() {
|
|
return (
|
|
<header className="sticky top-0 z-50 w-full border-b border-border/40 bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
|
|
<div className="container mx-auto max-w-7xl flex h-16 items-center px-4 md:px-8">
|
|
<Link href="/" className="flex items-center gap-2 mr-6 font-serif text-xl font-bold tracking-tight text-primary" data-testid="nav-home-link">
|
|
La Voix du Peuple
|
|
</Link>
|
|
<nav className="flex items-center gap-6 text-sm font-medium" aria-label="Navigation principale">
|
|
<Link href="/" className="transition-colors hover:text-foreground/80 text-foreground/60" data-testid="nav-manifesto-link">Manifeste</Link>
|
|
<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>
|
|
<Link href="/flyer" className="transition-colors hover:text-foreground/80 text-foreground/60" data-testid="nav-flyer-link">Flyer QR</Link>
|
|
</nav>
|
|
<div className="ml-auto flex items-center gap-2">
|
|
<AccessibilityPanel />
|
|
<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>
|
|
);
|
|
}
|
|
|
|
function Router() {
|
|
return (
|
|
<div className="min-h-screen flex flex-col font-sans">
|
|
{/* Lien d'évitement pour lecteurs d'écran */}
|
|
<a
|
|
href="#main-content"
|
|
className="sr-only focus:not-sr-only focus:absolute focus:top-2 focus:left-2 focus:z-[100] focus:bg-primary focus:text-primary-foreground focus:px-4 focus:py-2 focus:rounded-sm focus:text-sm focus:font-semibold"
|
|
>
|
|
Aller au contenu principal
|
|
</a>
|
|
<Navbar />
|
|
<main id="main-content" className="flex-1 flex flex-col" tabIndex={-1}>
|
|
<Switch>
|
|
<Route path="/" component={Home} />
|
|
<Route path="/about" component={About} />
|
|
<Route path="/transparence" component={Transparence} />
|
|
<Route path="/flyer" component={Flyer} />
|
|
<Route component={NotFound} />
|
|
</Switch>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function App() {
|
|
return (
|
|
<QueryClientProvider client={queryClient}>
|
|
<TooltipProvider>
|
|
<AccessibilityProvider>
|
|
<WouterRouter base={import.meta.env.BASE_URL.replace(/\/$/, "")}>
|
|
<Router />
|
|
</WouterRouter>
|
|
<Toaster />
|
|
</AccessibilityProvider>
|
|
</TooltipProvider>
|
|
</QueryClientProvider>
|
|
);
|
|
}
|
|
|
|
export default App;
|