import type { Metadata } from "next"; import { Manrope } from "next/font/google"; import { GeistMono } from "geist/font/mono"; import { CopilotKit } from "@copilotkit/react-core"; import "./globals.css"; import "@copilotkit/react-ui/styles.css"; const manrope = Manrope({ subsets: ["latin"], display: "swap", variable: "--font-manrope", }); export const metadata: Metadata = { title: "AG-UI Canvas | CopilotKit with LangGraph Python", description: "Generated by CopilotKit with LangGraph Python", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (