import type { Metadata } from "next"; import "@xyflow/react/dist/style.css"; import "./globals.css"; export const metadata: Metadata = { title: "Forge - AI Agent Platform", description: "Self-hosted platform for building, testing, and shipping LangChain/LangGraph agents.", }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }