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() {

- + ) }