import type { Metadata } from "next"; import "./globals.css"; import { Inter } from "next/font/google"; import { Providers } from "./providers"; import { cn } from "@/lib/utils"; const inter = Inter({ subsets: ["latin"], variable: "--font-sans" }); export const metadata: Metadata = { title: "CopilotKit ShadCN Chat", description: "A minimal useAgent demo with chat, charts, and human-in-the-loop UI.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }