mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-11-08 10:05:43 +00:00
Initial Commit
This commit is contained in:
18
site/src/pages/not-found-page.tsx
Normal file
18
site/src/pages/not-found-page.tsx
Normal 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>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user