This commit is contained in:
MacRimi 2025-03-05 21:37:32 +01:00
commit bec2ed6284
3 changed files with 15 additions and 16 deletions

View File

@ -1,30 +1,30 @@
<div align="center"> <div align="center">
<img src="https://github.com/MacRimi/ProxMenux/blob/main/images/main.png" <img src="https://github.com/MacRimi/ProxMenux/blob/main/images/main.png"
alt="ProxMenu Logo" alt="ProxMenu Logo"
style="max-width: 100%; height: auto;" style="max-width: 100%; height: auto;" >
width="600" >
</div> </div>
<br /> <br />
<div align="center" style="margin-top: 20px;"> <div align="center" style="margin-top: 20px;">
<a href="https://macrimi.github.io/ProxMenux/" target="_blank"> <a href="https://macrimi.github.io/ProxMenux/" target="_blank">
<img src="https://img.shields.io/badge/Website-proxmenux-blue?style=for-the-badge&logo=internet-explorer" alt="Website" /> <img src="https://img.shields.io/badge/Website-%23E64804?style=for-the-badge&logo=World-Wide-Web&logoColor=white" alt="Website" />
</a> </a>
<a href="https://macrimi.github.io/ProxMenux/docs/introduction" target="_blank"> <a href="https://macrimi.github.io/ProxMenux/docs/introduction" target="_blank">
<img src="https://img.shields.io/badge/Docs-Documentation-blue?style=for-the-badge&logo=read-the-docs" alt="Documentation" /> <img src="https://img.shields.io/badge/Docs-%232A3A5D?style=for-the-badge&logo=read-the-docs&logoColor=white" alt="Docs" />
</a> </a>
<a href="https://macrimi.github.io/ProxMenux/changelog" target="_blank"> <a href="https://macrimi.github.io/ProxMenux/changelog" target="_blank">
<img src="https://img.shields.io/badge/Changelog-View%20Changes-blue?style=for-the-badge&logo=clockify" alt="Changelog" /> <img src="https://img.shields.io/badge/Changelog-%232A3A5D?style=for-the-badge&logo=git&logoColor=white" alt="Changelog" />
</a> </a>
<a href="https://macrimi.github.io/ProxMenux/guides" target="_blank"> <a href="https://macrimi.github.io/ProxMenux/guides" target="_blank">
<img src="https://img.shields.io/badge/Guides-Guides-blue?style=for-the-badge&logo=bookstack" alt="Guides" /> <img src="https://img.shields.io/badge/Guides-%232A3A5D?style=for-the-badge&logo=bookstack&logoColor=white" alt="Guides" />
</a> </a>
</div> </div>
<br /> <br />
# ProxMenux An Interactive Menu for Proxmox VE Management
**ProxMenux** is a management tool for **Proxmox VE** that simplifies system administration through an interactive menu, allowing you to execute commands and scripts with ease. **ProxMenux** is a management tool for **Proxmox VE** that simplifies system administration through an interactive menu, allowing you to execute commands and scripts with ease.

View File

@ -240,7 +240,7 @@ export default function BasicSettingsPage() {
</li> </li>
</ul> </ul>
<p className="text-lg mt-12 mb-2">All these utilities are installed automatically when you run this command:</p> <p className="text-lg mt-12 mb-2">This option automatically installs these utilities by running this command:</p>
<CopyableCode <CopyableCode
code={` code={`
# Update package lists # Update package lists

View File

@ -7,25 +7,25 @@ const resources = [
{ {
icon: <Book className="h-6 w-6" />, icon: <Book className="h-6 w-6" />,
title: "Documentation", title: "Documentation",
description: "Comprehensive guides to get you started", description: "System description and user guides",
link: "/docs/introduction", link: "/docs/introduction",
}, },
{ {
icon: <FileText className="h-6 w-6" />, icon: <FileText className="h-6 w-6" />,
title: "Changelog", title: "Changelog",
description: "Stay up to date with the latest changes", description: "Information on the latest updates",
link: "/changelog", link: "/changelog",
}, },
{ {
icon: <GitBranch className="h-6 w-6" />, icon: <GitBranch className="h-6 w-6" />,
title: "Guides", title: "Guides",
description: "Step-by-step tutorials for common tasks", description: "Step-by-step tutorials and guides for common tasks",
link: "/guides", link: "/guides",
}, },
{ {
icon: <Github className="h-6 w-6" />, icon: <Github className="h-6 w-6" />,
title: "GitHub Repository", title: "GitHub Repository",
description: "Explore the source code and contribute", description: "Explore the source code.",
link: "https://github.com/MacRimi/ProxMenux", link: "https://github.com/MacRimi/ProxMenux",
}, },
] ]
@ -36,13 +36,13 @@ export default function Resources() {
<div className="container mx-auto px-4"> <div className="container mx-auto px-4">
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"> <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
{resources.map((resource, index) => ( {resources.map((resource, index) => (
<Link key={index} href={resource.link} className="block"> <Link key={index} href={resource.link} className="block h-full">
<div className="bg-gray-800 p-6 rounded-lg shadow-lg hover:bg-gray-700 transition-colors duration-200"> <div className="bg-gray-800 p-6 rounded-lg shadow-lg hover:bg-gray-700 transition-colors duration-200 h-full flex flex-col justify-between">
<div className="flex items-center mb-4"> <div className="flex items-center mb-4">
{resource.icon} {resource.icon}
<h3 className="text-xl font-semibold ml-2">{resource.title}</h3> <h3 className="text-xl font-semibold ml-2">{resource.title}</h3>
</div> </div>
<p className="text-gray-400">{resource.description}</p> <p className="text-gray-400 min-h-[48px]">{resource.description}</p>
</div> </div>
</Link> </Link>
))} ))}
@ -51,4 +51,3 @@ export default function Resources() {
</section> </section>
) )
} }