import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "LiveKit Voice Example", description: "Example using @assistant-ui/react with LiveKit for realtime voice", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }