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,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;