Python 51.6%
TypeScript 46.7%
CSS 1.7%
1import Link from "next/link";23export default function NotFound() {4 return (5 <div className="max-w-md mx-auto text-center py-20">6 <div className="eyebrow">404</div>7 <h1 className="display text-[36px] mt-2">Page introuvable</h1>8 <p className="text-ink-2 mt-3 text-[15px]">Cette adresse ne correspond à aucune donnée QC26.</p>9 <div className="mt-6 flex justify-center gap-2"><Link href="/" className="rounded-[8px] bg-brand text-white px-4 py-2.5 text-[14px] font-semibold">Accueil</Link><Link href="/circonscriptions" className="rounded-[8px] border border-border px-4 py-2.5 text-[14px] font-semibold">Circonscriptions</Link></div>10 </div>11 );12}13