import Image from "next/image"; const technologies = [ { name: "Tableau", src: "/image/tableu.png" }, { name: "TVU Networks", src: "/image/tvu.png" }, { name: "AWS", src: "/image/aws.png" }, { name: "Dell", src: "/image/dell.png" }, { name: "Zenlayer", src: "/image/zen.png" }, { name: "Ui", src: "/image/uipath.png" }, ]; export default function Technology() { return (
{/* Title */}

TECHNOLOGY PARTNERS

{/* Slider */}
{/* duplicated for seamless loop */} {[...technologies, ...technologies].map((tech, index) => (
{tech.name}
))}
); }