"use client"; import { useState } from 'react'; import { ChevronDown, ShoppingCart, HeartPulse, Wallet, GraduationCap, Home, Plane, Scale, Megaphone } from 'lucide-react'; const verticals = [ { icon: , title: "Retail & E-commerce", description: "Enhance customer service with real-time chat support, personalized shopping experiences, and seamless order tracking.", gradient: "from-pink-500/20 to-purple-500/20", link: "/tools" }, { icon: , title: "Healthcare & Wellness", description: "Improve patient care through virtual consultations, appointment scheduling, and instant access to health resources.", gradient: "from-blue-500/20 to-cyan-500/20", link: "/tools" }, { icon: , title: "Finance & Banking", description: "Empower customers with financial insights, automated account management, and personalized advisory services.", gradient: "from-green-500/20 to-emerald-500/20", link: "/finance" }, { icon: , title: "Education & eLearning", description: "Revolutionize learning with interactive tutoring, course guidance, resource recommendations, and performance tracking.", gradient: "from-orange-500/20 to-yellow-500/20", link: "/tools" }, { icon: , title: "Real Estate & Property Management", description: "Streamline property listings, offer virtual tours, schedule viewings, and provide detailed market insights.", gradient: "from-purple-500/20 to-indigo-500/20", link: "/tools" }, { icon: , title: "Travel & Hospitality", description: "Enhance guest experiences with AI-driven booking assistance, itinerary management, and personalized recommendations.", gradient: "from-cyan-500/20 to-blue-500/20", link: "/tools" }, { icon: , title: "Legal & Consulting", description: "Simplify client communications, document management, and consultation scheduling for faster service delivery.", gradient: "from-violet-500/20 to-purple-500/20", link: "/tools" }, { icon: , title: "Creative & Marketing", description: "Boost engagement through dynamic content creation, campaign management, and customer insights analytics.", gradient: "from-rose-500/20 to-pink-500/20", link: "/tools" } ]; export default function BusinessVerticals() { const [expandedIndex, setExpandedIndex] = useState(null); return (

Transform Your Business Verticals

Our platform isn't one-size-fits-all—each industry can harness the power of AI to improve efficiency and drive growth.

{verticals.map((vertical, index) => (
{/* Main row - always visible */}
setExpandedIndex(expandedIndex === index ? null : index)} >
{/* Icon */}
{vertical.icon}
{/* Title */}

{vertical.title}

{/* Expand/Collapse icon */}
{/* Expanded content */}
{vertical.description}
{/* Action button */}
))}
{/* Bottom gradient line */}
); }