Created
June 21, 2017 19:07
-
-
Save zer0tonin/21eae8310e06929bbf2cdaad92575e4c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import Grid from 'react-mdc-web/lib/Grid/Grid'; | |
import Cell from 'react-mdc-web/lib/Grid/Cell'; | |
import Textfield from 'react-mdc-web/lib/Textfield/Textfield'; | |
export default function ComingSoon() { | |
return ( | |
<div> | |
<h1 style={{ textAlign: 'center' }}>{'Coming soon'}</h1> | |
<Grid> | |
<Cell col={3}> | |
<img src="phone.svg" alt="Illustration smartphone" style={{ height: '300px', width: 'auto' }} /> | |
</Cell> | |
<Cell col={9}> | |
<p>{'Kolay sera bientôt ouvert aux inscriptions et disponible sur iPhone, Android et Web.'}</p> | |
<Textfield floatingLabel="Email" /> | |
</Cell> | |
</Grid> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment