import type { Metadata } from "next"; export const metadata: Metadata = { title: "PlayGo AI Chat", description: "Embedded AI Chat Interface", }; export default function EmbedLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }