2025-02-14 11:44:06 +01:00
|
|
|
import dynamic from "next/dynamic"
|
2025-02-18 20:00:51 +01:00
|
|
|
import type { Metadata } from "next"
|
2025-02-18 22:03:33 +01:00
|
|
|
import { metadata as siteMetadata } from "./metadata"
|
2025-02-14 11:44:06 +01:00
|
|
|
|
|
|
|
const Hero = dynamic(() => import("@/components/hero"), { ssr: false })
|
|
|
|
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 })
|
2025-02-13 17:28:49 +01:00
|
|
|
|
2025-02-18 21:22:26 +01:00
|
|
|
export const metadata: Metadata = {
|
|
|
|
...siteMetadata,
|
2025-02-18 21:27:53 +01:00
|
|
|
title: "ProxMenux ",
|
2025-02-18 22:03:33 +01:00
|
|
|
description:
|
|
|
|
"A menu-driven script for Proxmox VE management, designed to simplify and streamline the execution of commands and tasks.",
|
2025-02-18 21:22:26 +01:00
|
|
|
openGraph: {
|
|
|
|
...siteMetadata.openGraph,
|
2025-02-18 21:27:53 +01:00
|
|
|
title: "ProxMenux ",
|
2025-02-18 22:03:33 +01:00
|
|
|
description:
|
|
|
|
"A menu-driven script for Proxmox VE management, designed to simplify and streamline the execution of commands and tasks.",
|
|
|
|
images: [
|
|
|
|
{
|
|
|
|
url: "https://macrimi.github.io/ProxMenux/main.png",
|
|
|
|
width: 1363,
|
|
|
|
height: 735,
|
|
|
|
alt: "ProxMenux ",
|
|
|
|
},
|
|
|
|
],
|
2025-02-18 21:22:26 +01:00
|
|
|
},
|
|
|
|
twitter: {
|
|
|
|
...siteMetadata.twitter,
|
|
|
|
title: "ProxMenux",
|
2025-02-18 22:03:33 +01:00
|
|
|
description:
|
|
|
|
"A menu-driven script for Proxmox VE management, designed to simplify and streamline the execution of commands and tasks.",
|
|
|
|
images: [`https://macrimi.github.io/ProxMenux/main.png`],
|
|
|
|
},
|
2025-02-18 21:22:26 +01:00
|
|
|
}
|
2025-02-18 19:09:28 +01:00
|
|
|
|
2025-02-13 17:28:49 +01:00
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
|
|
<div className="min-h-screen bg-gradient-to-b from-gray-900 to-gray-800 text-white pt-16">
|
|
|
|
<Hero />
|
|
|
|
<Resources />
|
|
|
|
<SupportProject />
|
|
|
|
<Footer />
|
|
|
|
</div>
|
|
|
|
)
|
2025-02-18 22:03:33 +01:00
|
|
|
}
|
|
|
|
|