"use client" import * as React from "react" import { Moon, Sun } from "lucide-react" import { useTheme } from "next-themes" import { Button } from "./button" export function ModeToggle() { const [mounted, setMounted] = React.useState(false) const { theme, setTheme } = useTheme() // useEffect only runs on the client, so now we can safely show the UI React.useEffect(() => { setMounted(true) }, []) if (!mounted) { return null } const toggleTheme = () => { setTheme(theme === "dark" ? "light" : "dark") } return ( ) }