-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path404.js
35 lines (31 loc) · 842 Bytes
/
404.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { useTranslation, Trans } from 'next-i18next'
import { serverSideTranslations } from 'next-i18next/serverSideTranslations'
import Link from 'next/link'
import SEO from '../components/SEO'
export async function getStaticProps({ locale }) {
return {
props: {
...(await serverSideTranslations(locale, ['common']))
}
}
}
export default function Eror404() {
const { t } = useTranslation()
return (
<>
<SEO title={t('page-not-found.header')} />
<div className="content-text center">
<h1>{t('page-not-found.header')}</h1>
<p>
<Trans i18nKey="page-not-found.text">
Click{' '}
<Link href="/" className="bold">
here
</Link>{' '}
to check our landing page.
</Trans>
</p>
</div>
</>
)
}