This commit is contained in:
MacRimi 2025-02-18 21:22:26 +01:00
parent 86f89b8777
commit eae7dff2a0
2 changed files with 22 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import type { Metadata } from 'next'
const description = "A menu-driven script for Proxmox VE management, designed to facilitate productivity, it simplifies automation and streamlines task execution."
const description = "A menu-driven script for Proxmox VE management, designed to simplify and streamline the execution of commands and tasks."
export const metadata: Metadata = {
title: {

View File

@ -7,6 +7,27 @@ const Resources = dynamic(() => import("@/components/resources"), { ssr: false }
const SupportProject = dynamic(() => import("@/components/support-project"), { ssr: false })
const Footer = dynamic(() => import("@/components/footer"), { ssr: false })
export const metadata: Metadata = {
...siteMetadata,
title: "ProxMenux",
description: "A menu-driven script for Proxmox VE management, designed to simplify and streamline the execution of commands and tasks.",
openGraph: {
...siteMetadata.openGraph,
title: "ProxMenux",
description: "A menu-driven script for Proxmox VE management, designed to simplify and streamline the execution of commands and tasks.",
images: [
{
url: `https://raw.githubusercontent.com/MacRimi/ProxMenux/main/web/public/main.png`,
width: 1363,
height: 735,
},
},
twitter: {
...siteMetadata.twitter,
title: "ProxMenux",
description: "A menu-driven script for Proxmox VE management, designed to simplify and streamline the execution of commands and tasks.",
},
}
export default function Home() {
return (