FunctionProject/website/pages/404.jsx

22 lines
559 B
React
Raw Normal View History

2020-08-03 12:04:07 +02:00
import Link from 'next/link'
import HeadTag from '../components/HeadTag'
import '../public/css/pages/404.css'
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>
<p className='text-center'>
Cette page n'existe pas! <Link href='/'><a>Revenir à la page d'accueil ?</a></Link>
</p>
</div>
</>
)
2020-03-21 23:03:30 +01:00
2020-08-03 12:04:07 +02:00
export default Error404