import { usePathname } from 'next/navigation'; import { Link } from './link'; const links = [ { name: 'Subscribe', path: '/' }, { name: 'Privacy Policy', path: '/privacy' }, ]; function Footer() { const pathname = usePathname(); return (