"use client"; import { testimonials } from "@/data/testimonials"; import { Autoplay, Navigation } from "swiper/modules"; import { Swiper, SwiperSlide } from "swiper/react"; import AnimatedText from "@/components/common/AnimatedText"; import Image from "next/image"; export default function Testimonials() { const swiperOptions = { spaceBetween: 30, speed: 2000, loop: true, modules: [Autoplay, Navigation], autoplay: { delay: 2000, disableOnInteraction: false, }, navigation: { nextEl: ".snbp2", prevEl: ".snbn2", }, }; return (
img
img
img
testimonials


{testimonials.map((text, index) => (

{text}

))}
img
img
img
); }