From 8eca2cba58fd833e8ceeba31ce6c978997e1dd72 Mon Sep 17 00:00:00 2001 From: Chris <1637083533@qq.com> Date: Mon, 28 Apr 2025 22:23:48 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=AE=8C=E5=96=84404=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=EF=BC=8C=E6=B7=BB=E5=8A=A0=E8=BF=94=E5=9B=9E=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E5=92=8C=E6=94=AF=E6=8C=81=E8=81=94=E7=B3=BB=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/app/not-found.tsx | 75 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 71 insertions(+), 4 deletions(-) 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 ( -