"use client"; import { brandsDark } from "@/data/brands"; import Image from "next/image"; import { Autoplay } from "swiper/modules"; import { Swiper, SwiperSlide } from "swiper/react"; export default function BrandsDark() { return ( {/* Team item */} {brandsDark.map((elm: any, i: number) => (
Company Name
))} {/* End Team item */}
); }