Metker

Results 1 comments of Metker

try to use dynamic import for the NextThemesProvider ```tsx "use client"; import dynamic from "next/dynamic"; import * as React from "react"; const NextThemesProvider = dynamic( () => import("next-themes").then((e) => e.ThemeProvider),...