2025-03-04 21:57:41 +01:00
|
|
|
import Image from "next/image"
|
2025-02-16 16:21:31 +01:00
|
|
|
import Link from "next/link"
|
|
|
|
|
2025-02-13 17:28:49 +01:00
|
|
|
export default function IntroductionPage() {
|
|
|
|
return (
|
2025-03-04 21:57:41 +01:00
|
|
|
<div className="w-full max-w-4xl mx-auto px-4 py-8 text-gray-900">
|
|
|
|
{/* Logo + Title Section */}
|
|
|
|
<div className="flex flex-col sm:flex-row items-center mb-6">
|
|
|
|
<Image
|
|
|
|
src="https://macrimi.github.io/ProxMenux/logo.png"
|
|
|
|
alt="ProxMenux Logo"
|
|
|
|
width={100}
|
|
|
|
height={100}
|
|
|
|
className="mb-4 sm:mb-0 sm:mr-4"
|
|
|
|
/>
|
|
|
|
<h1 className="text-3xl font-bold text-center sm:text-left">
|
|
|
|
ProxMenux is a management tool for Proxmox VE, designed to be accessible to all users,
|
|
|
|
regardless of their experience or technical knowledge.
|
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p className="mb-4">
|
|
|
|
With an interactive menu-driven interface, ProxMenux simplifies command execution for managing:
|
|
|
|
</p>
|
|
|
|
<ul className="list-disc list-inside mb-4 ml-4">
|
|
|
|
<li>The Proxmox server</li>
|
|
|
|
<li>Virtual machines (VMs)</li>
|
|
|
|
<li>Containers (LXC)</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<h2 className="text-2xl font-semibold mt-8 mb-4">Core Features</h2>
|
2025-02-13 17:28:49 +01:00
|
|
|
<p className="mb-4">
|
2025-03-04 21:57:41 +01:00
|
|
|
ProxMenux enables streamlined management of:
|
2025-02-13 17:28:49 +01:00
|
|
|
</p>
|
2025-03-04 21:57:41 +01:00
|
|
|
<ul className="list-disc list-inside mb-6 ml-4">
|
|
|
|
<li>System resources</li>
|
|
|
|
<li>Network and storage configurations</li>
|
|
|
|
<li>VM and LXC container administration</li>
|
|
|
|
<li>Hardware integration and optimizations</li>
|
|
|
|
<li>Automated server maintenance</li>
|
2025-02-13 17:28:49 +01:00
|
|
|
</ul>
|
2025-03-04 21:57:41 +01:00
|
|
|
|
|
|
|
<h2 className="text-2xl font-semibold mt-8 mb-4">Key Advantages</h2>
|
|
|
|
<ul className="list-disc list-inside mb-6 ml-4">
|
|
|
|
<li>Intuitive menu-driven interface</li>
|
|
|
|
<li>Efficient system and resource management</li>
|
|
|
|
<li>Reduced complexity for common tasks</li>
|
|
|
|
<li>Regular updates with expanding features</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<p className="mt-6">
|
|
|
|
The following sections provide detailed instructions on installing and using ProxMenux, along with comprehensive documentation on its available functionalities.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
{/* Guides Link */}
|
2025-02-13 17:28:49 +01:00
|
|
|
<p className="mt-6">
|
2025-03-04 21:57:41 +01:00
|
|
|
For additional Proxmox-related information, including official documentation, forums, and discussions, visit the{" "}
|
2025-02-16 16:21:31 +01:00
|
|
|
<Link href="/guides" className="text-blue-500 hover:underline">
|
|
|
|
Guides
|
2025-03-04 21:57:41 +01:00
|
|
|
</Link>{" "}
|
2025-02-16 16:21:31 +01:00
|
|
|
section.
|
2025-02-13 17:28:49 +01:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|