import Link from "next/link"; import { contact } from "@/lib/portfolio"; const sectionLinks = [ { label: "Work", href: "#work" }, { label: "Capabilities", href: "#capabilities" }, { label: "Operator", href: "#operator" }, { label: "Contact", href: "#contact" }, ]; const elsewhereLinks = [ { label: "Git", href: contact.git }, { label: "LinkedIn", href: contact.linkedIn }, ]; export function ClosingCta() { const year = new Date().getFullYear(); return ( ); }