mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-12-29 16:16:05 +00:00
update
This commit is contained in:
23
web2/app/layout.tsx
Normal file
23
web2/app/layout.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user