/* site-footer.tsx spboucher.ai Web Author: Simon-Pierre Boucher Mail: contact@spboucher.ai */ import Link from "next/link"; import { Github, Mail } from "lucide-react"; const footerNav = [ { href: "/research", label: "Research" }, { href: "/teaching", label: "Teaching" }, { href: "/apps", label: "Apps" }, { href: "/blog", label: "Blog" }, { href: "/cv", label: "CV" }, ]; export function SiteFooter() { return ( ); }