Skip to content

Commit

Permalink
Merge pull request WebXDAO#440 from PatilHarshh/main
Browse files Browse the repository at this point in the history
Error Page Added
  • Loading branch information
vinzvinci authored Jun 22, 2023
2 parents 3fe761b + aa4e3ec commit 034157b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import Image from "next/image";

export default function NotFound() {
return (
<div className="flex h-screen w-screen items-center bg-gray-50">
<div className="container flex flex-col items-center justify-center px-5 text-gray-700 md:flex-row">
<div className="mx-8 w-full text-center lg:w-1/2">
<div className=" mb-8 text-7xl font-bold "style={{ color: 'rgba(65, 26, 255, 1)' }}>Oops!</div>
<div className="flex justify-center">
<Image src="/Frame.png" width={300} height={300} alt="404 Error" />
</div>
<div className=" my-8 text-4xl font-bold"style={{ color: 'rgba(65, 26, 255, 1)' }}>Page not found</div>
<div className=" my-8 text-2xl text-gray-400">
It seems like you wandered off too far! You must return back to our guild!
</div>
<a
href="/"
className="duration-400 inline rounded-lg border border-transparent bg-blue-600 px-6 py-4 text-base font-medium leading-6 text-white shadow-2xl transition-all hover:bg-blue-500 focus:outline-none active:bg-blue-300">
Return Home
</a>
</div>
</div>
</div>
);
}
Binary file added public/Frame.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 034157b

Please sign in to comment.