import type { Metadata } from "next"; import "./globals.css"; import { Inter } from "next/font/google"; import React from "react"; import { NuqsAdapter } from "nuqs/adapters/next/app"; const inter = Inter({ subsets: ["latin"], preload: true, display: "swap", }); export const metadata: Metadata = { title: "Agent Chat", description: "Agent Chat UX by LangChain", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (