Skip to content

Commit

Permalink
Proper 404 page
Browse files Browse the repository at this point in the history
  • Loading branch information
TyHil committed Jan 31, 2024
1 parent bfcb0e5 commit a6f8988
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/pages/404.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Not Found
import Header from '@/components/Header';
import Footer from '@/components/Footer';

The requested page was not found on this site.
const _404 = () => (
<div className="bg-white">
<Header text="Not Found" />
<h2 className="px-8 lg:px-16 xl:px-32 pb-12 text-5xl font-bold text-center">
The requested page was not found on this site.
</h2>
<Footer royalBg={false} />
</div>
);

export default _404;
File renamed without changes.

0 comments on commit a6f8988

Please sign in to comment.