wip: in-progress mars theme work (saved before auth refactor)

This commit is contained in:
belisards
2026-05-03 16:11:12 -03:00
parent 282e475562
commit 4d4cdee9eb
8 changed files with 1 additions and 191 deletions

View File

@@ -1,7 +1,6 @@
import type { Metadata } from "next";
import "./globals.css";
import { AuthProvider } from "@/lib/auth-context";
import { ThemeProvider } from "@/components/theme-provider";
import { db, settings } from "@/lib/db";
import { eq } from "drizzle-orm";
@@ -53,7 +52,7 @@ export default function RootLayout({
</head>
<body className="font-sans antialiased bg-cosmic">
<AuthProvider>
<ThemeProvider>{children}</ThemeProvider>
{children}
</AuthProvider>
</body>
</html>