1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-22 16:04:21 +00:00
triennale-appunti-steffo/pages/500.tsx

28 lines
845 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-04 01:14:51 +00:00
import { Link } from "../components/link"
2022-02-03 18:47:06 +00:00
2022-02-03 03:26:51 +00:00
const Page: NextPage = () => {
return <>
<Heading level={2}>
2022-02-03 18:47:06 +00:00
Errore 500
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
Internal server error
2022-02-03 03:26:51 +00:00
</Heading>
<p>
2022-02-03 18:47:06 +00:00
Il server non è riuscito a preparare la pagina che hai richiesto.
2022-02-03 03:26:51 +00:00
</p>
<p>
2022-02-03 18:47:06 +00:00
Molto probabilmente si tratta di un bug: informa Steffo di come si è verificato, in modo che possa risolverlo!
2022-02-03 03:26:51 +00:00
</p>
</Box>
</Chapter>
</>
}
export default Page