From 8b6d6007e95b26223ff4c172f1d58363d2ed8703 Mon Sep 17 00:00:00 2001 From: Akshay Date: Mon, 24 Nov 2025 16:24:39 +0530 Subject: [PATCH] feat: Integrate CardSpotlight component for enhanced feature card UI in Organizations section. --- components/home/OrganizationsSection.tsx | 53 +++++++++++++++--------- 1 file changed, 34 insertions(+), 19 deletions(-) diff --git a/components/home/OrganizationsSection.tsx b/components/home/OrganizationsSection.tsx index 695c89e2..b3b9cdf4 100644 --- a/components/home/OrganizationsSection.tsx +++ b/components/home/OrganizationsSection.tsx @@ -5,6 +5,7 @@ import { Button } from "@/components/ui/button" import { Building2, Users, ArrowRight, Sparkles } from "lucide-react" import Link from "next/link" import { cn } from "@/lib/utils" +import { CardSpotlight } from "@/components/ui/card-spotlight" const features = [ { @@ -76,29 +77,43 @@ export function OrganizationsSection() { transition={{ duration: 0.6, delay: index * 0.1 }} viewport={{ once: true }} whileHover={{ y: -8, transition: { duration: 0.3 } }} - className="relative" > -
- - - + +
-
-

{feature.title}

-

+

+
+ + + + +

{feature.title}

+
+

{feature.description}

-
+ ))}
@@ -137,6 +152,6 @@ export function OrganizationsSection() {

- + ) }