'use client' import { useState } from 'react' import { SettingsNav, SettingsSection, SettingSelect } from '@/components/settings' import { updateAISettings } from '@/app/actions/ai-settings' export default function AppearanceSettingsPage() { const [theme, setTheme] = useState('auto') const [fontSize, setFontSize] = useState('medium') const handleThemeChange = async (value: string) => { setTheme(value) // TODO: Implement theme persistence console.log('Theme:', value) } const handleFontSizeChange = async (value: string) => { setFontSize(value) // TODO: Implement font size persistence await updateAISettings({ fontSize: value as any }) } return (
{/* Sidebar Navigation */} {/* Main Content */}

Appearance

Customize the look and feel of the application

🎨} description="Choose your preferred color scheme" > 📝} description="Adjust text size for better readability" >
) }