import React from 'react'; import testimonialsData from 'data/CloudHosting/testimonials.json'; const Testimonials = () => { return (

Trusted by 20+ Million Users Around The World.

{ testimonialsData.totalRating } out of 5 based on

{ testimonialsData.totalReviews } reviews
{ testimonialsData.testimonials.map((testimonial, index) => (
{ Array(testimonial.stars).fill().map((_,i) => ) }
“ { testimonial.content } ”

{ testimonial.author.position }

{ testimonial.author.name }
)) }
) } export default Testimonials