import type { Metadata } from "next"; import type { ReactNode } from "react"; import "./globals.css"; export const metadata: Metadata = { title: "Vellum Chat", description: "Simple chat interface using Vellum AI", }; interface RootLayoutProps { children: ReactNode; } export default function RootLayout({ children }: RootLayoutProps) { return ( {children} ); }