mirror of
https://github.com/stonith404/pingvin-share.git
synced 2025-01-15 01:14:27 -05:00
Add link to NotFound page
This commit is contained in:
parent
b8ec02f711
commit
d05bea4a7e
1 changed files with 9 additions and 3 deletions
|
@ -8,6 +8,7 @@ import {
|
|||
Group,
|
||||
} from "@mantine/core";
|
||||
import Meta from "../components/Meta";
|
||||
import { NextLink } from "@mantine/next";
|
||||
|
||||
const useStyles = createStyles((theme) => ({
|
||||
root: {
|
||||
|
@ -46,10 +47,15 @@ const ErrorNotFound = () => {
|
|||
<Title align="center" order={3}>
|
||||
Oops this page doesn't exist.
|
||||
</Title>
|
||||
<Text color="dimmed" align="center" className={classes.description}>
|
||||
</Text>
|
||||
<Text
|
||||
color="dimmed"
|
||||
align="center"
|
||||
className={classes.description}
|
||||
></Text>
|
||||
<Group position="center">
|
||||
<Button variant="light">Bring me back</Button>
|
||||
<Button component={NextLink} href="/" variant="light">
|
||||
Bring me back
|
||||
</Button>
|
||||
</Group>
|
||||
</Container>
|
||||
</>
|
||||
|
|
Loading…
Add table
Reference in a new issue