import Link from "next/link"; const navigationLinks = [ { href: "/", label: "Accueil" }, { href: "/mentions-legales", label: "Mentions légales" }, { href: "/confidentialite", label: "Confidentialité" }, ]; const contactLinks = [ { href: "https://contact.arthurp.fr", label: "contact.arthurp.fr", external: true }, { href: "mailto:contact@arthurp.fr", label: "contact@arthurp.fr", external: true }, ]; export default function SiteFooter() { const year = new Date().getFullYear(); return ( ); }