diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index 046a3f7..d1a796c 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -1,23 +1,25 @@ 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'); -export default function NotFound() { return ( - - -
-

404

-

Page Not Found

-

- The page you are looking for does not exist or has been moved. -

- - Go to Homepage - -
- - +
+
+

404

+

{t('title')}

+

+ {t('description')} +

+ + {t('backHome')} + +
+
); }