Files
WrenchBoardMainSite/src/components/Service/DetailsService.js
T
2023-06-27 16:10:51 +01:00

54 lines
2.8 KiB
JavaScript

import React from 'react';
import thumb from '../../assets/images/service-page.jpg';
import ServiceSideMenu from './ServiceSideMenu';
import getConfig from './../../Config/config'
function DetailsService() {
var site = getConfig()[0];
return (
<>
<section className="appie-service-details-area pt-100 pb-100">
<div className="container">
<div className="row">
<div className="col-lg-4">
<ServiceSideMenu />
</div>
<div className="col-lg-8">
<div className="service-details-content">
<div className="thumb">
<img src={thumb} alt="" />
</div>
<div className="content">
<h3 className="title">What we have built</h3>
<p>
An open-platform for you to build your self - image, skills set, branded personality,
carve a network and ofcourse an income flow with ease and satisfaction of self - actualization and accomplishments.
</p>
<span>
A major task done by skilled professional with personal touch and completed within the twinkling of an eye in specified time-frame.
</span>
<p>
WrenchBoard is the marketplace that connects independent talent
with businesses that requires your skill set and get paid.
We serve everyone from one - person startups to a powerful,
trust - driven platform that facilitates businesses and freelancers
to work concurrently in unique patterns that unlocks their potential.
Our platform provides a range of skills in categories including consulting,
finance & accounting, website & app development, creative & design,
customer support and operations.
<hr />
Learn more at < a href ={process.env.REACT_APP_DASH_URL_LOGIN} >WrenchBoard</a>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
</>
);
}
export default DetailsService;