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