"use client"; import Image from "next/image"; import { motion } from "framer-motion"; const agents = [ { name: "Johny Nugroho", title: "Branch Manager Jaecoo Cihampelas Bandung", image: "/johny.png", }, { name: "Basuki Pamungkas", title: "Spv Jaecoo Cihampelas Bandung", image: "/basuki.png", }, { name: "Deni Tihayar", title: "Spv Jaecoo Cihampelas Bandung", image: "/deni.png", }, ]; export default function BestAgent() { return (
Our Teams
{agents.map((agent, index) => (
{agent.name}

{agent.name}

{agent.title}

))}
); }