"use client"; import React from "react"; import SectionTitle from "@/components/common/SectionTitle"; import Slider from "react-slick"; const BrandSection = () => { const settings = { dots: false, arrows: false, infinite: true, slidesToShow: 4, slidesToScroll: 4, autoplay: true, speed: 1000, autoplaySpeed: 3000, cssEase: "ease", pauseOnHover: true, draggable: true, responsive: [ { breakpoint: 1024, settings: { slidesToShow: 4, } }, { breakpoint: 768, settings: { slidesToShow: 3, } }, { breakpoint: 480, settings: { slidesToShow: 2, } }, { breakpoint: 400, settings: { slidesToShow: 1, } } ] }; return (
{/*
shape
*/}
{[1, 2, 3, 4, 1, 2, 3, 4].map((num, i) => (
))}
); }; export default BrandSection;