Update package dependencies, implement theme provider in layout, and refine component styles for improved responsiveness

This commit is contained in:
Mobin 2025-03-18 18:27:35 +03:30
parent 73112f6680
commit ef3b0c9997
13 changed files with 168 additions and 22 deletions

View file

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