Files
CHIEFSOFT\ameye d8c7ec4866 first commit
2025-02-12 23:25:43 -05:00

46 lines
1.3 KiB
React

'use client'
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 TestimonialThree() {
const settings = {
dots: false,
arrow: true,
infinite: true,
speed: 900,
slidesToShow: 1,
slidesToScroll: 1,
autoplay: false,
margin: 30,
};
const TestimonilContent = [
{
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",
},
{
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: "Developer",
},
];
return (
<Slider {...settings}>
{TestimonilContent.map((val, i) => (
<div className="item" key={i}>
<p>{val.desc}</p>
<div className="name">{val.reviewerName}</div>
<span>{val.designation}</span>
</div>
))}
</Slider>
);
}