import Link from 'next/link'; import { getTranslations } from 'next-intl/server'; import { defaultLocale } from '@/i18n/config'; export default async function NotFound() { const t = await getTranslations('pages.notfound'); return (

404

{t('title')}

{t('description')}

{t('backHome')}
); }