'use client'; import Countdown from '@/components/elements/Countdown'; import Link from 'next/link'; import { Swiper, SwiperSlide } from 'swiper/react'; import { Autoplay, Navigation, Pagination } from 'swiper/modules'; import 'swiper/css'; import 'swiper/css/navigation'; import 'swiper/css/pagination'; export default function HomeHeroBanner() { const slideData = [ // { // title: 'World Music Events 2025', // date: 'SERVING', // location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD AND SURROUNDING AREAS SINCE 1989', // bgImage: '/assets/img/home/banner/banner-1.webp', // image: '/assets/img/all-images/hero/hero-img11.png', // }, { // title: 'Tamil Cultural Nite 2025', // date: 'SERVING', // location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD AND SURROUNDING AREAS SINCE 1989', bgImage: '/assets/img/home/banner/banner.webp', // image: '/assets/img/all-images/hero/hero-img12.png', // buttonText: "Book Now", // buttonLink: "/upcoming-event/tamil-cultural-nite-2025", }, { title: 'Tamil Cultural Nite 2025', date: 'SERVING', location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD AND SURROUNDING AREAS SINCE 1989', bgImage: '/assets/img/home/banner/hero-banner-3.webp', image: '/assets/img/all-images/hero/hero-img12.png', buttonText: "Book Now", buttonLink: "/upcoming-event/tamil-cultural-nite-2025", }, { title: "Tamil Cultural Nite 2025", date: 'SERVING', location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD AND SURROUNDING AREAS SINCE 1989', bgImage: '/assets/img/home/banner/hero-banner-1.webp', image: '/assets/img/all-images/hero/hero-img12.png', buttonText: "Book Now", buttonLink: "/upcoming-event/tamil-cultural-nite-2025", }, { title: "Tamil Cultural Nite 2025", date: 'SERVING', location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD AND SURROUNDING AREAS SINCE 1989', bgImage: '/assets/img/home/banner/hero-banner-2.webp', image: '/assets/img/all-images/hero/hero-img12.png', buttonText: "Book Now", buttonLink: "/upcoming-event/tamil-cultural-nite-2025", }, { title: 'Tamil Cultural Nite 2025', date: 'SERVING', location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD AND SURROUNDING AREAS SINCE 1989', bgImage: '/assets/img/home/banner/hero-banner-5.webp', image: '/assets/img/all-images/hero/hero-img12.png', buttonText: "Book Now", buttonLink: "/upcoming-event/tamil-cultural-nite-2025", }, ]; return ( {slideData.map((slide, index) => (
{slide.title && ( <>
Where Culture Meets the Beat

)}
{slide.buttonLink && slide.buttonText && (
{slide.buttonText}
)}
{(slide.date || slide.location) && (
{slide.date &&

{slide.date}

} {slide.location && (

{slide.location}

)}
)}
))} ); }