2025-02-14 11:29:22 +01:00
|
|
|
"use client"
|
|
|
|
|
2025-02-14 10:55:39 +01:00
|
|
|
import CopyableCode from "@/components/CopyableCode"
|
|
|
|
|
2025-02-13 17:28:49 +01:00
|
|
|
export default function InstallationPage() {
|
2025-02-14 10:55:39 +01:00
|
|
|
const installationCode = `bash -c "$(wget -qLO - https://raw.githubusercontent.com/MacRimi/ProxMenux/main/install_proxmenux.sh)"`
|
|
|
|
|
2025-02-13 17:28:49 +01:00
|
|
|
return (
|
2025-02-17 23:30:03 +01:00
|
|
|
<div className="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-8 text-gray-900">
|
2025-02-13 17:28:49 +01:00
|
|
|
<h1 className="text-3xl sm:text-4xl font-bold mb-6">Installing ProxMenux</h1>
|
|
|
|
|
|
|
|
<h2 className="text-2xl font-semibold mt-8 mb-4">Installation</h2>
|
|
|
|
<p className="mb-4">To install ProxMenux, simply run the following command in your Proxmox server terminal:</p>
|
2025-02-17 23:30:03 +01:00
|
|
|
<CopyableCode code={installationCode} className="w-full overflow-x-auto" />
|
2025-02-13 17:28:49 +01:00
|
|
|
|
|
|
|
<h2 className="text-2xl font-semibold mt-8 mb-4">How to Use</h2>
|
|
|
|
<p className="mb-4">
|
|
|
|
Once installed, launch <strong>ProxMenux</strong> by running:
|
|
|
|
</p>
|
2025-02-17 23:30:03 +01:00
|
|
|
<CopyableCode code="menu" className="w-full overflow-x-auto" />
|
2025-02-17 22:25:11 +01:00
|
|
|
|
2025-02-13 17:28:49 +01:00
|
|
|
<h2 className="text-2xl font-semibold mt-8 mb-4">Troubleshooting</h2>
|
|
|
|
<p className="mb-4">
|
|
|
|
If you encounter any issues during installation or usage, please check the{" "}
|
|
|
|
<a href="https://github.com/MacRimi/ProxMenux/issues" className="text-blue-600 hover:underline">
|
|
|
|
GitHub Issues
|
|
|
|
</a>{" "}
|
|
|
|
page or open a new issue if your problem isn't already addressed.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
2025-02-17 23:36:23 +01:00
|
|
|
|