Skip to content

Instantly share code, notes, and snippets.

@zer0tonin
Created June 21, 2017 19:08
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/d2f52cb40dfbb908e0f4befd1c79c842 to your computer and use it in GitHub Desktop.
Save zer0tonin/d2f52cb40dfbb908e0f4befd1c79c842 to your computer and use it in GitHub Desktop.
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