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