'use client' import React from "react"; import Slider from "react-slick"; import "slick-carousel/slick/slick.css"; import "slick-carousel/slick/slick-theme.css"; import Image from "next/image"; const Testimonial = () => { const settings = { dots: false, arrow: false, infinite: true, fade: true, speed: 900, slidesToShow: 1, slidesToScroll: 1, autoplay: false, centerMode: false, centerPadding: "0", }; const testimonialContent = [ { _id: 1, img: "img_113", name: "Sara Harsa", designation: "Head of Content Marketing", descriptions: ` Form builders are as old as the web, but Typeform elevates the medium substantially.`, }, { _id: 1, img: "img_114", name: "Bostami Hasan", designation: "Front-end Lead", descriptions: `Whether you’re promoting your business, showcasing your work or opening your store.`, }, ]; return ( <> {testimonialContent.map((review) => (
Client Feefdback

{review.descriptions}

{review.name}

{review.designation}
{/* */}
{/* End .col */}
social
))}
); }; export default Testimonial;