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 ( {children} ); }