Skip to content

Commit

Permalink
feat: adds the custom 404 page
Browse files Browse the repository at this point in the history
Adds the Custom 404 page for fun

closes #151
  • Loading branch information
anguspiv committed Nov 15, 2022
1 parent e7d4bb0 commit a0f491d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/pages/404.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { PageHeader } from '@components/molecules/PageHeader';
import { Container } from '@components/atoms/Container';
import { SEO } from '@components/organisms/SEO';

function NotFoundPage() {
return (
<>
<SEO title="404: Not found" />
<PageHeader title="404: Not found" />
<Container>
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
</Container>
</>
);
}

export default NotFoundPage;

0 comments on commit a0f491d

Please sign in to comment.