diff --git a/src/App.css b/src/App.css
index fa1311b..2d6c197 100644
--- a/src/App.css
+++ b/src/App.css
@@ -1,14 +1,20 @@
.App {
text-align: center;
- background-image: url("./kidRocket.jpg");
+
}
.App-logo {
/* animation: App-logo-spin infinite 20s linear; */
- height: 80px;
+ min-height: 55px;
+ max-height: 78.2px;
+
}
+
+
+
+
/* .App-header {
background-color: #222;
height: 150px;
diff --git a/src/components/Drift.js b/src/components/Drift.js
index df40087..0c15ab2 100644
--- a/src/components/Drift.js
+++ b/src/components/Drift.js
@@ -4,7 +4,7 @@ export default class Drift extends React.Component {
render() {
return (
- onClick
+ Add Drift here
);
}
diff --git a/src/components/Form.js b/src/components/Form.js
index 338a1ae..4b47b1b 100644
--- a/src/components/Form.js
+++ b/src/components/Form.js
@@ -1,32 +1,40 @@
import React, { Component } from "react";
import ThankYouAlert from "./ThankYouAlert";
+import { Button, Input, InputGroup, Form, FormGroup, Label } from "reactstrap";
-export default class Form extends React.Component {
-render() {
+export default class EmailForm extends React.Component {
+ render() {
return (
+
+ );
+ }
}
// the logic is sign up to recieve free video consultation and invention workbook
// First name, last name
// then email text area with validation
// tell us a little about your idea...
-// Once it goes through trigger thank you alert or just change CTA text/colour
\ No newline at end of file
+// Once it goes through trigger thank you alert or just change CTA text/colour
diff --git a/src/index.css b/src/index.css
index 74b590f..491dcd2 100644
--- a/src/index.css
+++ b/src/index.css
@@ -2,6 +2,5 @@ body {
margin: 0;
padding: 0;
font-family: sans-serif;
- background-image: url("./kidRocket.jpg");
- background-size: ;
+
}
diff --git a/src/layouts/AboveTheFold.css b/src/layouts/AboveTheFold.css
new file mode 100644
index 0000000..93e18e2
--- /dev/null
+++ b/src/layouts/AboveTheFold.css
@@ -0,0 +1,14 @@
+
+.backgroundContainer {
+ background-image: url("../kidRocket.jpg");
+ background-repeat: no-repeat;
+ background-size: 100%;
+ /* background-position: center; */
+
+ }
+
+
+.CTA {
+align-items: center;
+color: red;
+}
\ No newline at end of file
diff --git a/src/layouts/AboveTheFold.js b/src/layouts/AboveTheFold.js
index b49b2eb..5841686 100644
--- a/src/layouts/AboveTheFold.js
+++ b/src/layouts/AboveTheFold.js
@@ -1,15 +1,35 @@
import React, { Component } from "react";
-import Form from '../components/Form.js';
-import HeadNavbar from '../components/Navbar.js'
+import { Container, Row, Col } from "reactstrap";
+import Form from "../components/Form.js";
+import "./AboveTheFold.css";
+import HeadNavbar from "../components/Navbar.js";
export default class AboveTheFold extends Component {
- render() {
- return (
-
+ render() {
+ return (
+
-
- boob
-
- );
- }
-}
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+ }
+}