-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from MeetDOD/issue-105
feat: Added a 404 page not found route in frontend Successfully Issue 105
- Loading branch information
Showing
3 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import notfound from '../assets/notFound.png' | ||
|
||
const PageNotFound = () => { | ||
return ( | ||
<div className='flex flex-col items-center justify-center mx-auto'> | ||
<img src={notfound} alt='Page Not Found' className='w-[400px]' /> | ||
<p className='text-center mb-20'> | ||
<span className='text-red-600 font-bold text-6xl'>404</span><br /> | ||
<span className='text-gray-200 ite text-3xl font-semibold'>Page Not Found</span> | ||
</p> | ||
</div> | ||
) | ||
} | ||
|
||
export default PageNotFound |