8 lines
317 B
JavaScript
8 lines
317 B
JavaScript
export default function () {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center mt-12 sm:mt-20 xl:mt-36 space-y-8">
|
|
<img src="/img/undraw_page_not_found.svg" alt="404" className="px-8 sm:px-0 max-w-xs m-auto" />
|
|
<p className="text-lg">Page not found</p>
|
|
</div>
|
|
);
|
|
} |