Ashgen12's picture
Recruitment Copilot
14fdc5e verified
Raw
History Blame Contribute Delete
444 Bytes
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>
);
}