diff options
Diffstat (limited to 'src/pages/404.tsx')
| -rw-r--r-- | src/pages/404.tsx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/pages/404.tsx b/src/pages/404.tsx index 903a386..6b6fbf5 100644 --- a/src/pages/404.tsx +++ b/src/pages/404.tsx @@ -1,4 +1,4 @@ -import Layout from '@components/Layouts/Layout'; +import { getLayout } from '@components/Layouts/Layout'; import { seo } from '@config/seo'; import { t, Trans } from '@lingui/macro'; import { NextPageWithLayout } from '@ts/types/app'; @@ -6,7 +6,6 @@ import { loadTranslation } from '@utils/helpers/i18n'; import { GetStaticProps, GetStaticPropsContext } from 'next'; import Head from 'next/head'; import Link from 'next/link'; -import { ReactElement } from 'react'; const error404: NextPageWithLayout = () => { return ( @@ -32,7 +31,7 @@ const error404: NextPageWithLayout = () => { ); }; -error404.getLayout = (page: ReactElement) => <Layout>{page}</Layout>; +error404.getLayout = getLayout; export const getStaticProps: GetStaticProps = async ( context: GetStaticPropsContext @@ -42,8 +41,11 @@ export const getStaticProps: GetStaticProps = async ( process.env.NODE_ENV === 'production' ); + const breadcrumbTitle = t`Error`; + return { props: { + breadcrumbTitle, translation, }, }; |
