import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import { Suspense } from 'react'; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata = { title: "P2P Media Streaming - WebRTC & Socket.IO", description: "Plataforma de streaming P2P con chat en tiempo real usando WebRTC, Socket.IO y HLS.js", }; export default function RootLayout({ children }) { return (

Cargando...

}> {children}
); }