Spaces:
Sleeping
Sleeping
| import type { Metadata } from "next"; | |
| import "@crayonai/react-ui/styles/index.css"; | |
| import "./globals.css"; | |
| export const metadata: Metadata = { | |
| title: "GenUI Recruitment Agent", | |
| description: "ADK + FastMCP powered recruitment copilot with streaming GenUI" | |
| }; | |
| export default function RootLayout({ children }: { children: React.ReactNode }) { | |
| return ( | |
| <html lang="en"> | |
| <body>{children}</body> | |
| </html> | |
| ); | |
| } | |