56 lines
1.5 KiB
JavaScript
56 lines
1.5 KiB
JavaScript
import Footer from "./Footer"
|
|
import Navbar from "./Navbar"
|
|
|
|
|
|
|
|
const About = () => {
|
|
return (
|
|
<>
|
|
|
|
<Navbar />
|
|
|
|
|
|
<div className="about_section layout_padding">
|
|
<br /> <br /> <br />
|
|
<div className="container">
|
|
|
|
<div className="row">
|
|
<div className="col-md-6">
|
|
<h1 className="about_taital">About Us</h1>
|
|
<p className="about_text">
|
|
There are many variations of passages of Lorem Ipsum
|
|
available, but the majority have suffered alteration in some
|
|
form, by injected humour, or randomised words which don't look
|
|
even slightly believable. If you are going to use a passage of
|
|
Lorem Ipsum, you need to be sure there isn't anything
|
|
embarrassing hidden in the middle of text. All{" "}
|
|
</p>
|
|
<div className="read_bt_1">
|
|
<a href="#">Read More</a>
|
|
</div>
|
|
</div>
|
|
<div className="col-md-6">
|
|
<div className="about_img">
|
|
<div className="video_bt">
|
|
<div className="play_icon">
|
|
<img src="images/play-icon.png" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
|
|
</div>
|
|
|
|
|
|
<Footer />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default About
|