Added the slogan.

This commit is contained in:
Batuhan Berk Başoğlu 2021-03-28 20:42:46 -04:00
parent 3c5b66081f
commit ca081c8141
3 changed files with 58 additions and 19 deletions

View file

@ -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;
}

View file

@ -0,0 +1,24 @@
import { Component } from "react";
import './Homepage.css'
class Homepage extends Component {
render() {
return (
<div className="Homepage">
<section className="colored-section2" id="title">
<div className="container-fluid">
<div className="row">
<div className="col-12">
<h1 className="big-heading">YOU ARE NOT BUYING A HOUSE, </h1>
<h1 className="big-heading">YOU ARE BUYING A LIFESTYLE. </h1>
</div>
</div>
</div>
</section>
</div>
);
}
}
export default Homepage;