update error page
This commit is contained in:
parent
e63f0bc7a7
commit
4b85b6ee39
1 changed files with 5 additions and 1 deletions
|
|
@ -1,5 +1,9 @@
|
||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
export default function ErrorPage() {
|
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>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue