import { getLayout } from '@components/Layouts/Layout'; import { seo } from '@config/seo'; import { t, Trans } from '@lingui/macro'; import { NextPageWithLayout } from '@ts/types/app'; import { loadTranslation } from '@utils/helpers/i18n'; import { GetStaticProps, GetStaticPropsContext } from 'next'; import Head from 'next/head'; import Link from 'next/link'; const error404: NextPageWithLayout = () => { return ( <> {seo.error404.title}

{t`Page not found`}

Sorry, it seems that the page you are looking for does not exist. {' '} If you think this path should work, feel free to{' '} contact me with the necessary information so that I can fix the problem.

); }; error404.getLayout = getLayout; export const getStaticProps: GetStaticProps = async ( context: GetStaticPropsContext ) => { const translation = await loadTranslation( context.locale!, process.env.NODE_ENV === 'production' ); const breadcrumbTitle = t`Error`; return { props: { breadcrumbTitle, translation, }, }; }; export default error404;