feat: add a white theme
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user