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

“{elm.quote}”

{elm.name}

{elm.title}

))} {/*/.swiper-wrapper */}
{/* /.swiper */}
{/* /.swiper-container */}
{/*/column */}
{/*/.row */}
{brands.slice(0, 6).map((elm, i) => (
image
))}
{/*/.row */}
{/* /div */}
{/* /.container */}
); }