hy2-panel/app/layout.tsx
2026-04-14 18:05:32 +08:00

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