20 lines
418 B
TypeScript
20 lines
418 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "HY2 Panel",
|
|
description: "Self-hosted Hysteria 2 panel with auth, traffic sync, and node management",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="zh-CN" className="h-full">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|