diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 0000000..ec4bdbd --- /dev/null +++ b/app/layout.tsx @@ -0,0 +1,15 @@ +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} + + ); +} \ No newline at end of file