1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 19:55:00 +00:00
mon-entreprise/source/components/Contact.js
2018-01-03 16:54:19 +01:00

23 lines
486 B
JavaScript

import React from 'react'
export default () => (
<div
style={{
color: '#333350',
margin: '15% auto',
width: '20em',
textAlign: 'center'
}}
>
<p>
Pour nous écrire :{' '}
<span style={{ fontWeight: 'bold' }}>contact@embauche.beta.gouv.fr</span>
</p>
{/* TODO: credits for the image to add: https://thenounproject.com/search/?q=post+card&i=715677 */}
<img
style={{ margin: '3%' }}
width="200px"
src={require('Images/contact.png')}
/>
</div>
)