1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-22 07:54:22 +00:00
triennale-appunti-steffo/pages/404.tsx

28 lines
813 B
TypeScript
Raw Normal View History

2022-02-03 03:26:51 +00:00
import { Heading, Chapter, Box, Idiomatic as I, Anchor as A, ListUnordered, ListOrdered } from '@steffo/bluelib-react'
import type { NextPage } from 'next'
2022-02-03 18:47:06 +00:00
import { Link } from "../components/compat-next"
2022-02-03 03:26:51 +00:00
const Page: NextPage = () => {
return <>
<Heading level={2}>
2022-02-03 18:47:06 +00:00
Errore 404
2022-02-03 03:26:51 +00:00
</Heading>
<Chapter>
2022-02-03 18:47:06 +00:00
<Box builtinColor="red">
2022-02-03 03:26:51 +00:00
<Heading level={3}>
2022-02-03 18:47:06 +00:00
Not found
2022-02-03 03:26:51 +00:00
</Heading>
<p>
2022-02-03 18:47:06 +00:00
La pagina che hai richiesto non è stata trovata.
2022-02-03 03:26:51 +00:00
</p>
<p>
2022-02-03 18:47:06 +00:00
Forse l'URL che hai inserito è sbagliato, o la pagina che cerchi è stata spostata a un altro URL...
2022-02-03 03:26:51 +00:00
</p>
</Box>
</Chapter>
</>
}
export default Page