"use client"; import { testimonials } from "@/data/testimonials"; import React from "react"; import { Pagination } from "swiper/modules"; import { Swiper, SwiperSlide } from "swiper/react"; export default function Testimonials11() { return (
{testimonials.map((elm, i) => (

“{elm.quote}”

{elm.name}

{elm.title}

))} {/*/.swiper-wrapper */}
{/* /.swiper */}
{/* /.swiper-container */}
{/* /column */}
{/* /.row */}
{/*/.card-body */}
{/*/.card */}
{/* /column */}
{/* /.row */}
); }