diff --git a/web/app/metadata.ts b/web/app/metadata.ts index b911c8f..a934d3a 100644 --- a/web/app/metadata.ts +++ b/web/app/metadata.ts @@ -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: { diff --git a/web/app/page.tsx b/web/app/page.tsx index 5d4251e..9d99770 100644 --- a/web/app/page.tsx +++ b/web/app/page.tsx @@ -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 (