diff --git a/src/App.js b/src/App.js
index 7c27a21..010fc5b 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,28 +1,11 @@
import { Component } from "react";
+import Homepage from './homePage/Homepage'
class App extends Component {
render() {
return (
-
-
- hello everyone
-
- A simple primary alert—check it out!
-
-
- A simple primary alert—check it out!
-
-
- A simple primary alert—check it out!
-
-
- A simple primary alert—check it out!
-
-
+
);
}
diff --git a/src/homePage/homepage.css b/src/homePage/homepage.css
index e69de29..5109d91 100644
--- a/src/homePage/homepage.css
+++ b/src/homePage/homepage.css
@@ -0,0 +1,32 @@
+
+.colored-section {
+ background-color: #a77a32;
+ color: #ffffff;
+}
+
+.colored-section2 {
+ background-color: #ffe609;
+ color: #000000;
+ white-space: nowrap;
+}
+
+.colored-section3 {
+ background-color: #cfd3ce;
+ color: #ffffff;
+}
+
+.white-section {
+ background-color: #ffffff;
+}
+
+#title .container-fluid {
+ padding: 4% 32% 6%;
+ text-align: left;
+ font-family: "Georgia";
+}
+
+#features .container-fluid {
+ padding: 3% 5% ;
+ text-align: left;
+
+}
\ No newline at end of file
diff --git a/src/homePage/homepage.js b/src/homePage/homepage.js
index e69de29..7ff48d6 100644
--- a/src/homePage/homepage.js
+++ b/src/homePage/homepage.js
@@ -0,0 +1,24 @@
+import { Component } from "react";
+import './Homepage.css'
+
+class Homepage extends Component {
+ render() {
+ return (
+
+
+
+
+
+
YOU ARE NOT BUYING A HOUSE,
+ YOU ARE BUYING A LIFESTYLE.
+
+
+
+
+
+
+ );
+ }
+}
+
+export default Homepage;