blob: 8c174f21c3a83a4c61ca28c9105ef4f3fbeb2bc0 [file] [log] [blame]
ybt02e716d2025-04-15 17:19:32 +08001import React from 'react';
2import { Button, Result } from 'antd';
3import { Link } from 'react-router-dom';
4
ybtda5978b2025-05-31 15:58:05 +08005const NotFoundPage = () => {
ybt02e716d2025-04-15 17:19:32 +08006 return (
7 <Result
8 status="404"
9 title="404"
10 subTitle="抱歉,您访问的页面不存在。"
11 extra={
12 <Button type="primary">
13 <Link to="/">返回首页</Link>
14 </Button>
15 }
16 />
17 );
18};
19
ybtda5978b2025-05-31 15:58:05 +080020export default NotFoundPage;