FunctionProject/website/pages/404.jsx

26 lines
563 B
React
Raw Normal View History

2020-08-03 12:04:07 +02:00
import Link from 'next/link'
import HeadTag from '../components/HeadTag'
2020-03-21 23:03:30 +01:00
const Error404 = () => (
2020-08-03 12:04:07 +02:00
<>
<HeadTag
title='Erreur 404'
description="Cette page n'existe pas!"
image='/images/error404.png'
/>
<div className='Error404__container'>
<h1>
Erreur <span className='important'>404</span>
</h1>
2020-08-03 12:04:07 +02:00
<p className='text-center'>
Cette page n'existe pas!{' '}
<Link href='/'>
<a>Revenir à la page d'accueil ?</a>
</Link>
2020-08-03 12:04:07 +02:00
</p>
</div>
</>
)
2020-03-21 23:03:30 +01:00
2020-08-03 12:04:07 +02:00
export default Error404