2025-02-18 23:22:28 +01:00
|
|
|
import type { Metadata } from "next"
|
2025-02-18 22:20:33 +01:00
|
|
|
import Hero from "@/components/hero"
|
|
|
|
import Resources from "@/components/resources"
|
|
|
|
import SupportProject from "@/components/support-project"
|
|
|
|
import Footer from "@/components/footer"
|
2025-02-18 19:09:28 +01:00
|
|
|
|
2025-02-18 23:22:28 +01:00
|
|
|
export const metadata: Metadata = {
|
|
|
|
title: "ProxMenux",
|
|
|
|
description:
|
|
|
|
"A menu-driven script for Proxmox VE management, designed to simplify and streamline the execution of commands and tasks.",
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|