import { User, Bell, Shield, CreditCard, Key } from 'lucide-react'; const tabs = [ { id: 'profile', name: 'Perfil', icon: User }, { id: 'notifications', name: 'Notificaciones', icon: Bell }, { id: 'security', name: 'Seguridad', icon: Shield }, { id: 'billing', name: 'Facturación', icon: CreditCard }, { id: 'api', name: 'API Keys', icon: Key }, ]; export default function Settings() { return (

Configuración

Gestiona tu cuenta y preferencias

{/* Sidebar */}
{tabs.map((tab) => ( ))}
{/* Content */}

Perfil

); }