import { Settings, Palette, Languages } from 'lucide-react'; import { useTranslation } from 'react-i18next'; import type { Theme } from '../../types'; import { Card } from '../ui'; import { ThemeSelector } from './ThemeSelector'; import { LanguageSelector } from './LanguageSelector'; interface SettingsSectionProps { currentTheme: Theme; currentLanguage: string; onThemeChange: (theme: Theme) => void; onLanguageChange: (lang: string) => void; } export function SettingsSection({ currentTheme, currentLanguage, onThemeChange, onLanguageChange, }: SettingsSectionProps) { const { t } = useTranslation(); return (

{t('profile.settings')}

{t('profile.theme')}

{t('profile.language')}

); }