1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-11-08 22:31:30 +01:00

fix(components): returnToHomePage inside ErrorPage

This commit is contained in:
divlo 2021-04-20 15:47:52 +02:00
parent 73352d4414
commit 3382177e27

View File

@ -16,7 +16,7 @@ export const ErrorPage: React.FC<ErrorPageProps> = props => {
{t('errors:error')} <span className='important'>{statusCode}</span> {t('errors:error')} <span className='important'>{statusCode}</span>
</h1> </h1>
<p className='text-center'> <p className='text-center'>
{message} <Link href='/'>{t('returnToHomePage')}</Link> {message} <Link href='/'>{t('errors:returnToHomePage')}</Link>
</p> </p>
<style jsx global>{` <style jsx global>{`