File size: 1,409 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import React from 'react';
import teamPic from '../../../Assets/about.svg';
import Fade from 'react-reveal/Fade';
const About = () => {
return (
<section className="about overflow-hidden py-5">
<div className="row w-100">
<div className="row col-md-11 mx-auto ">
<div className="col-md-6 img">
<Fade duration={2000} left>
<img src={`${teamPic}`} alt="" className="img-fluid"/>
</Fade>
</div>
<div className="col-md-6 ps-2">
<Fade duration={2000} right>
<p className="miniTitle">about us</p>
<h1 className="headerTitle">HOW WE CAN HELP YOUR <span className="headerHighlight">BUSINESS</span> GOAL</h1>
<p className="headerContent">Choosing a suitable theme for your business isn’t hard if you know what to look for. A solid bundled contact form plugin enables customers to make contact with you, and a means of displaying your business and location information prominently is also essential.</p>
<button className="branBtn">learn More</button>
</Fade>
</div>
</div>
</div>
</section>
);
};
export default About; |