Initial Commit

This commit is contained in:
Stavros
2025-01-19 13:40:06 +02:00
commit c0e085ea10
34 changed files with 3195 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { Button, Paper, Text } from "@mantine/core";
import { Layout } from "../components/layouts/layout";
export const NotFoundPage = () => {
return (
<Layout>
<Paper shadow="md" p={30} mt={30} radius="md" withBorder>
<Text size="xl" fw={700}>
Not found
</Text>
<Text>The page you are looking for does not exist.</Text>
<Button fullWidth mt="xl" onClick={() => window.location.replace("/")}>
Go home
</Button>
</Paper>
</Layout>
);
};