diff --git a/app/community/global-relief-fund/page.tsx b/app/community/global-relief-fund/page.tsx new file mode 100644 index 0000000..95b3bfe --- /dev/null +++ b/app/community/global-relief-fund/page.tsx @@ -0,0 +1,107 @@ +'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 GlobalReliefFund() { + // Show only images with id 1 to 4 + const galleryImages = communitySubmenuData.filter(img => +img.id >= 1 && +img.id <= 4); + + const [open, setOpen] = useState(false); + const [index, setIndex] = useState(0); + + return ( + <> + + {/* Header Section */} +
+
+
+
+
+

TCA Global Relief Fund

+
+ + Home Community + +
+
+
+
+
+
+
+
+
+
+

+ TCA Global Relief Fund +

+
+

Tamil Cultural Association established a global relief fund in 2000 to support financially as well as in-kind support to under privileged communities or individual in Canada, Sri Lanka and India.

+
+
+

1. A consignment of cloths were shipped through Trico freight to Nunavil Children’s Orphanage in Jaffna, Sri Lanka.

+

2. Indian Rupees of 25,000 donated to burnt victim in Trichy, South India.

+

3. Project Hope fundraising in 2008 for Ramakrishna Mission school library, Batticaloa, Sri Lanka. Raised $2032.00

+

4. Donated funds and food items to St. John’s Soup Kitchen, Kitchener

+

5. Gifted educational materials to school children in Jaffna and Killinochchi, Sri Lanka in 2021. Facilitated by YMCA Jaffna.

+

6. Dry ration food kits were donated to Indian upcountry community in Nuwara Eliya and Kegalle district in 2021. Funds raised $3300

+

7. Toronto Tamil Chair campaign to establish a Tamil chair at University of Toronto. Raised funds amounting to $2400 in 2021

+

8. Raised funds and donated dry food to Waterloo Region Food bank in 2022. It was part of Tamil Heritage month.

+
+
+
+
+ +
+
+
+ {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} + /> + + + ); +} diff --git a/public/assets/img/all-images/community/global-fund.jpg b/public/assets/img/all-images/community/global-fund.jpg new file mode 100644 index 0000000..e41a52d Binary files /dev/null and b/public/assets/img/all-images/community/global-fund.jpg differ