import type { Metadata } from "next"; import "./globals.css"; import { SessionProvider } from "next-auth/react"; export const metadata: Metadata = { title: "WYVIEW", description: "Dashboard analytics", }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }