import { ThemeControlPanel } from "@/components/ThemeControlPanel"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { useTranslation } from "react-i18next"; import { Palette, Sparkles, Clock, Brain } from "lucide-react"; export default function ThemePage() { const { t } = useTranslation(); return (

{t('theme.title', 'Adaptive Theme System')}

{t('theme.description', 'Experience a dynamic interface that adapts to your mood, activity patterns, and time of day for optimal productivity and comfort.')}

{t('theme.features.moodDetection', 'Mood Detection')} {t('theme.features.moodDetectionDesc', 'Analyzes your activity patterns to determine energy, focus, stress, and creativity levels')} {t('theme.features.timeAdaptation', 'Time Adaptation')} {t('theme.features.timeAdaptationDesc', 'Automatically adjusts colors based on time of day for optimal visual comfort')} {t('theme.features.smartColors', 'Smart Colors')} {t('theme.features.smartColorsDesc', 'Dynamic color palettes that enhance productivity and reduce eye strain')}
); }