"use client" import { cn } from "@/lib/utils" import { motion } from "framer-motion" import { BarChart3, ChevronRight, Globe, LineChart, Settings, Shield } from "lucide-react" import type React from "react" import { useState } from "react" interface Feature { icon: React.ReactNode title: string description: string color: { light: string dark: string } iconColor: { light: string dark: string } hoverColor: { light: string dark: string } } export default function FeaturesShowcase3() { const [hoveredFeature, setHoveredFeature] = useState(null) const features: Feature[] = [ { icon: , title: "Performance Analytics", description: "Advanced metrics and insights to optimize your business operations and track growth.", color: { light: "bg-gradient-to-br from-blue-50 to-blue-100", dark: "bg-gradient-to-br from-blue-950/40 to-blue-900/30", }, iconColor: { light: "text-blue-600", dark: "text-blue-400", }, hoverColor: { light: "from-blue-100 to-blue-200", dark: "from-blue-900/50 to-blue-800/40", }, }, { icon: , title: "Enterprise Security", description: "Military-grade encryption and compliance protocols to protect your sensitive data.", color: { light: "bg-gradient-to-br from-purple-50 to-purple-100", dark: "bg-gradient-to-br from-purple-950/40 to-purple-900/30", }, iconColor: { light: "text-purple-600", dark: "text-purple-400", }, hoverColor: { light: "from-purple-100 to-purple-200", dark: "from-purple-900/50 to-purple-800/40", }, }, { icon: , title: "Seamless Integration", description: "Connect with your existing tech stack through our extensive API and integration ecosystem.", color: { light: "bg-gradient-to-br from-amber-50 to-amber-100", dark: "bg-gradient-to-br from-amber-950/40 to-amber-900/30", }, iconColor: { light: "text-amber-600", dark: "text-amber-400", }, hoverColor: { light: "from-amber-100 to-amber-200", dark: "from-amber-900/50 to-amber-800/40", }, }, { icon: , title: "Advanced Reporting", description: "Customizable dashboards and reports that deliver actionable business intelligence.", color: { light: "bg-gradient-to-br from-emerald-50 to-emerald-100", dark: "bg-gradient-to-br from-emerald-950/40 to-emerald-900/30", }, iconColor: { light: "text-emerald-600", dark: "text-emerald-400", }, hoverColor: { light: "from-emerald-100 to-emerald-200", dark: "from-emerald-900/50 to-emerald-800/40", }, }, { icon: , title: "Global Infrastructure", description: "Distributed architecture ensuring reliability, scalability, and low-latency worldwide.", color: { light: "bg-gradient-to-br from-rose-50 to-rose-100", dark: "bg-gradient-to-br from-rose-950/40 to-rose-900/30", }, iconColor: { light: "text-rose-600", dark: "text-rose-400", }, hoverColor: { light: "from-rose-100 to-rose-200", dark: "from-rose-900/50 to-rose-800/40", }, }, ] return (

Enterprise-Grade Solutions

Robust features designed to optimize operations, enhance security, and accelerate your organization's digital transformation.

{features.map((feature, index) => ( setHoveredFeature(index)} onMouseLeave={() => setHoveredFeature(null)} initial={{ opacity: 0, y: 20 }} whileInView={{ opacity: 1, y: 0 }} viewport={{ once: true, amount: 0.2 }} transition={{ duration: 0.5, delay: index * 0.1 }} role="article" aria-labelledby={`feature-title-${index}`} > ))}
) }