1
0
Fork 0

chore: minor styling changes

fix-1
Paul Makles 2023-07-30 17:39:25 +01:00
parent 5969746252
commit ffab10fec9
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]); }, [error]);
return ( return (
<div className="flex flex-col justify-center items-center gap-4 h-[640px]"> <div className="flex flex-col justify-center items-center gap-4 h-[640px] text-center">
<Image width={240} height={120} src="/500.png" alt="derpy hooves" /> <Image width={240} height={120} src="/500.png" alt="derpy hooves" />
<h2 className="text-3xl">shit broke</h2> <h2 className="text-3xl">shit broke</h2>
<h3>{String(error)}</h3> <h3 className="max-w-[320px]">{String(error)}</h3>
<NavigateBack /> <NavigateBack />
</div> </div>
); );