2025-07-02 11:47:23 +05:30

86 lines
1.9 KiB
TypeScript

'use client'
import { Swiper, SwiperSlide } from "swiper/react"
import { Autoplay, Navigation, Pagination } from "swiper/modules"
const swiperOptions = {
modules: [Autoplay, Pagination, Navigation],
slidesPerView: 4,
spaceBetween: 30,
autoplay: {
delay: 2500,
disableOnInteraction: false,
},
loop: true,
// Navigation
navigation: {
nextEl: '.h1n',
prevEl: '.h1p',
},
// Pagination
pagination: {
el: '.swiper-pagination',
clickable: true,
},
breakpoints: {
320: {
slidesPerView: 1,
spaceBetween: 30,
},
575: {
slidesPerView: 2,
spaceBetween: 30,
},
767: {
slidesPerView: 2,
spaceBetween: 30,
},
991: {
slidesPerView: 3,
spaceBetween: 30,
},
1199: {
slidesPerView: 4,
spaceBetween: 30,
},
1350: {
slidesPerView: 4,
spaceBetween: 30,
},
}
}
export default function BrandSlider() {
return (
<>
<Swiper {...swiperOptions} className="brand-slider-area owl-carousel">
<SwiperSlide className="brand-box">
<img src="/assets/img/elements/brand-img1.png" alt="" />
</SwiperSlide>
<SwiperSlide className="brand-box">
<img src="/assets/img/elements/brand-img2.png" alt="" />
</SwiperSlide>
<SwiperSlide className="brand-box">
<img src="/assets/img/elements/brand-img3.png" alt="" />
</SwiperSlide>
<SwiperSlide className="brand-box">
<img src="/assets/img/elements/brand-img4.png" alt="" />
</SwiperSlide>
<SwiperSlide className="brand-box">
<img src="/assets/img/elements/brand-img5.png" alt="" />
</SwiperSlide>
<SwiperSlide className="brand-box">
<img src="/assets/img/elements/brand-img6.png" alt="" />
</SwiperSlide>
<SwiperSlide className="brand-box">
<img src="/assets/img/elements/brand-img7.png" alt="" />
</SwiperSlide>
<SwiperSlide className="brand-box">
<img src="/assets/img/elements/brand-img8.png" alt="" />
</SwiperSlide>
</Swiper>
</>
)
}