"use client"; import { useApp } from "@/contexts/AppContext"; export default function ThemeSwitch() { const { theme, setTheme } = useApp(); const toggleTheme = () => { setTheme(theme === "light" ? "dark" : "light"); }; return ( ); }