'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 */}
{/* Slide */}
{/* Content Column */}

Sip. Savor. Smile.

Welcome to Sixty5Street – your go-to for bold, crave-worthy street food. From fiery wings to dosas and milkshakes, we serve fresh, fast flavor with attitude.
View Menu
{/* Image Column */}
{/* Slide */}
{/* Content Column */}

Big Street Taste

Subtext: Sink your teeth into juicy wings and loaded combos that bring the heat. Pick your style - BBQ, Buffalo, Garlic Parm, Hot Honey and level up your meal with fries and a pop.
View Menu
{/* Image Column */}
{/* Slide */}
{/* Content Column */}

Dosas to Drinks

Pair your favorite street bites with crispy snacks and creamy milkshakes. Whether it’s a cheesy dosa, spicy kothu, or a chilled Badham Royal shake, the street never tasted so good.
View Menu
{/* Image Column */}
{/* End Banner Section */} ) }