feat: first draft

This commit is contained in:
2025-01-25 20:39:55 +01:00
parent 78c69dbc1a
commit 06fbbab24d
53 changed files with 13416 additions and 123 deletions

View File

@@ -0,0 +1,12 @@
import React from 'react';
import { ThemeProvider as NextThemesProvider } from 'next-themes';
export function ThemeProvider({
children,
...props
}: {
children: React.ReactNode;
[key: string]: unknown;
}) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
}