"use client"; import { testimonials2 } from "@/data/testimonials"; import React from "react"; import { Swiper, SwiperSlide } from "swiper/react"; import { Pagination } from "swiper/modules"; export default function Testimonials() { return (

About Us

Driving your financial success with strategic expertise and solutions

{testimonials2.map((testimonial) => (
{testimonial.quote}
{testimonial.desc}
))}
); }