"use client"; const FEATURES = [ { icon: "link", title: "Unified Endpoint", desc: "Access all providers via a single standard API URL.", colors: { border: "hover:border-blue-500/50", bg: "hover:bg-blue-500/5", iconBg: "bg-blue-500/10", iconText: "text-blue-500", titleHover: "group-hover:text-blue-400" } }, { icon: "bolt", title: "Easy Setup", desc: "Get up and running in minutes with npx command.", colors: { border: "hover:border-orange-500/50", bg: "hover:bg-orange-500/5", iconBg: "bg-orange-500/10", iconText: "text-orange-500", titleHover: "group-hover:text-orange-400" } }, { icon: "shield_with_heart", title: "Model Fallback", desc: "Automatically switch providers on failure or high latency.", colors: { border: "hover:border-rose-500/50", bg: "hover:bg-rose-500/5", iconBg: "bg-rose-500/10", iconText: "text-rose-500", titleHover: "group-hover:text-rose-400" } }, { icon: "monitoring", title: "Usage Tracking", desc: "Detailed analytics and cost monitoring across all models.", colors: { border: "hover:border-purple-500/50", bg: "hover:bg-purple-500/5", iconBg: "bg-purple-500/10", iconText: "text-purple-500", titleHover: "group-hover:text-purple-400" } }, { icon: "key", title: "OAuth & API Keys", desc: "Securely manage credentials in one vault.", colors: { border: "hover:border-amber-500/50", bg: "hover:bg-amber-500/5", iconBg: "bg-amber-500/10", iconText: "text-amber-500", titleHover: "group-hover:text-amber-400" } }, { icon: "cloud_sync", title: "Cloud Sync", desc: "Sync your configurations across devices instantly.", colors: { border: "hover:border-sky-500/50", bg: "hover:bg-sky-500/5", iconBg: "bg-sky-500/10", iconText: "text-sky-500", titleHover: "group-hover:text-sky-400" } }, { icon: "terminal", title: "CLI Support", desc: "Works with Claude Code, Codex, Cline, Cursor, and more.", colors: { border: "hover:border-emerald-500/50", bg: "hover:bg-emerald-500/5", iconBg: "bg-emerald-500/10", iconText: "text-emerald-500", titleHover: "group-hover:text-emerald-400" } }, { icon: "dashboard", title: "Dashboard", desc: "Visual dashboard for real-time traffic analysis.", colors: { border: "hover:border-fuchsia-500/50", bg: "hover:bg-fuchsia-500/5", iconBg: "bg-fuchsia-500/10", iconText: "text-fuchsia-500", titleHover: "group-hover:text-fuchsia-400" } }, ]; export default function Features() { return (

Powerful Features

Everything you need to manage your AI infrastructure in one place, built for scale.

{FEATURES.map((feature) => (
{feature.icon}

{feature.title}

{feature.desc}

))}
); }