From 16ae8ac5465f570143ffc7980d0b1db3b7610922 Mon Sep 17 00:00:00 2001 From: Junyan Qin Date: Sun, 30 Nov 2025 21:58:28 +0800 Subject: [PATCH] chore: remove NotFound component from the application --- web/src/app/not-found.tsx | 63 --------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 web/src/app/not-found.tsx 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')} - -

-
-
-
-
- ); -}