From a367f605b842ad0a71a63025da15ac62ed0364a5 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 21 Dec 2021 14:29:19 +0100 Subject: chore: add a breadcrumb component --- src/pages/404.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/pages/404.tsx') 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) => {page}; +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, }, }; -- cgit v1.2.3