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

By subscribing, you agree to our{' '} Privacy Policy .

) : ( )}
); } export default Footer;