added dark mode and jacket art

This commit is contained in:
polaris
2024-07-01 14:19:20 -04:00
parent 076be97aab
commit fce22cda7c
9 changed files with 88 additions and 8 deletions

9
app/theme-provider.tsx Normal file
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>;
}