diff options
Diffstat (limited to 'src/pages/404.tsx')
| -rw-r--r-- | src/pages/404.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pages/404.tsx b/src/pages/404.tsx index 6b6fbf5..f98b371 100644 --- a/src/pages/404.tsx +++ b/src/pages/404.tsx @@ -1,4 +1,5 @@ import { getLayout } from '@components/Layouts/Layout'; +import PostHeader from '@components/PostHeader/PostHeader'; import { seo } from '@config/seo'; import { t, Trans } from '@lingui/macro'; import { NextPageWithLayout } from '@ts/types/app'; @@ -15,7 +16,7 @@ const error404: NextPageWithLayout = () => { <meta name="description" content={seo.error404.description} /> </Head> <div> - <h1>{t`Page not found`}</h1> + <PostHeader title={t`Page not found`} /> <p> <Trans> Sorry, it seems that the page you are looking for does not exist. |
