47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Plus_Jakarta_Sans, Spline_Sans_Mono } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@copilotkit/react-ui/styles.css";
|
|
import { ThemeProvider } from "@/components/theme-provider";
|
|
|
|
const plusJakartaSans = Plus_Jakarta_Sans({
|
|
variable: "--font-plus-jakarta-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const splineSansMono = Spline_Sans_Mono({
|
|
variable: "--font-spline-sans-mono",
|
|
subsets: ["latin"],
|
|
weight: ["400", "500", "600", "700"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "AG-UI + A2A Multi-Agent Demo",
|
|
description:
|
|
"Agent-to-Agent communication demo with ADK and LangGraph using A2A Protocol",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<body
|
|
className={`${plusJakartaSans.variable} ${splineSansMono.variable} antialiased`}
|
|
>
|
|
<ThemeProvider
|
|
attribute="class"
|
|
defaultTheme="light"
|
|
enableSystem={false}
|
|
themes={["light"]}
|
|
disableTransitionOnChange
|
|
>
|
|
{children}
|
|
</ThemeProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|