Create AppImage

This commit is contained in:
MacRimi
2025-09-28 19:40:23 +02:00
parent 66060f345c
commit 6ae97266e4
17 changed files with 3016 additions and 0 deletions

View File

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