import { useTranslations } from 'next-intl' import { Link } from '@/i18n/navigation' export default function NotFound() { const t = useTranslations('NotFound') return (

404

{t('title')}

{t('description')}

{t('goHome')} {t('goHome')}
) }