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
+43
View File
@@ -0,0 +1,43 @@
import React from 'react';
function ProjectHomeOne() {
return (
<>
<section className="appie-project-area pb-100">
<div className="container">
<div className="row">
<div className="col-lg-12">
<div
className="appie-project-box wow animated slideInUp"
data-wow-duration="1000ms"
data-wow-delay="0ms"
>
<div className="row">
<div className="col-lg-6">
<div className="appie-project-content">
<h3 className="title">
Start your project with appie.
</h3>
<p>We will email you only about this product.</p>
<form action="#">
<div className="input-box mt-30">
<input type="text" placeholder="Your email" />
<button type="button">Subscribe</button>
</div>
</form>
</div>
</div>
</div>
<div className="appie-project-thumb">
<img src="assets/images/project-thumb.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</section>
</>
);
}
export default ProjectHomeOne;