import type { Metadata } from 'next'; import './globals.css'; export const metadata: Metadata = { title: 'AeThex LIVE', description: 'AeThex Broadcast Network — The Infrastructure Layer Beneath the Game', }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }