Added not found page
This commit is contained in:
parent
a271bdc64e
commit
5c7d2ec49f
1 changed files with 18 additions and 0 deletions
18
src/errors/404.tsx
Normal file
18
src/errors/404.tsx
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
import { Column, Logo, Page, Button, Padding } from '../components'
|
||||||
|
|
||||||
|
export default function NotFound() {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Page alignment="column">
|
||||||
|
<Column>
|
||||||
|
<Logo size={200} />
|
||||||
|
<h1>Error 404</h1>
|
||||||
|
<h2>Page not found</h2>
|
||||||
|
<Padding top={2} left={0} right={0} bottom={0}>
|
||||||
|
<Button edges="curved" to="/" label="Return"></Button>
|
||||||
|
</Padding>
|
||||||
|
</Column>
|
||||||
|
</Page>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue