docs: last changes

This commit is contained in:
Bereket Engida
2024-09-27 23:54:52 +03:00
parent bfa1337767
commit adc1b8ebe4
126 changed files with 18697 additions and 101 deletions

View File

@@ -0,0 +1,9 @@
"use client";
import * as React from "react";
import { ThemeProvider as NextThemesProvider } from "next-themes";
import { type ThemeProviderProps } from "next-themes/dist/types";
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
}