import { ExclamationCircleOutlined } from "@ant-design/icons"; import { Button, Space } from "antd"; import { useNavigate } from "react-router"; export function NotFoundPage() { const navigate = useNavigate(); const handleGoHome = () => { void navigate("/"); }; return (

404

您访问的页面不存在

); }