28 lines
679 B
TypeScript
28 lines
679 B
TypeScript
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 (
|
|
<html lang="en" className={cn("font-sans", inter.variable)}>
|
|
<body>
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|