diff --git a/web/src/app/not-found.tsx b/web/src/app/not-found.tsx deleted file mode 100644 index 56344679..00000000 --- a/web/src/app/not-found.tsx +++ /dev/null @@ -1,63 +0,0 @@ -'use client'; - -import { useRouter } from 'next/navigation'; -import { Button } from '@/components/ui/button'; -import { useTranslation } from 'react-i18next'; - -export default function NotFound() { - const router = useRouter(); - const { t } = useTranslation(); - - return ( -
- {t('notFound.description')} -
-