'use client'; import type { UserPreferences } from './types'; interface DisplaySettingsProps { preferences: UserPreferences; onChange: (updater: (prev: UserPreferences) => UserPreferences) => void; } export default function DisplaySettings({ preferences, onChange }: DisplaySettingsProps) { return (