add app/layout.tsx

This commit is contained in:
Anderson 2026-03-21 20:42:20 +00:00
parent 1ab4162751
commit 6e9ebf4eee

15
app/layout.tsx Normal file
View file

@ -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 (
<html lang="en">
<body>{children}</body>
</html>
);
}