ProxMenux/web/app/layout.tsx

24 lines
758 B
TypeScript
Raw Normal View History

2025-02-13 17:28:49 +01:00
import "./globals.css"
import { Inter } from "next/font/google"
import type { Metadata } from "next"
2025-02-13 22:13:38 +01:00
import ClientLayout from "@/components/ClientLayout"
2025-02-13 17:28:49 +01:00
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.",
2025-02-13 22:09:08 +01:00
generator: "v0.dev",
2025-02-13 17:28:49 +01:00
}
2025-02-13 22:13:38 +01:00
export default function RootLayout({ children }: { children: React.ReactNode }) {
2025-02-13 17:28:49 +01:00
return (
<html lang="en" className="dark">
<body className={`${inter.className} bg-background text-foreground antialiased`}>
2025-02-13 22:13:38 +01:00
<ClientLayout>{children}</ClientLayout>
2025-02-13 17:28:49 +01:00
</body>
</html>
)
}