import Layout 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';
import { ReactElement } from 'react';
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.