"use client"; import React, { useState } from "react"; import { AppLayout } from "@/components/app-layout"; import { Settings as SettingsIcon, User, Bell, Shield, Palette, Database } from "lucide-react"; export default function SettingsPage() { const [darkMode, setDarkMode] = useState(true); const [notifications, setNotifications] = useState(true); const [autoSave, setAutoSave] = useState(true); return (
{/* Header */}

Settings

Manage your account and preferences

{/* Settings Content */}
{/* Profile Section */}

Profile

{/* Appearance Section */}

Appearance

Dark Mode

Use dark theme across the app

{/* Notifications Section */}

Notifications

Push Notifications

Receive notifications about activity

{/* Data & Privacy Section */}

Data & Privacy

Auto-save History

Automatically save conversation history

{/* Security Section */}

Security

); }