[site/pages][xs]: create 404 page with an image

This commit is contained in:
khalilcodes 2022-06-12 22:57:26 +03:00
parent 72080c50f5
commit 627b395859
2 changed files with 32 additions and 0 deletions

8
site/pages/404.js Normal file
View File

@ -0,0 +1,8 @@
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>
);
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 24 KiB