Update page.tsx

This commit is contained in:
MacRimi 2025-03-03 11:42:40 +01:00 committed by GitHub
parent f850c1f357
commit 55c6403036
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,11 +47,12 @@ export default function PostInstallPage() {
<div className="container mx-auto px-4 py-8"> <div className="container mx-auto px-4 py-8">
<h1 className="text-3xl font-bold mb-6">ProxMenux Post-Install Script Documentation</h1> <h1 className="text-3xl font-bold mb-6">ProxMenux Post-Install Script Documentation</h1>
<p className="mb-4"> <p className="mb-4">
The customizable_post_install.sh script is a comprehensive tool for optimizing and customizing your Proxmox VE The <code>Customizable Post Install</code> script is designed to streamline the post-installation process of
installation. It covers a wide range of settings across various categories, allowing you to fine-tune your Proxmox VE by automating system optimizations and configurations. One advantage of the modular structure is that it allows users to, it provides a
system according to your specific needs. modular structure, allowing users to <strong>select specific configurations</strong> based on their requirements.
</p> </p>
<p className="mb-6">This script includes {categories.length} main categories of optimizations and settings:</p> <p className="mb-6">This script includes {categories.length} main categories, each targeting a key aspect of Proxmox VEs
performance, security, and usability:</p>
<ul className="list-disc pl-5 mb-6"> <ul className="list-disc pl-5 mb-6">
{categories.map((category) => ( {categories.map((category) => (
<li key={category.order} className="mb-2"> <li key={category.order} className="mb-2">
@ -64,7 +65,10 @@ export default function PostInstallPage() {
</li> </li>
))} ))}
</ul> </ul>
<p>Click on each category to learn more about the specific optimizations and settings available.</p> <p>
Each category includes configurable options, ensuring that users can tailor the system adjustments to their
specific needs without applying unnecessary modifications. Click on a category to explore available settings.
</p>
</div> </div>
) )
} }