mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-08-26 06:11:15 +00:00
update
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
import "./globals.css"
|
||||
import { Inter } from "next/font/google"
|
||||
import type React from "react"
|
||||
import type { Metadata } from "next"
|
||||
import ClientLayout from "@/components/ClientLayout"
|
||||
import Navbar from "@/components/navbar"
|
||||
import MouseMoveEffect from "@/components/mouse-move-effect"
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] })
|
||||
|
||||
@@ -9,15 +11,25 @@ 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",
|
||||
generator: 'v0.dev'
|
||||
}
|
||||
|
||||
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||
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>
|
||||
<Navbar />
|
||||
<MouseMoveEffect />
|
||||
<div className="pt-16 md:pt-16">{children}</div>
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
|
||||
import './globals.css'
|
Reference in New Issue
Block a user