From e7ffa4717a7622a7972d1665903d856854b69f2c Mon Sep 17 00:00:00 2001 From: Akshay Date: Sat, 13 Sep 2025 08:15:09 +0530 Subject: [PATCH] feat(home): add sponsors section with animated display Add a new SponsorsSection component to showcase project sponsors with animation effects. The section includes logos, titles, and links for each sponsor, with hover animations and a scrolling display. Also updates the project name in package-lock.json. --- app/page.tsx | 20 +++ components/home/SponsorsSection.tsx | 234 ++++++++++++++++++++++++++++ package-lock.json | 2 +- 3 files changed, 255 insertions(+), 1 deletion(-) create mode 100644 components/home/SponsorsSection.tsx diff --git a/app/page.tsx b/app/page.tsx index 237bd3ad7..b9c69ca43 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -57,6 +57,21 @@ const LatestContentPreview = dynamic(() => import("@/components/home/LatestConte ssr: false }); +// New: SponsorsSection on Home +const SponsorsSection = dynamic(() => import("@/components/home/SponsorsSection").then(mod => ({ default: mod.SponsorsSection })), { + loading: () => ( +
+
+
+
+
+
+
+
+ ), + ssr: false +}); + const Footer = dynamic(() => import("@/components/footer"), { loading: () => (