import Link from "next/link"; import { Shield, Mail, Linkedin, Github } from "lucide-react"; const footerLinks = { services: [ { name: "Audit IAM", href: "/services#audit" }, { name: "Intégration OIDC", href: "/services#oidc" }, { name: "Migration Zero Trust", href: "/services#zero-trust" }, { name: "Sécurisation AD / Entra", href: "/services#ad-entra" }, ], resources: [ { name: "Articles", href: "/articles" }, { name: "Démo OIDC", href: "/demos/oidc-flow" }, { name: "Démo OAuth", href: "/demos/oauth-playground" }, { name: "Démo Zero Trust", href: "/demos/zero-trust" }, ], }; export function Footer() { return ( ); }