"use client"; import { testimonials } from "@/data/testimonials"; import React from "react"; import { Swiper, SwiperSlide } from "swiper/react"; import Image from "next/image"; import { counterItems2 } from "@/data/facts"; import OdometerComponent from "@/components/common/OdometerComponent"; export default function ThreeImageDisplay(){ return(
{testimonials.map((testimonial, index) => (
testimonial
))}
); }