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
+28
View File
@@ -0,0 +1,28 @@
import React from 'react';
import thumb from '../../assets/images/fun-fact-thumb.png';
function HeroService() {
return (
<>
<div className="appie-page-title-area appie-page-service-title-area">
<div className="container">
<div className="row">
<div className="col-lg-12">
<div className="appie-page-title-item">
<span>Fast Development</span>
<h3 className="title">
Simple but effective, <br /> effortless yet powerful.
</h3>
<div className="thumb">
<img src={thumb} alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
</>
);
}
export default HeroService;