Skip to content

Instantly share code, notes, and snippets.

@ryanjyost
Last active January 24, 2017 04:32
Show Gist options
  • Save ryanjyost/c95afeb7be9338d326f81e2267de8188 to your computer and use it in GitHub Desktop.
Save ryanjyost/c95afeb7be9338d326f81e2267de8188 to your computer and use it in GitHub Desktop.
rainy-day-fund/src/components/Landing.js
//src/components/Landing.js
import React from 'react';
import { Link } from 'react-router';
import { Grid, Jumbotron, Button } from 'react-bootstrap';
const Landing = () => {
return (
<Grid id="Landing" className="container-fluid">
<Jumbotron id="landing-jumbotron">
<h1>Welcome to the Rainy Day Fund App</h1>
<h6>This is a simple practice app and NOT financial advice. <strong>Illustrative purposes only!</strong></h6>
<Button className="nav-btn">
<Link className="link" to="what-is-a-rainy-day-fund">I understand - take me to the app</Link>
</Button>
</Jumbotron>
</Grid>
);
}
export default Landing;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment