first commit

This commit is contained in:
Olu Amey
2021-12-18 20:23:31 -05:00
commit bce242fd22
308 changed files with 42398 additions and 0 deletions
+73
View File
@@ -0,0 +1,73 @@
import React from 'react';
import heroThumbOne from '../../assets/images/hero-thumb-1.png';
import heroThumbTwo from '../../assets/images/hero-thumb-2.png';
import shapeTwo from '../../assets/images/shape/shape-2.png';
import shapeThree from '../../assets/images/shape/shape-3.png';
import shapeFour from '../../assets/images/shape/shape-4.png';
function HeroHomeOne() {
return (
<>
<section className="appie-hero-area">
<div className="container">
<div className="row align-items-center">
<div className="col-lg-6">
<div className="appie-hero-content">
<span>Welcome To Appie</span>
<h1 className="appie-title">
Manage it all, in this all new system.
</h1>
<p>
Hanky panky lavatory up the duff jolly good cack brolly is
chinwag zonked happy days sloshed.
</p>
<ul>
<li>
<a href="#">
<i className="fab fa-apple" /> Download for iOS
</a>
</li>
<li>
<a className="item-2" href="#">
<i className="fab fa-google-play" /> Download for
Android
</a>
</li>
</ul>
</div>
</div>
<div className="col-lg-6">
<div className="appie-hero-thumb">
<div
className="thumb wow animated fadeInUp"
data-wow-duration="2000ms"
data-wow-delay="200ms"
>
<img src={heroThumbOne} alt="" />
</div>
<div
className="thumb-2 wow animated fadeInRight"
data-wow-duration="2000ms"
data-wow-delay="600ms"
>
<img src={heroThumbTwo} alt="" />
</div>
</div>
</div>
</div>
</div>
<div className="hero-shape-1">
<img src={shapeTwo} alt="" />
</div>
<div className="hero-shape-2">
<img src={shapeThree} alt="" />
</div>
<div className="hero-shape-3">
<img src={shapeFour} alt="" />
</div>
</section>
</>
);
}
export default HeroHomeOne;