From 6e9ebf4eeed2972a4bbcc13164947d187b5c24aa Mon Sep 17 00:00:00 2001 From: mrpiglr Date: Sat, 21 Mar 2026 20:42:20 +0000 Subject: [PATCH] add app/layout.tsx --- app/layout.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app/layout.tsx 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