'use client'; import React from 'react'; import { Label } from '@/components/ui/label'; import { Select, SelectTrigger, SelectContent, SelectItem, SelectValue } from '@/components/ui/select'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { useTheme } from '@/app/components/ThemeProvider'; const SettingsPage = () => { const { theme, setTheme } = useTheme(); return (

Settings

Customize your music experience

Appearance Customize how the application looks and feels

Theme: Choose between blue and violet color schemes

Dark Mode: Automatically follows your system preferences

{/* Theme Preview */} Preview See how your theme looks

Sample Song Title

Sample Artist

3:42
); }; export default SettingsPage;