Spaces:
Paused
Paused
| import type { Metadata } from "next"; | |
| import "./globals.css"; | |
| export const metadata: Metadata = { | |
| title: "CGAE · Agent Economy", | |
| description: "Comprehension-Gated Agent Economy — 0G Chain", | |
| }; | |
| export default function RootLayout({ children }: { children: React.ReactNode }) { | |
| return ( | |
| <html lang="en"> | |
| <head> | |
| <link rel="preconnect" href="https://fonts.googleapis.com" /> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="" /> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" /> | |
| </head> | |
| <body className="antialiased min-h-screen" style={{ fontFamily: "'Inter', system-ui, sans-serif" }}>{children}</body> | |
| </html> | |
| ); | |
| } | |