add app/layout.tsx
This commit is contained in:
parent
1ab4162751
commit
6e9ebf4eee
1 changed files with 15 additions and 0 deletions
15
app/layout.tsx
Normal file
15
app/layout.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in a new issue