"use client"; import { Button } from "@/components/ui/button"; import { Moon, Sun } from "lucide-react"; import { useTheme } from "next-themes"; export function ModeToggle() { const { theme, setTheme } = useTheme(); const toggleTheme = () => { if (theme === "dark") { setTheme("light"); } else { setTheme("dark"); } }; return ( ); }