'use client'
import { Autoplay, Navigation, Pagination } from "swiper/modules"
import { Swiper, SwiperSlide } from "swiper/react"
const swiperOptions = {
modules: [Autoplay, Pagination, Navigation],
slidesPerView: 5,
// spaceBetween: 20,
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: 20,
},
575: {
slidesPerView: 2,
// spaceBetween: 20,
},
767: {
slidesPerView: 3,
// spaceBetween: 20,
},
991: {
slidesPerView: 3,
// spaceBetween: 20,
},
1199: {
slidesPerView: 5,
// spaceBetween: 20,
},
1350: {
slidesPerView: 5,
// spaceBetween: 20,
},
}
}
export default function AwardSlider1() {
return (
<>
{/*
Best consulting
company
Best outsourcing
advisors
Customer choice for
support
Best consulting
company
*/}
{/* Gallery Block */}
{/* Overlay Box */}
{/* Gallery Block */}
{/* Overlay Box */}
{/* Gallery Block */}
{/* Overlay Box */}
{/* Gallery Block */}
{/* Overlay Box */}
{/* Gallery Block */}
{/* Overlay Box */}
{/* Gallery Block */}
{/* Overlay Box */}
{/* Gallery Block */}
{/* Overlay Box */}
{/* Gallery Block */}
{/* Overlay Box */}
{/* Gallery Block */}
{/* Overlay Box */}
{/* Gallery Block */}
{/* Overlay Box */}
>
)
}