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 ( -