feat: add a white theme

This commit is contained in:
Pierre Ryssen
2026-03-11 16:02:55 +01:00
parent 9642f2511a
commit d5d7b15f16
22 changed files with 297 additions and 241 deletions

View File

@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import "./globals.css";
import { SessionProvider } from "next-auth/react";
import { ThemeProvider } from "@/lib/theme";
export const metadata: Metadata = {
title: "WYVIEW",
@@ -12,7 +13,9 @@ export default function RootLayout({ children }: { children: React.ReactNode })
<html lang="fr">
<body className="bg-wy-dark text-wy-text-primary antialiased">
<SessionProvider>
{children}
<ThemeProvider>
{children}
</ThemeProvider>
</SessionProvider>
</body>
</html>