import type { Metadata } from "next"; import type { ReactNode } from "react"; import "./globals.css"; export const metadata: Metadata = { title: "assistant-ui ink demo", description: "The with-react-ink example running in the browser via ink-web.", }; export default function RootLayout({ children }: { children: ReactNode }) { return ( {children} ); }