Skip to content

Instantly share code, notes, and snippets.

@zer0tonin
Created June 21, 2017 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zer0tonin/21eae8310e06929bbf2cdaad92575e4c to your computer and use it in GitHub Desktop.
Save zer0tonin/21eae8310e06929bbf2cdaad92575e4c to your computer and use it in GitHub Desktop.
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