chore: cleanup

This commit is contained in:
Divlo
2021-12-28 16:06:58 +01:00
parent accd36d1fc
commit 91e246b759
28 changed files with 21766 additions and 11026 deletions

View File

@ -1,4 +1,4 @@
import { GetStaticProps } from 'next'
import { GetStaticProps, NextPage } from 'next'
import useTranslation from 'next-translate/useTranslation'
import { ErrorPage } from 'components/ErrorPage'
@ -6,7 +6,7 @@ import { Head } from 'components/Head'
import { Header } from 'components/Header'
import { Footer, FooterProps } from 'components/Footer'
const Error404: React.FC<FooterProps> = (props) => {
const Error404: NextPage<FooterProps> = (props) => {
const { t } = useTranslation()
const { version } = props