1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-11-05 04:51:30 +01:00

fix: import correctly Head component

This commit is contained in:
divlo 2021-04-18 23:13:54 +02:00
parent 60df0bac5c
commit 0781cb725c
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import { GetStaticProps } from 'next'
import useTranslation from 'next-translate/useTranslation' import useTranslation from 'next-translate/useTranslation'
import { ErrorPage } from 'components/ErrorPage' import { ErrorPage } from 'components/ErrorPage'
import Head from 'components/Head' import { Head } from 'components/Head'
const Error404: React.FC = () => { const Error404: React.FC = () => {
const { t } = useTranslation() const { t } = useTranslation()

View File

@ -2,7 +2,7 @@ import { GetStaticProps } from 'next'
import useTranslation from 'next-translate/useTranslation' import useTranslation from 'next-translate/useTranslation'
import { ErrorPage } from 'components/ErrorPage' import { ErrorPage } from 'components/ErrorPage'
import Head from 'components/Head' import { Head } from 'components/Head'
const Error500: React.FC = () => { const Error500: React.FC = () => {
const { t } = useTranslation() const { t } = useTranslation()