'use client' import Image from "next/image"; import React from "react"; import Slider from "react-slick"; import "slick-carousel/slick/slick.css"; import "slick-carousel/slick/slick-theme.css"; export default function TestimonialTwo() { const settings = { dots: true, arrow: false, infinite: true, speed: 900, slidesToShow: 3, slidesToScroll: 1, autoplay: false, centerMode: true, centerPadding: "0", responsive: [ { breakpoint: 991, settings: { slidesToShow: 2, }, }, { breakpoint: 576, settings: { slidesToShow: 1, }, }, ], }; const TestimonilContent = [ { img: "logo-8", desc: `Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`, reviewerName: "Jannatul Ekra", designation: "Designer", }, { img: "logo-9", desc: `Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`, reviewerName: "Bostami Hasan", designation: "Front-end Engineer", }, { img: "logo-10", desc: ` Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`, reviewerName: "Kuyeti Krima", designation: "Visual Designer", }, { img: "logo-9", desc: `Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`, reviewerName: "Zibaiya Reian", designation: "Motion Graphy Expert", }, { img: "logo-10", desc: `Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`, reviewerName: "Riana Sariya", designation: "Digital Photographer", }, ]; return ( {TestimonilContent.map((val, i) => (
image

{val.desc}

{val.reviewerName}
{val.designation}
{/* /.bg-wrapper */}
))}
); }