update error page

This commit is contained in:
unknown 2025-08-19 17:08:27 +07:00
parent e63f0bc7a7
commit 4b85b6ee39

View file

@ -1,5 +1,9 @@
'use client';
export default function ErrorPage() {
return <p>Sorry, something went wrong</p>;
return (
<p style={{ height: '100vh', display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
Sorry, something went wrong
</p>
);
}