diff --git a/src/App.css b/src/App.css index 47b27cb..38b3429 100644 --- a/src/App.css +++ b/src/App.css @@ -1,12 +1,13 @@ .App { text-align: center; - background-color: #FCFCFC; - + background-color: #F3EFE9; + font-family: 'Roboto'; + /* background-color: beige */ } .App-logo { /* animation: App-logo-spin infinite 20s linear; */ - height: 78.2px; + height: 9.5vh; } diff --git a/src/components/Footer.js b/src/components/Footer.js index 642d2e0..e801a5d 100644 --- a/src/components/Footer.js +++ b/src/components/Footer.js @@ -13,14 +13,14 @@ export default class Footer extends Component { // // - Back to top + Back to top {" "} {" "}

- © 2017 Company, Inc. | Privacy |{" "} + Copyright ©2018, Innovation Drive, Inc. - All rights reserved | Privacy |{" "} Terms{" "}

{" "} diff --git a/src/components/Jumbotron.js b/src/components/Jumbotron.js new file mode 100644 index 0000000..204504a --- /dev/null +++ b/src/components/Jumbotron.js @@ -0,0 +1,30 @@ +import React from "react"; +import { Jumbotron, Button } from "reactstrap"; +import ModalExample from "../components/PopUpSignUp"; + +const MainJumbotron = props => { + return ( +
+ +

Invention Pad

+

+ We take you on a journey to create your physical product idea into a + reality and commercialise it, all with you keeping your IP. +

+
+

+ Don't live a life of regret seeing your probably shitty idea go to + market whilst you sat on your laurels. +

+

+ +

+
+
+ ); +}; + + + + +export default MainJumbotron; diff --git a/src/components/Navbar.js b/src/components/Navbar.js index 484588f..1c2cda3 100644 --- a/src/components/Navbar.js +++ b/src/components/Navbar.js @@ -29,7 +29,7 @@ export default class HeadNavbar extends Component { } render() { return ( -
+
logo diff --git a/src/components/PopUpSignUp.js b/src/components/PopUpSignUp.js index 24c629c..2107e3e 100644 --- a/src/components/PopUpSignUp.js +++ b/src/components/PopUpSignUp.js @@ -21,7 +21,7 @@ class ModalExample extends React.Component { render() { return (
- + {/* Free Video Consultation */} diff --git a/src/pages/Homepage/index.css b/src/pages/Homepage/index.css index 3245a85..82cf87b 100644 --- a/src/pages/Homepage/index.css +++ b/src/pages/Homepage/index.css @@ -10,15 +10,10 @@ background-position: center center; } -.firstContainer { - /* background-image: url("../kidRocket.jpg"); */ - /* background-size: cover; */ - /* /* max-width: 100%; */ - /* height: 100%; */ - /* background-repeat: no-repeat; - background-size: contain; */ - /* background-repeat: no-repeat; - background-size: 100% 90%; */ + + +.InventionStyle { + text-align: center; } .responsive { @@ -35,3 +30,10 @@ } +.JumbotronStyle { + /* background-image: url("../../images/kidRocket.jpg"); */ + /* background-size: cover; */ + /* background-image: linear-gradient(120deg, #fccb90 0%, #d57eeb 100%); */ +/* background-color: beige */ +background: none; +} \ No newline at end of file diff --git a/src/pages/Homepage/index.js b/src/pages/Homepage/index.js index f9369ea..8cdba18 100644 --- a/src/pages/Homepage/index.js +++ b/src/pages/Homepage/index.js @@ -5,6 +5,7 @@ import styles from "./index.css"; // import "./AboveTheFold.css"; import HeadNavbar from "../../components/Navbar.js"; import ModalExample from "../../components/PopUpSignUp.js"; +import MainJumbotron from "../../components/Jumbotron"; // /Users/omar/Desktop/innovationDrive/innovation-drive/src/components/Form.js export default class Homepage extends Component { @@ -12,30 +13,37 @@ export default class Homepage extends Component { return (
- + + + {/* */} - - - - {/* THIS IS A POP UP BOOTRAP MODAL, with a CTA to click on */} -

End to end product dev

- +

The Invention Process

+ + {/* ADD BOOTSRAP CARDS HERE */} + +

Product Design

+ {/* ADD BOOTSRAP CARD HERE */} - - + +

Rapid Prototyping

- - {/* */} + +

Manufacturing

-

What Customers Say About Us

+

Customer Journey

{/* ADD BOOTSRAP CAROUSEL HERE */}
+ +

The Invention Process

+ {/* ADD BOOTSRAP CAROUSEL HERE */} +
+
); }