aethex.live/app/layout.tsx
copilot-swe-agent[bot] c0431cd8e7 feat: implement Next.js app with HLS video player and AeThex branding
Co-authored-by: MrPiglr <31398225+MrPiglr@users.noreply.github.com>
2026-02-07 02:28:40 +00:00

21 lines
419 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "AeThex Live - Live Stream",
description: "Watch AeThex live streaming content 24/7",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className="antialiased">
{children}
</body>
</html>
);
}