1
0
Fork 0

chore: more styling changes

fix-1
Paul Makles 2023-07-30 17:40:13 +01:00
parent ffab10fec9
commit 70aa95577a
No known key found for this signature in database
GPG Key ID: 5059F398521BB0F6
1 changed files with 2 additions and 2 deletions

View File

@ -10,10 +10,10 @@ export default function Error({ error }: { error: Error }) {
}, [error]);
return (
<div className="flex flex-col justify-center items-center gap-4 h-[640px] text-center">
<div className="flex flex-col justify-center items-center gap-4 h-[100vh] text-center">
<Image width={240} height={120} src="/500.png" alt="derpy hooves" />
<h2 className="text-3xl">shit broke</h2>
<h3 className="max-w-[320px]">{String(error)}</h3>
<h3 className="max-w-[420px]">{String(error)}</h3>
<NavigateBack />
</div>
);