import './globals.css'; import type { ReactNode } from 'react'; export const metadata = { title: 'YTChatHub', description: 'YouTube Live chat dashboard with an OBS overlay' }; export default function RootLayout({ children }: { children: ReactNode }) { return ( {children} ); }