'use client'; import Layout from '@/components/layout/Layout'; import { communitySubmenuData } from '@/utility/constant.utils'; import Link from 'next/link'; import { useSearchParams } from 'next/navigation'; import { useState } from 'react'; import Lightbox from "yet-another-react-lightbox"; import "yet-another-react-lightbox/styles.css"; export default function CricketClub() { // Show only images with id 1 to 4 const galleryImages = communitySubmenuData.filter(img => +img.id >= 9 && +img.id <= 12); const [open, setOpen] = useState(false); const [index, setIndex] = useState(0); return ( <> {/* Header Section */}

Badminton Club

Home Badminton Club

Badminton Club Cambridge

Waterloo region’s Tamil Badminton Club was started in 2019. It is held on Friday at 6:30 – 9:30pm, William G Davis Public School, 530 Langs Drive, Cambridge, Ontario. Membership is open to members of Tamil Cultural Association of Waterloo Region only.

2022/23 Badminton Membership Fee:

Single $106.00

Family $157.00

A Badminton club member has to obtain TCA membership prior to joining the club. Membership includes Court fee and Insurance. Fall/Winter season only. (Sep.23/22 To May 26/23)

The school is primarily supported by Tamil Cultural Association of Waterloo Region and Waterloo District School Board. More info: mail@tca.srika.in

{galleryImages.map((img, i) => (
{ setIndex(i); setOpen(true); }} >
{img.alt}
))} {galleryImages.length === 0 && (

No images found for this event.

)}
setOpen(false)} slides={galleryImages} index={index} /> ); }