added page not found

main
alex 2023-06-24 19:32:06 +02:00
parent bd8ef90148
commit 7c2383025f
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
import { Button, Result } from "antd";
import { Link } from "react-router-dom";
export default function PageNotFound() {
return (
<Result
status="404"
title="404"
subTitle="Sorry, the page you visited does not exist."
extra={
<Link to="/">
<Button type="primary">Back Home</Button>
</Link>
}
/>
);
}