mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 04:06:54 +00:00
24 lines
758 B
TypeScript
24 lines
758 B
TypeScript
import "./globals.css"
|
|
import { Inter } from "next/font/google"
|
|
import type { Metadata } from "next"
|
|
import ClientLayout from "@/components/ClientLayout"
|
|
|
|
const inter = Inter({ subsets: ["latin"] })
|
|
|
|
export const metadata: Metadata = {
|
|
title: "ProxMenux - A menu-driven script for Proxmox VE management",
|
|
description:
|
|
"ProxMenux is a tool designed to execute shell scripts in an organized manner for Proxmox VE management.",
|
|
generator: "v0.dev",
|
|
}
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<body className={`${inter.className} bg-background text-foreground antialiased`}>
|
|
<ClientLayout>{children}</ClientLayout>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|