import { Bot, Network, Brain, Shield, Target, Eye } from 'lucide-react'; import ScrollReveal from '../hero/ScrollReveal'; const FEATURES = [ { icon: Bot, title: 'Rug Munch Bot', desc: '24/7 Telegram bot monitoring 4 channels. Instant scam alerts delivered to your DMs before devs can dump.', color: 'green', badge: 'FREE ALERTS' }, { icon: Network, title: 'Muncher Maps', desc: 'The crown jewel - 3D network visualization showing wallet connections no competitor can match.', color: 'purple', badge: 'ELITE ONLY' }, { icon: Brain, title: 'RMI Intelligence', desc: 'Multi-model AI analyzing contracts, wallets, and social signals. 50+ detection vectors.', color: 'blue', badge: 'AI-POWERED' }, { icon: Shield, title: "Don't Get Rugged", desc: 'Early warning system: honeypots, hidden mints, fresh wallets, and exit scams detected instantly.', color: 'red', badge: '99.2% ACCURACY' }, { icon: Target, title: 'Follow Smart Money', desc: 'Track whales, insiders, and coordinated groups. See what the smart money is doing before they dump.', color: 'yellow', badge: 'PRO+' }, { icon: Eye, title: 'The Trenches', desc: 'Community-powered intelligence. Verified reports, real-time alerts, and reputation rewards.', color: 'cyan', badge: 'COMMUNITY' }, ]; export default function FeaturesSection() { return (

Complete Web3 Security Suite

Everything you need to stay safe in crypto

{FEATURES.map((feature, idx) => { const colorClasses: Record = { green: 'text-green-400 bg-green-500/10 border-green-500/20', purple: 'text-purple-400 bg-purple-500/10 border-purple-500/20', blue: 'text-blue-400 bg-blue-500/10 border-blue-500/20', red: 'text-red-400 bg-red-500/10 border-red-500/20', yellow: 'text-yellow-400 bg-yellow-500/10 border-yellow-500/20', cyan: 'text-cyan-400 bg-cyan-500/10 border-cyan-500/20', }; const colorClass = colorClasses[feature.color] || colorClasses.blue; return (
{feature.badge}

{feature.title}

{feature.desc}

); })}
); }