2019-02-11 16:16:57 +00:00
|
|
|
import { React, T } from 'Components'
|
2019-06-26 14:00:28 +00:00
|
|
|
import image from 'Images/map-directions.png'
|
2019-02-11 16:16:57 +00:00
|
|
|
import emoji from 'react-easy-emoji'
|
2019-06-26 14:00:28 +00:00
|
|
|
import { Link } from 'react-router-dom'
|
2017-04-18 17:37:38 +00:00
|
|
|
|
2019-02-11 16:16:57 +00:00
|
|
|
export default () => (
|
2017-11-24 15:56:36 +00:00
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
color: '#333350',
|
|
|
|
margin: '15% auto',
|
|
|
|
width: '15em',
|
|
|
|
textAlign: 'center'
|
2018-07-12 08:09:41 +00:00
|
|
|
}}>
|
2019-02-11 16:16:57 +00:00
|
|
|
<p>
|
|
|
|
<T k="404.message">Cette page n'existe pas ou n'existe plus</T>
|
|
|
|
{emoji(' 🙅')}
|
|
|
|
</p>
|
2017-11-24 15:56:36 +00:00
|
|
|
<Link to="/">
|
|
|
|
{/* TODO: credits for the image to add: https://thenounproject.com/term/treasure-map/96666/ */}
|
2018-07-12 08:09:41 +00:00
|
|
|
<img style={{ margin: '3%' }} width="100%" src={image} />
|
2019-02-11 16:16:57 +00:00
|
|
|
<em>
|
|
|
|
<T k="404.action">Revenir en lieu sûr</T>
|
|
|
|
</em>
|
2017-11-24 15:56:36 +00:00
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
)
|