"use client"; import React from "react"; import Link from "next/link"; import Image from "next/image"; import { teamMembers3 } from "@/data/team"; import { Swiper, SwiperSlide } from "swiper/react"; import { Pagination } from "swiper/modules"; export default function Team() { return (
OUR TEAMS

Show you the way to the success

Providing expert financial consulting services to help you grow, optimize, and
thrive in today's competitive landscape

{teamMembers3.map((member, index) => (
{member.name}

{member.role}

))}
); }