/* ============================================================ DSP & DAC PAGE Design: iOS Settings style Sections: DSP引擎 / DAC配置 / 模拟级 / 音频格式 All selectable options → navigate to /select page ============================================================ */ import { useDevice } from "@/contexts/DeviceContext"; import { ChevronLeft, ChevronRight } from "lucide-react"; import { useLocation } from "wouter"; import BottomNav from "@/components/BottomNav"; import { navigateToSelect } from "./SelectPage"; function IOSToggle({ checked, onChange }: { checked: boolean; onChange: (v: boolean) => void }) { return ( ); } function SectionHeader({ title }: { title: string }) { return (