aethex-live-v2/app/layout.tsx
2026-03-21 20:42:20 +00:00

15 lines
No EOL
378 B
TypeScript

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>
);
}