-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
312 additions
and
22 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
"version": "0.1.0", | ||
"author": "Kyle Mathews <[email protected]>", | ||
"dependencies": { | ||
"bootstrap": "^4.4.1", | ||
"gatsby": "^2.19.7", | ||
"gatsby-image": "^2.2.39", | ||
"gatsby-plugin-manifest": "^2.2.39", | ||
|
@@ -15,6 +16,7 @@ | |
"gatsby-transformer-sharp": "^2.3.13", | ||
"prop-types": "^15.7.2", | ||
"react": "^16.12.0", | ||
"react-bootstrap": "^1.0.0-beta.16", | ||
"react-dom": "^16.12.0", | ||
"react-helmet": "^5.2.1" | ||
}, | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React from 'react' | ||
import Form from 'react-bootstrap/Form' | ||
import Col from 'react-bootstrap/Col' | ||
import Row from 'react-bootstrap/Row' | ||
import Button from 'react-bootstrap/Button' | ||
|
||
const CallToAction = () => ( | ||
<Form style={{marginBottom: '2rem', marginTop: '2rem'}}> | ||
<Form.Group as={Row}> | ||
<Form.Label column sm={2}>Request a demo</Form.Label> | ||
<Col sm={8}> | ||
<Form.Control type="email" placeholder="Email" /> | ||
</Col> | ||
<Col sm={2}> | ||
<Button type="submit">Submit</Button> | ||
</Col> | ||
</Form.Group> | ||
</Form> | ||
) | ||
export default CallToAction |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import Jumbotron from 'react-bootstrap/Jumbotron' | ||
import React from 'react'; | ||
|
||
const HeadLine = () =>( | ||
<Jumbotron> | ||
<h1>Contingent Workforce Management</h1> | ||
</Jumbotron> | ||
) | ||
export default HeadLine |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import Navbar from 'react-bootstrap/Navbar' | ||
import Nav from 'react-bootstrap/Nav' | ||
import React from 'react' | ||
|
||
const HeadNav = () => ( | ||
<Navbar className="d-flex justify-content-between"> | ||
<Navbar.Brand href='#'>Lome</Navbar.Brand> | ||
<Nav > | ||
<Nav.Link>Product</Nav.Link> | ||
<Nav.Link>Pricing</Nav.Link> | ||
<Nav.Link>Request Demo</Nav.Link> | ||
<Nav.Link>Login</Nav.Link> | ||
</Nav> | ||
</Navbar> | ||
) | ||
export default HeadNav |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React from 'react' | ||
import Row from 'react-bootstrap/Row' | ||
import Col from 'react-bootstrap/Col' | ||
import Card from 'react-bootstrap/Card' | ||
|
||
const Industries =()=>( | ||
<div style={{marginBottom: '2rem'}}> | ||
<Row> | ||
<Col><Card body>Autonomous Vehicles</Card></Col> | ||
<Col><Card body>Academia</Card></Col> | ||
<Col><Card body>Defence</Card></Col> | ||
</Row> | ||
<Row> | ||
<Col><Card body>Healthcare</Card></Col> | ||
<Col><Card body>Finance</Card></Col> | ||
<Col><Card body>Retail</Card></Col> | ||
</Row> | ||
</div> | ||
) | ||
export default Industries |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import React from 'react' | ||
import Card from 'react-bootstrap/Card' | ||
import Col from 'react-bootstrap/Col' | ||
import Row from 'react-bootstrap/Row' | ||
|
||
const Pricing = () => ( | ||
<Row style={{marginBottom: '2rem'}}> | ||
<Col> | ||
<Card> | ||
<Card.Body> | ||
<Card.Title>$500 USD/Month</Card.Title> | ||
<Card.Text>Data Analyst</Card.Text> | ||
</Card.Body> | ||
</Card> | ||
</Col> | ||
<Col> | ||
<Card> | ||
<Card.Body> | ||
<Card.Title>$100 USD/Month</Card.Title> | ||
<Card.Text>Vendor Relationship Manager</Card.Text> | ||
</Card.Body> | ||
</Card> | ||
</Col> | ||
<Col> | ||
<Card> | ||
<Card.Body> | ||
<Card.Title>$1 USD/Month</Card.Title> | ||
<Card.Text>Contingent Worker Dashboard</Card.Text> | ||
</Card.Body> | ||
</Card> | ||
</Col> | ||
</Row> | ||
) | ||
|
||
export default Pricing |
Oops, something went wrong.