import { getTranslations } from 'next-intl/server'; export default async function NotFound() { const t = await getTranslations('errors'); return (

{t('title404')}

{t('message404')}

{t('backHome')}
); }