25 lines
539 B
JavaScript
25 lines
539 B
JavaScript
import React from 'react'
|
|
import { Link } from 'react-router-dom'
|
|
|
|
export default () => (
|
|
<div
|
|
style={{
|
|
color: '#333350',
|
|
margin: '15% auto',
|
|
width: '15em',
|
|
textAlign: 'center'
|
|
}}
|
|
>
|
|
<h2>On peut facilement se perdre dans la législation...</h2>
|
|
<Link to="/">
|
|
{/* TODO: credits for the image to add: https://thenounproject.com/term/treasure-map/96666/ */}
|
|
<img
|
|
style={{ margin: '3%' }}
|
|
width="100%"
|
|
src={require('Images/map-directions.png')}
|
|
/>
|
|
<em>Revenir en lieu sûr</em>
|
|
</Link>
|
|
</div>
|
|
)
|