-
Notifications
You must be signed in to change notification settings - Fork 45
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 #198 from fuzheng1998/404-page
Added 404 Page
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 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
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,16 @@ | ||
import React from 'react'; | ||
|
||
const NotFoundPage: React.FC = () => { | ||
return ( | ||
<div className="flex flex-col items-center pt-28"> | ||
<h1 className=" font-display text-5xl md:text-7xl font-bold text-center"> | ||
404 | ||
</h1> | ||
<h2 className=" font-display text-2xl md:text-4xl font-bold text-center"> | ||
Page Not Found | ||
</h2> | ||
</div> | ||
); | ||
}; | ||
|
||
export default NotFoundPage; |