Spaces:
Sleeping
Sleeping
| import type { Metadata } from "next"; | |
| import { Inter } from "next/font/google"; | |
| import "./globals.css"; | |
| import "katex/dist/katex.min.css"; | |
| import "prismjs/themes/prism-tomorrow.css"; | |
| const inter = Inter({ subsets: ["latin"] }); | |
| export const metadata: Metadata = { | |
| title: "Qwen3 Claude Opus Chat", | |
| description: "Chat with Qwen3-4B-Thinking-2507-Claude-4.5-Opus", | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode; | |
| }) { | |
| return ( | |
| <html lang="en" className="dark"> | |
| <body className={inter.className}>{children}</body> | |
| </html> | |
| ); | |
| } | |