| import type { Metadata } from "next"; | |
| import { GeistMono } from "geist/font/mono"; | |
| import { GeistSans } from "geist/font/sans"; | |
| import { Providers } from "@/components/Providers"; | |
| import "./globals.css"; | |
| export const metadata: Metadata = { | |
| title: "TeichAI - Community Requests", | |
| description: "Submit and vote on model distillation and dataset requests for TeichAI", | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="en" className="dark" suppressHydrationWarning> | |
| <body className={`${GeistSans.variable} ${GeistMono.variable} antialiased`}> | |
| <Providers> | |
| {children} | |
| </Providers> | |
| </body> | |
| </html> | |
| ); | |
| } | |