import { useTheme } from "next-themes"; import { FaMoon, FaSun } from "react-icons/fa"; const Navbar = () => { const { theme, setTheme } = useTheme(); const switchTheme = () => setTheme(theme == "dark" ? "light" : "dark"); return ( ); }; export default Navbar;