'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import CustomLink from './CustomLink'; export const Footer = () => { const pathname = usePathname(); if (pathname === '/confirmation') { return; } if (pathname === '/unsubscribe') { return (
); } if (pathname === '/privacy') { return (
); } return (

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

); };