import React from 'react'; import { Link } from 'gatsby'; import Numbers from './Numbers'; import chooseUsData from 'data/IT/chooseus.json'; const ChooseUs = () => { return (

why choose us

We create differentiated value to rise to the
top in this field

    { chooseUsData.map((item, index) => (
  • { item.title }
    { typeof item.desc === 'string' ? item.desc : (<>{ item.desc.desc1 }
    { item.desc.desc2 }) }
  • )) }
Request A Consultation
) } export default ChooseUs