Spaces:
Running
Running
| import type React from "react" | |
| import type { Metadata } from "next" | |
| import { Space_Grotesk, DM_Sans } from "next/font/google" | |
| import "./globals.css" | |
| import { ThemeProvider } from "@/components/theme-provider" | |
| const spaceGrotesk = Space_Grotesk({ | |
| subsets: ["latin"], | |
| display: "swap", | |
| variable: "--font-space-grotesk", | |
| }) | |
| const dmSans = DM_Sans({ | |
| subsets: ["latin"], | |
| display: "swap", | |
| variable: "--font-dm-sans", | |
| }) | |
| export const metadata: Metadata = { | |
| title: "AI Evaluation Dashboard", | |
| description: "Professional AI system evaluation and assessment tool", | |
| generator: "v0.app", | |
| } | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode | |
| }>) { | |
| return ( | |
| <html lang="en" className={`${spaceGrotesk.variable} ${dmSans.variable} antialiased`}> | |
| <body className="font-sans"> | |
| <ThemeProvider attribute="class" defaultTheme="system" enableSystem disableTransitionOnChange> | |
| {children} | |
| </ThemeProvider> | |
| </body> | |
| </html> | |
| ) | |
| } | |