94 lines
3.5 KiB
TypeScript
Raw Normal View History

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-03-09 11:48:23 +01:00
import { AlertTriangle, FileCode, Shield } from "lucide-react"
2025-02-16 16:21:31 +01:00
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 */}
2025-03-04 22:23:35 +01:00
<div className="flex items-start mb-6">
2025-03-04 21:57:41 +01:00
<Image
src="https://macrimi.github.io/ProxMenux/logo.png"
alt="ProxMenux Logo"
2025-03-04 22:03:29 +01:00
width={80}
height={80}
className="mr-4"
2025-03-04 21:57:41 +01:00
/>
2025-03-04 23:06:23 +01:00
<p className="mb-4">
2025-03-04 22:15:31 +01:00
ProxMenux is a tool designed to make Proxmox VE accessible to all users, regardless of their experience and technical knowledge.
2025-03-04 22:03:29 +01:00
</p>
2025-03-04 21:57:41 +01:00
</div>
<p className="mb-4">
2025-03-04 22:15:31 +01:00
Designed with a menu-based interface, ProxMenux simplifies the execution of commands to perform actions on:
2025-03-04 21:57:41 +01:00
</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>
2025-03-04 22:15:31 +01:00
<li>Simplification of management tasks</li>
2025-03-04 21:57:41 +01:00
</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>
2025-03-09 11:42:42 +01:00
2025-03-09 11:48:23 +01:00
{/* Security Notice */}
<div className="bg-white border rounded-lg shadow-sm p-4 my-4">
<h3 className="text-lg font-medium mb-2 flex items-center">
<AlertTriangle className="h-5 w-5 text-yellow-500 mr-2" />
Security Information
</h3>
<p className="mb-3">Be careful when copying scripts from the internet. Always remember to check the source!</p>
<div className="flex flex-wrap gap-2">
<a
href="https://github.com/MacRimi/ProxMenux/blob/main/install_proxmenux.sh"
className="inline-flex items-center px-3 py-2 text-sm font-medium rounded-md bg-blue-600 hover:bg-blue-700 text-white"
target="_blank"
rel="noopener noreferrer"
>
<FileCode className="h-4 w-4 mr-2" />
View Source Code
</a>
<a
href="https://github.com/MacRimi/ProxMenux?tab=coc-ov-file#-2-security--code-responsibility"
className="inline-flex items-center px-3 py-2 text-sm font-medium rounded-md bg-green-600 hover:bg-green-700 text-white"
target="_blank"
rel="noopener noreferrer"
>
<Shield className="h-4 w-4 mr-2" />
Code of Conduct
</a>
</div>
</div>
2025-03-09 11:42:42 +01:00
2025-03-09 11:48:23 +01:00
</div>
2025-02-13 17:28:49 +01:00
)
}