118 lines
5.7 KiB
TypeScript
118 lines
5.7 KiB
TypeScript
'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 (
|
||
<>
|
||
<Layout headerStyle={1} footerStyle={1}>
|
||
{/* Header Section */}
|
||
<div
|
||
className="inner-page-header"
|
||
style={{ backgroundImage: 'url(/assets/img/bg/header-bg11.png)' }}
|
||
>
|
||
<div className="container">
|
||
<div className="row">
|
||
<div className="col-lg-6 m-auto">
|
||
<div className="heading1 text-center">
|
||
<h1>Badminton Club</h1>
|
||
<div className="space20" />
|
||
<Link href="/">
|
||
Home <i className="fa-solid fa-angle-right" /> <span>Badminton Club</span>
|
||
</Link>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div className="bloginner-section-area sp1">
|
||
<div className="container">
|
||
<div className="row">
|
||
<div className="col-lg-12 m-auto">
|
||
<div className="event2-header heading5 space-margin60">
|
||
<h2 className="text-anime-style-3">
|
||
Badminton Club Cambridge
|
||
</h2>
|
||
<div className="space24" />
|
||
<p>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.</p>
|
||
<div className="space24" />
|
||
<p>
|
||
2022/23 Badminton Membership Fee:
|
||
</p>
|
||
|
||
<p>
|
||
Single $106.00
|
||
</p>
|
||
<p>
|
||
Family $157.00
|
||
</p>
|
||
<div className="space24" />
|
||
<p>
|
||
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)
|
||
</p>
|
||
|
||
<p>The school is primarily supported by Tamil Cultural Association of Waterloo Region and Waterloo District School Board.
|
||
More info: <a href="mailto:mail@tca.srika.in">mail@tca.srika.in</a>
|
||
</p>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<div className="row gx-5">
|
||
<div className="col-lg-12">
|
||
<div className="row mt-4">
|
||
{galleryImages.map((img, i) => (
|
||
<div className="col-lg-3 col-md-3 col-sm-12 col-6 event-img" key={img.id}>
|
||
<div
|
||
className="memory-boxarea pl-3"
|
||
style={{ cursor: "pointer" }}
|
||
onClick={() => {
|
||
setIndex(i);
|
||
setOpen(true);
|
||
}}
|
||
>
|
||
<div className="image" data-aos="zoom-in" data-aos-duration={1000}>
|
||
<img src={img.src} alt={img.alt} style={{ width: "100%", borderRadius: 8 }} />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
))}
|
||
|
||
{galleryImages.length === 0 && (
|
||
<div className="col-12 text-center mt-5">
|
||
<p className="text-muted">No images found for this event.</p>
|
||
</div>
|
||
)}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<Lightbox
|
||
open={open}
|
||
close={() => setOpen(false)}
|
||
slides={galleryImages}
|
||
index={index}
|
||
/>
|
||
</Layout>
|
||
</>
|
||
);
|
||
}
|