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/components/home/AboutSection.tsx b/components/home/AboutSection.tsx index 4193f4f..01e4865 100644 --- a/components/home/AboutSection.tsx +++ b/components/home/AboutSection.tsx @@ -76,7 +76,7 @@ export default function AboutSection() {
*/}
- know More + know More
diff --git a/components/home/AdSectionOne.tsx b/components/home/AdSectionOne.tsx index 0a5a3bd..dd44bb4 100644 --- a/components/home/AdSectionOne.tsx +++ b/components/home/AdSectionOne.tsx @@ -23,16 +23,16 @@ export default function AdSectionOne() {
  • - Image size - 1200 * 270 + Image size - 1200 * 270
  • - $150 - per Year + $150 - per Year
- Online Payment + Online Payment
diff --git a/components/home/AdSectionThree.tsx b/components/home/AdSectionThree.tsx index 7b91925..5e9684f 100644 --- a/components/home/AdSectionThree.tsx +++ b/components/home/AdSectionThree.tsx @@ -32,7 +32,7 @@ export default function AdSectionThree() {
- Online Payment + Online Payment
diff --git a/components/home/ArtsAndCultureSection.tsx b/components/home/ArtsAndCultureSection.tsx index 6f15938..b3f3f0a 100644 --- a/components/home/ArtsAndCultureSection.tsx +++ b/components/home/ArtsAndCultureSection.tsx @@ -75,7 +75,7 @@ export default function ArtAndCultureSection() {
- + {/* */}
@@ -90,7 +90,7 @@ export default function ArtAndCultureSection() {
- + {/* */}
@@ -105,7 +105,7 @@ export default function ArtAndCultureSection() {
- + {/* */}
@@ -120,7 +120,7 @@ export default function ArtAndCultureSection() {
- + {/* */}
@@ -135,7 +135,7 @@ export default function ArtAndCultureSection() {
- + {/* */}
@@ -150,7 +150,7 @@ export default function ArtAndCultureSection() {
- + {/* */}
@@ -165,7 +165,7 @@ export default function ArtAndCultureSection() {
- + {/* */}
diff --git a/components/home/HeroBanner.tsx b/components/home/HeroBanner.tsx index b38e9c7..670dd7b 100644 --- a/components/home/HeroBanner.tsx +++ b/components/home/HeroBanner.tsx @@ -19,28 +19,28 @@ export default function HomeHeroBanner() { // image: '/assets/img/all-images/hero/hero-img11.png', // }, { - title: 'Global DJ Tour 2025', + title: "Global DJ
Tour 2025", date: 'SERVING', location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD SINCE 1989', bgImage: '/assets/img/home/banner/banner-2.webp', image: '/assets/img/all-images/hero/hero-img12.png', }, { - title: 'Global DJ Tour 2025', + title: 'Global DJ
Tour 2025', date: 'SERVING', location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD SINCE 1989', bgImage: '/assets/img/home/banner/banner-3.webp', image: '/assets/img/all-images/hero/hero-img12.png', }, { - title: 'Global DJ Tour 2025', + title: 'Global DJ
Tour 2025', date: 'SERVING', location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD SINCE 1989', bgImage: '/assets/img/home/banner/banner-4.webp', image: '/assets/img/all-images/hero/hero-img12.png', }, { - title: 'Global DJ Tour 2025', + title: 'Global DJ
Tour 2025', date: 'SERVING', location: 'WATERLOO – KITCHENER – CAMBRIDGE- GUELPH – BRANTFORD SINCE 1989', bgImage: '/assets/img/home/banner/banner-5.webp', @@ -77,7 +77,7 @@ export default function HomeHeroBanner() { WE ARE COMING FOR
-

{slide.title}

+

diff --git a/components/home/HomePhotoGallerySection.tsx b/components/home/HomePhotoGallerySection.tsx index cf55555..9edc7c6 100644 --- a/components/home/HomePhotoGallerySection.tsx +++ b/components/home/HomePhotoGallerySection.tsx @@ -115,7 +115,7 @@ export default function HomePhotoGallerySection() {
- know More + know More
diff --git a/components/home/HomeUpcomingEvent.tsx b/components/home/HomeUpcomingEvent.tsx index 2cd2044..b87b6bd 100644 --- a/components/home/HomeUpcomingEvent.tsx +++ b/components/home/HomeUpcomingEvent.tsx @@ -108,7 +108,7 @@ export default function HomeUpcomingEvent() {
*/}
- Online Tickets + Online Tickets
@@ -164,7 +164,7 @@ export default function HomeUpcomingEvent() {
*/}
- purchase ticket + purchase ticket
@@ -231,7 +231,7 @@ export default function HomeUpcomingEvent() {
*/}
- purchase ticket + purchase ticket
diff --git a/components/layout/footer/Footer1.tsx b/components/layout/footer/Footer1.tsx index 0da065b..07d883f 100644 --- a/components/layout/footer/Footer1.tsx +++ b/components/layout/footer/Footer1.tsx @@ -10,7 +10,7 @@ export default function Footer1() {
- logo + logo

We are committed to creating a platform where business leaders, innovators, and professionals can come together to exchange ideas

@@ -126,7 +126,7 @@ export default function Footer1() {
-

Copyright {new Date().getFullYear()} © TamilCultureAssociation. Powered by MetatronCube. All Right Reserved.

+

Copyright {new Date().getFullYear()} © TamilCultureAssociation. Powered by MetatronCube. All Right Reserved.

diff --git a/public/assets/css/main.css b/public/assets/css/main.css index d0bdd33..10ea387 100644 --- a/public/assets/css/main.css +++ b/public/assets/css/main.css @@ -7021,7 +7021,7 @@ color: var(--ztc-text-text-1); } .footer1-sertion-area .footer-logo-area ul li a:hover { - background: #fff; + background: #ed1b24; transition: all 0.4s; } @@ -28134,7 +28134,7 @@ html { } .gallery-btn{ - font-size: 24px; + font-size: 18px; font-weight:600; padding: 10px 15px; } \ No newline at end of file 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