"use client"; import { brandLogos } from "@/data/brands"; import { Autoplay } from "swiper/modules"; import { Swiper, SwiperSlide } from "swiper/react"; import Image from "next/image"; export default function Brands() { const swiperOptions = { spaceBetween: 30, speed: 2500, loop: true, modules: [Autoplay], autoplay: { delay: 2500, disableOnInteraction: false, }, breakpoints: { 1199: { slidesPerView: 5, }, 991: { slidesPerView: 4, }, 767: { slidesPerView: 3, }, 575: { slidesPerView: 2, }, 0: { slidesPerView: 2, }, }, }; return (