"use client"; import { motion } from 'framer-motion'; import { Save, Bell, Shield, Database, Cpu, Settings, MessageSquare, Sliders, HardDrive, Trash2 } from 'lucide-react'; const containerVariants = { hidden: { opacity: 0 }, show: { opacity: 1, transition: { staggerChildren: 0.1, } } }; const itemVariants = { hidden: { opacity: 0, y: 20, scale: 0.95 }, show: { opacity: 1, y: 0, scale: 1, transition: { type: "spring" as const, stiffness: 300, damping: 24 } } }; export default function SettingsPage() { return (

System Config

Adjust core parameters, AI models, and notification routing.

Save Changes
{/* AI Settings */}

AI Engine Preferences

{/* Alert Routing */}

Alert Routing

Telegram Bot
Connected (@BidWraithBot)
Discord Webhook
Not Configured
{/* Stealth Mode */}

Stealth Mode

Fast / Bot Slow / Human
{/* Data Management */}

Data Management

Export Database Purge Old Logs
); }