'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 */}
Delicious street food served at Sixty5 Street Brampton1 {/* Overlay Box */}
{/* Gallery Block */}
Sixty5 Street restaurant interior Brampton Ontario {/* Overlay Box */}
{/* Gallery Block */}
Customer dining experience at Sixty5 Street Brampton {/* Overlay Box */}
{/* Gallery Block */}
Signature dishes at Sixty5 Street Brampton restaurant {/* Overlay Box */}
{/* Gallery Block */}
Sixty5 Street kitchen and staff in Brampton ON {/* Overlay Box */}
{/* Gallery Block */}
Delicious street food served at Sixty5 Street Brampton3 {/* Overlay Box */}
{/* Gallery Block */}
Sixty5 Street restaurant interior Brampton Ontario2 {/* Overlay Box */}
{/* Gallery Block */}
Customer dining experience at Sixty5 Street Brampton2 {/* Overlay Box */}
{/* Gallery Block */}
Signature dishes at Sixty5 Street Brampton restaurant2 {/* Overlay Box */}
{/* Gallery Block */}
Sixty5 Street kitchen and staff in Brampton ON2 {/* Overlay Box */}
{/* End Gallery Section */} ) }