diff --git a/web/src/app/not-found.tsx b/web/src/app/not-found.tsx index 9a023999..0d5f0770 100644 --- a/web/src/app/not-found.tsx +++ b/web/src/app/not-found.tsx @@ -1,8 +1,75 @@ +"use client"; + +import { Button, Typography, Space, Layout, Row, Col, Result } from 'antd'; +import { useRouter } from 'next/navigation'; +import Image from 'next/image'; + +const { Title, Paragraph } = Typography; + export default function NotFound() { + const router = useRouter(); + return ( -
- {/* TODO: @qidongrui 这里404页面有时间要更新*/} -

Langbot没有找到该页面喔~

-
+ +
+
+ {/* Ant Design 图标,可以换成 Langbot 的 Logo */} +
+ +
+ +
+ + 404 + + + 页面不存在 + + + 您要查找的页面似乎不存在。请检查您输入的 URL 是否正确,或者返回首页。 + +
+ +
+ + + + +
+ +
+ + 需要帮助吗?您可以联系 support@qq.com + +
+
+
+
+
); }