import { Link } from "react-router-dom"; import { useScrollToTop } from "@/hooks/useScrollToTop"; const LINKS = [ { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, ]; export function Footer() { const handleLogoClick = useScrollToTop(); return ( ); }