"use client" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" import { Label } from "@/components/ui/label" import { Switch } from "@/components/ui/switch" import { usePreferences } from "@/contexts/preferences-context" export default function SettingsPage() { const { preferences, updatePreferences, loading } = usePreferences() if (loading) { return
Loading settings...
} return (

Settings

Preferences Customize your browsing experience.

Hide all social features (comments, ratings, reviews) for a pure archive experience.

updatePreferences({ wiki_mode: checked })} />

Display 1-10 ratings on shows and songs.

updatePreferences({ show_ratings: checked })} />

Display comment sections on pages.

updatePreferences({ show_comments: checked })} />
) }