import Link from 'next/link' import { useEffect } from 'react' function FourOhFour() { useEffect(() => { /* eslint-disable no-undef */ if ( typeof globalThis?.analytics?.track === 'function' && typeof globalThis?.document?.referrer === 'string' && typeof globalThis?.location?.href === 'string' ) globalThis.analytics.track({ event: '404 Response', action: globalThis.location.href, label: globalThis.document.referrer }) /* eslint-enable no-undef */ }, []) return (

Page Not Found

We're sorry but we can't find the page you're looking for.

Back to Home

) } export default FourOhFour