import { Settings as SettingsIcon, Bell, Shield, Palette, Globe, Database } from 'lucide-react'; import { AppLayout } from '@/components/layout/AppLayout'; import { cn } from '@/lib/utils'; const settingsSections = [ { icon: Bell, title: 'Notifications', description: 'Configure email and push notification preferences', status: 'Enabled', }, { icon: Shield, title: 'Security', description: 'Two-factor authentication and session management', status: '2FA Active', }, { icon: Palette, title: 'Appearance', description: 'Theme, colors, and display settings', status: 'Light Mode', }, { icon: Globe, title: 'Localization', description: 'Language, timezone, and currency settings', status: 'INR / IST', }, { icon: Database, title: 'Data & Export', description: 'Export data and manage backups', status: 'Last backup: Today', }, ]; export default function Settings() { return ( {/* Settings Header Card */}

Platform Configuration

Manage your Eventify backoffice settings

{/* Settings Grid */}
{settingsSections.map((section) => ( ))}
{/* API Settings */}

API Configuration

); }