import type { Metadata } from "next"; import { ThemeProvider } from "@/components/theme-provider"; import "./globals.css"; export const metadata: Metadata = { title: "Minikura | Infrastructure Console", description: "Minecraft infrastructure control plane", }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }