import Link from "next/link"; export default function Footer() { const scrollToSection = (id: string) => { const element = document.getElementById(id); if (element) { element.scrollIntoView({behavior: "smooth"}); } }; return ( ); }