Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
711 B

5 years ago
import DefaultLayout from 'layouts/default';
import PageFooter from 'components/page-footer';
import SiteNav from 'components/site-nav';
const SignUp = () => (
<DefaultLayout>
<SiteNav />
<div className="container">
<div className="text-center" style={{ maxWidth: '400px', margin: '200px auto'}}>
<h1 className="font-weight-bolder">Sign Up</h1>
<p>You have caught us before we are ready, enter your email below and we will notify you once you are in</p>
<input type="text" className="form-control" />
<button className="btn btn-dark btn-block mb-5 mt-2">Subscribe</button>
</div>
</div>
<PageFooter />
</DefaultLayout>
);
export default SignUp;