'use client' import Link from "next/link" import { Autoplay, Navigation, Pagination } from "swiper/modules" import { Swiper, SwiperSlide } from "swiper/react" const swiperOptions = { modules: [Autoplay, Pagination, Navigation], slidesPerView: 5, spaceBetween: 0, // 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: 1, // spaceBetween: 30, }, 767: { slidesPerView: 2, // spaceBetween: 30, }, 991: { slidesPerView: 3, // spaceBetween: 30, }, 1199: { slidesPerView: 3, // spaceBetween: 30, }, 1350: { slidesPerView: 5, // spaceBetween: 30, }, } } export default function Gallery() { return ( <> {/* Gallery Section */}
{/* 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 */}
{/* End Gallery Section */} ) }