feat: set dark mode as default, disable OS-based system theme

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
MBO-Tech-IT 2026-04-26 21:27:29 +02:00
parent ad02d3e781
commit 08377f3a8a
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import { ThemeProvider } from "next-themes";
export default function Providers({ children }: { children: React.ReactNode }) {
return (
<ThemeProvider attribute="class" defaultTheme="system" enableSystem disableTransitionOnChange>
<ThemeProvider attribute="class" defaultTheme="dark" disableTransitionOnChange>
{children}
</ThemeProvider>
);