Created
June 21, 2017 19:08
-
-
Save zer0tonin/d2f52cb40dfbb908e0f4befd1c79c842 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 Textfield from 'react-mdc-web/lib/Textfield/Textfield'; | |
export default function ComingSoon() { | |
return ( | |
<div> | |
<h1 style={{ textAlign: 'center' }}>{'Coming soon'}</h1> | |
<div className="mdc-layout-grid"> | |
<div className="mdc-layout-grid__inner"> | |
<div className="mdc-layout-grid__cell mdc-layout-grid__cell--span-3"> | |
<img src="phone.svg" alt="Illustration smartphone" style={{ height: '300px', width: 'auto' }} /> | |
</div> | |
<div className="mdc-layout-grid__cell mdc-layout-grid__cell--span-9"> | |
<p>{'Kolay sera bientôt ouvert aux inscriptions et disponible sur iPhone, Android et Web.'}</p> | |
<Textfield floatingLabel="Email" /> | |
</div> | |
</div> | |
</div> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment