'use client'; import { Button, Typography, Space, Layout, Row, Col, Result } from 'antd'; import { useRouter } from 'next/navigation'; const { Title, Paragraph } = Typography; export default function NotFound() { const router = useRouter(); return (
{/* Ant Design 图标,可以换成 Langbot 的 Logo */}
404 页面不存在 您要查找的页面似乎不存在。请检查您输入的 URL 是否正确,或者返回首页。
需要帮助吗?您可以联系{' '} support@qq.com
); }