'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: 1, spaceBetween: 0, // autoplay: { // delay: 2500, // disableOnInteraction: false, // }, loop: true, // Navigation navigation: { nextEl: '.h1n', prevEl: '.h1p', }, // Pagination pagination: { el: '.swiper-pagination', clickable: true, }, } export default function Banner() { return ( <> {/* Banner Section Two */}
{/* Slide */}
Foodily
{/* Content Column */}
Best for You

Delicious Food
on the street.

We have the best sed non mauris vitae erat
consequat auctor eu in elit.
Buy Now
{/* Image Column */}
{/* Slide */}
Foodily
{/* Content Column */}
Best for You

Delicious Food
on the street.

We have the best sed non mauris vitae erat
consequat auctor eu in elit.
Buy Now
{/* Image Column */}
{/* Slide */}
Foodily
{/* Content Column */}
Best for You

Delicious Food
on the street.

We have the best sed non mauris vitae erat
consequat auctor eu in elit.
Buy Now
{/* Image Column */}
{/* End Banner Section */} ) }