chore: auf Wiedersehen MUI, hallo Ant Design

This commit is contained in:
Maël Gangloff
2024-07-26 16:45:10 +02:00
parent a384140aa7
commit a15c1b2c2f
32 changed files with 923 additions and 1230 deletions

View File

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