'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: "Grace moves with vibrant
Tradition meets bass", date: 'SERVING', location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD AND SURROUNDING AREAS SINCE 1989', bgImage: '/assets/img/home/banner/banner-2.webp', image: '/assets/img/all-images/hero/hero-img12.png', buttonText: "Discover Harmony", buttonLink: "/about", }, { title: "Crafted with tradition’s
Feel rhythm of roots", date: 'SERVING', location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD AND SURROUNDING AREAS SINCE 1989', bgImage: '/assets/img/home/banner/banner-3.webp', image: '/assets/img/all-images/hero/hero-img12.png', buttonText: "Heritage Beats", buttonLink: "/upcoming-event", }, { title: 'Lighting hearts across
A blend of spirit', date: 'SERVING', location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD AND SURROUNDING AREAS SINCE 1989', bgImage: '/assets/img/home/banner/banner-4.webp', image: '/assets/img/all-images/hero/hero-img12.png', buttonText: "Radiant Spirit", buttonLink: "/community", }, { title: ' Rooted in timeless old
Echoes of legacy', date: 'SERVING', location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD AND SURROUNDING AREAS SINCE 1989', bgImage: '/assets/img/home/banner/banner-5.webp', image: '/assets/img/all-images/hero/hero-img12.png', buttonText: "Hear Echo", buttonLink: "/tamil-culture", }, ]; return ( {slideData.map((slide, index) => (
{/* */} Where Culture Meets the Beat

{slide.buttonText} {/* Schedules */}
{/*
*/}
{/*
*/}

{slide.date}

{slide.location}

))} ); }