import Image from "next/image"; function LinkedinIcon({ size = 16, className = "" }: { size?: number; className?: string }) { return ( ); } const navSections = [ { title: "Navigation", links: [ { label: "About", href: "#about" }, { label: "Services", href: "#services" }, { label: "Projects", href: "#projects" }, { label: "Gallery", href: "#gallery" }, { label: "Contact", href: "#contact" }, ], }, { title: "Expertise", links: [ { label: "Systems Design", href: "#about" }, { label: "IP & Cloud Production", href: "#about" }, { label: "Broadcast Integration", href: "#about" }, { label: "XR / Virtual Production", href: "#projects" }, ], }, ]; export default function Footer() { return ( ); }