From 4b2b9a5e6fcb29af70c1daf304c51bbd7e6278bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Berk=20Ba=C5=9Fo=C4=9Flu?= Date: Sun, 28 Mar 2021 20:42:46 -0400 Subject: [PATCH] Added the slogan. --- src/App.js | 21 ++------------------- src/homePage/homepage.css | 32 ++++++++++++++++++++++++++++++++ src/homePage/homepage.js | 24 ++++++++++++++++++++++++ 3 files changed, 58 insertions(+), 19 deletions(-) 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 (
-
-

Kene's Crib

-

Real Website loading.......

-
-
-

hello everyone

- - - - -
+
); } 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;