Files
Wyview/app/layout.tsx
2026-03-11 16:02:55 +01:00

23 lines
628 B
TypeScript

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",
description: "Dashboard analytics",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="fr">
<body className="bg-wy-dark text-wy-text-primary antialiased">
<SessionProvider>
<ThemeProvider>
{children}
</ThemeProvider>
</SessionProvider>
</body>
</html>
);
}