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 ( -
-
-
- {/* 404 图标 */} -
-
404
-
- - {/* 错误文本 */} -
-

- {t('notFound.title')} -

-

- {t('notFound.description')} -

-
- - {/* 按钮组 */} -
- - -
- - {/* 帮助文档链接 */} -
-

- - {t('notFound.help')} - -

-
-
-
-
- ); -}