Spaces:
Runtime error
Runtime error
| import type { Metadata } from "next" | |
| import { Geist, Geist_Mono } from "next/font/google" | |
| import "./globals.css" | |
| import { Toaster } from "@/components/ui/sonner" | |
| const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"] }) | |
| const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"] }) | |
| export const metadata: Metadata = { | |
| title: "ModelForge — Train AI Models Without Code", | |
| description: "Describe your problem in plain English. ModelForge's AI agents handle dataset analysis, model selection, training, evaluation, and deployment.", | |
| } | |
| export default function RootLayout({ children }: { children: React.ReactNode }) { | |
| return ( | |
| <html lang="en" className={`${geistSans.variable} ${geistMono.variable}`}> | |
| <body className="antialiased bg-background text-foreground min-h-screen" style={{ letterSpacing: '-0.006em' }}> | |
| {children} | |
| <Toaster /> | |
| </body> | |
| </html> | |
| ) | |
| } | |