44 lines
2.1 KiB
JavaScript
44 lines
2.1 KiB
JavaScript
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 WrenchBoard.
|
|
</h3>
|
|
<p>Manage your small, medium and big projects with WrenchBoard.<br/> WrenchBoard Platform enables you to organize teams of freelancers as well as dedicated skills sets for your goals.</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;
|