9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
![]() |
export const ErrorPage = () => {
|
||
|
return (
|
||
|
<div className="flex flex-col items-center justify-center h-screen">
|
||
|
<h1 className="text-4xl font-bold">404</h1>
|
||
|
<p className="text-2xl font-bold">Page not found</p>
|
||
|
</div>
|
||
|
)
|
||
|
}
|