Skip to content

Commit

Permalink
Merge pull request #20 from snurfer0/feat/404
Browse files Browse the repository at this point in the history
feat: 404
  • Loading branch information
snurfer0 authored Dec 10, 2023
2 parents 410f6d2 + b3cef28 commit 4d98d83
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import Link from 'next/link';
import React from 'react';
import { Button } from 'src/components/atoms';

const NotFound = () => {
return (
<div className="flex items-center justify-center h-screen">
<div className="text-center">
<h2 className="text-4xl font-bold mb-4">Page Not Found</h2>
<p className="text-gray-600 mb-8">
The requested resource could not be found.
</p>
<Link className="text-blue-500 underline" href="/">
<Button>Return Home</Button>
</Link>
</div>
</div>
);
};

export default NotFound;

0 comments on commit 4d98d83

Please sign in to comment.