diff --git a/web/app/docs/layout.tsx b/web/app/docs/layout.tsx index e7b064a..5b67b6f 100644 --- a/web/app/docs/layout.tsx +++ b/web/app/docs/layout.tsx @@ -7,7 +7,7 @@ export default function DocsLayout({ children }: { children: React.ReactNode })
-
+
{children}
diff --git a/web/app/layout.tsx b/web/app/layout.tsx index d3f878f..98ae45a 100644 --- a/web/app/layout.tsx +++ b/web/app/layout.tsx @@ -12,49 +12,36 @@ 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: Metadata = { - title: "ProxMenux", - description, - generator: "Next.js", - applicationName: "ProxMenux", - referrer: "origin-when-cross-origin", - keywords: ["Proxmox VE", "ProxMenux", "menu-driven", "script", "management", "virtualization"], - authors: { name: "MacRimi" }, - creator: "MacRimi", - publisher: "MacRimi", - formatDetection: { - email: false, - address: false, - telephone: false, - }, - metadataBase: new URL(`https://macrimi.github.io${basePath}/`), - openGraph: { + 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, - url: `https://macrimi.github.io${basePath}/`, - images: [ - { - url: `https://macrimi.github.io${basePath}/main.png`, - }, - ], - locale: "en_US", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "ProxMenux", - description, - images: [`https://macrimi.github.io${basePath}/main.png`], - }, - icons: { - icon: [ - { url: "/favicon.ico", sizes: "any" }, - { url: "/icon.svg", type: "image/svg+xml" }, - { url: "/icon.png", type: "image/png" }, - ], - apple: [{ url: "/apple-touch-icon.png" }], - }, -} + 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, @@ -72,3 +59,10 @@ export default function RootLayout({ ) } + + + + + + +