first commit
This commit is contained in:
51
src/components/IT/ChooseUs.jsx
Normal file
51
src/components/IT/ChooseUs.jsx
Normal file
@ -0,0 +1,51 @@
|
||||
import React from 'react';
|
||||
import { Link } from 'gatsby';
|
||||
import Numbers from './Numbers';
|
||||
import chooseUsData from 'data/IT/chooseus.json';
|
||||
|
||||
const ChooseUs = () => {
|
||||
return (
|
||||
<section className="choose-us style-2 border-top bg-darkBlue brd-light section-padding" data-scroll-index="4">
|
||||
<div className="container">
|
||||
<div className="section-head mb-30 text-center">
|
||||
<h2 className="text-white ltspc-20 text-uppercase fs-1 lh-1 mb-70">why choose us</h2>
|
||||
</div>
|
||||
<div className="row align-items-center">
|
||||
<div className="col-lg-6">
|
||||
<div className="img pe-lg-5">
|
||||
<img src="/assets/img/choose_us/circles.png" alt="" />
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6">
|
||||
<div className="info">
|
||||
<p className="text-white text-uppercase mb-60">We create differentiated value to rise to the <br /> top in this field</p>
|
||||
<ul>
|
||||
{
|
||||
chooseUsData.map((item, index) => (
|
||||
<li className={`d-flex ${index !== chooseUsData.length - 1 ? 'mb-30':''}`} key={index}>
|
||||
<div className="icon me-4 flex-shrink-0">
|
||||
<img src={item.image} alt="" />
|
||||
</div>
|
||||
<div className="inf">
|
||||
<h5 className="text-white text-capitalize mb-2">{ item.title }</h5>
|
||||
<small className="text-white op-8">
|
||||
{ typeof item.desc === 'string' ? item.desc : (<>{ item.desc.desc1 } <br /> { item.desc.desc2 }</>) }
|
||||
</small>
|
||||
</div>
|
||||
</li>
|
||||
))
|
||||
}
|
||||
</ul>
|
||||
<Link to="/page-contact-5" className="btn sm-butn border text-white radius-9 mt-70 hover-darkBlue">
|
||||
<span>Request A Consultation</span>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<Numbers />
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
export default ChooseUs
|
||||
Reference in New Issue
Block a user