Skip to content

Commit

Permalink
fix(not-found): add missing update in c45ba27
Browse files Browse the repository at this point in the history
  • Loading branch information
1chooo committed Oct 4, 2024
1 parent c45ba27 commit bfadef4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion apps/web/src/app/not-found.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ import React from 'react';
import { usePathname } from 'next/navigation';
import PageContent from '@/components/page-content';
import MarkdownRenderer from '@/components/markdown/markdown-renderer';
import config from '@/config';

import '@/styles/about/about-text.css';

const { title } = config;

const errorMessages = [
'This page doesn\'t exist.',
'If this is a mistake, [let us know](https://github.com/1chooo/1chooo.com/issues/new), and we will try to fix it!',
Expand All @@ -22,7 +26,8 @@ const NotFound: React.FC = () => {
return (
<PageContent
documentTitle='Not Found'
title="404 Not Found"
title={title}
header="404 Not Found"
page="404"
pathName={pathname}
>
Expand Down

0 comments on commit bfadef4

Please sign in to comment.