mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
69 lines
1.6 KiB
TypeScript
69 lines
1.6 KiB
TypeScript
import "./globals.css"
|
|
import { Inter } from "next/font/google"
|
|
import Navbar from "@/components/navbar"
|
|
import MouseMoveEffect from "@/components/mouse-move-effect"
|
|
import type React from "react"
|
|
import type { Metadata } from "next"
|
|
|
|
const inter = Inter({ subsets: ["latin"] })
|
|
|
|
const basePath = "/ProxMenux"
|
|
|
|
const description =
|
|
"A menu-driven script for Proxmox VE management, designed to facilitate productivity, it simplifies automation and streamlines task execution."
|
|
|
|
export const metadata = {
|
|
title: "ProxMenux",
|
|
generator: "Next.js",
|
|
applicationName: "ProxMenux",
|
|
referrer: "origin-when-cross-origin",
|
|
keywords: ["Proxmox VE", "VE", "ProxMenux", "MacRimi", "menu-driven", "menu", "scripts", "virtualization"],
|
|
authors: { name: "MacRimi" },
|
|
creator: "MacRimi",
|
|
publisher: "MacRimi",
|
|
description,
|
|
favicon: "/app/favicon.ico",
|
|
formatDetection: {
|
|
email: false,
|
|
address: false,
|
|
telephone: false,
|
|
},
|
|
metadataBase: new URL(`https://macrimi.github.io${basePath}/`),
|
|
openGraph: {
|
|
title: "ProxMenux",
|
|
description,
|
|
url: "/main.png",
|
|
images: [
|
|
{
|
|
url: `https://macrimi.github.io${basePath}/main.png`,
|
|
},
|
|
],
|
|
locale: "en_US",
|
|
type: "website",
|
|
},
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<body className={`${inter.className} bg-background text-foreground antialiased`}>
|
|
<Navbar />
|
|
<MouseMoveEffect />
|
|
<div className="pt-16 md:pt-16">{children}</div>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|