Update page.tsx

This commit is contained in:
MacRimi 2025-05-12 12:17:21 +02:00
parent ef17b99fd1
commit 9eb98bd233

View File

@ -1,6 +1,6 @@
import type { Metadata } from "next"; import type { Metadata } from "next"
import { Link2 } from "lucide-react"; import { Link2 } from "lucide-react"
import Link from "next/link"; import Link from "next/link"
export const metadata: Metadata = { export const metadata: Metadata = {
title: "ProxMenux - External Repositories", title: "ProxMenux - External Repositories",
@ -28,7 +28,7 @@ export const metadata: Metadata = {
"Learn about the external repositories used in ProxMenux, how they are selected, and how to report issues or suggest new integrations.", "Learn about the external repositories used in ProxMenux, how they are selected, and how to report issues or suggest new integrations.",
images: ["https://macrimi.github.io/ProxMenux/external-repos-image.png"], images: ["https://macrimi.github.io/ProxMenux/external-repos-image.png"],
}, },
}; }
function SectionHeader({ number, title }: { number: number; title: string }) { function SectionHeader({ number, title }: { number: number; title: string }) {
return ( return (
@ -38,7 +38,7 @@ function SectionHeader({ number, title }: { number: number; title: string }) {
</div> </div>
{title} {title}
</h3> </h3>
); )
} }
export default function ExternalRepositoriesPage() { export default function ExternalRepositoriesPage() {
@ -51,20 +51,18 @@ export default function ExternalRepositoriesPage() {
{/* Introduction */} {/* Introduction */}
<p className="mb-4"> <p className="mb-4">
ProxMenux integrates with selected external repositories to provide alternative scripts for ProxMenux integrates with selected external repositories to provide alternative scripts for various
various functionalities. These scripts come from <strong>trusted sources</strong> and serve as additional functionalities. These scripts come from <strong>trusted sources</strong> and serve as additional options in
options in some menu sections. some menu sections.
</p> </p>
<p className="mb-4"> <p className="mb-4">
When an external script is available as an alternative, ProxMenux will clearly indicate that it When an external script is available as an alternative, ProxMenux will clearly indicate that it originates from
originates from an external repository and specify which one. an external repository and specify which one.
</p> </p>
{/* 1⃣ Example of External Repository */} {/* 1⃣ Example of External Repository */}
<SectionHeader number={1} title="Example of an External Repository" /> <SectionHeader number={1} title="Example of External Repositories" />
<p className="mb-4"> <p className="mb-4">Essential repositories for Proxmox VE users include:</p>
One essential repository for Proxmox VE users is:
</p>
<p className="mb-4"> <p className="mb-4">
<Link <Link
href="https://community-scripts.github.io/ProxmoxVE/" href="https://community-scripts.github.io/ProxmoxVE/"
@ -73,8 +71,14 @@ export default function ExternalRepositoriesPage() {
> >
Proxmox VE Helper-Scripts Proxmox VE Helper-Scripts
</Link>{" "} </Link>{" "}
- A highly recommended repository that provides additional tools and utilities for - A highly recommended repository that provides additional tools and utilities for managing Proxmox VE more
managing Proxmox VE more efficiently. efficiently.
</p>
<p className="mb-4">
<Link href="https://github.com/R0GGER/proxmox-zimaos" className="text-blue-500 hover:underline" target="_blank">
Proxmox ZimaOS
</Link>{" "}
- Script para instalar una VM del sistema NAS ZimaOS en menos de 5 minutos.
</p> </p>
{/* 2⃣ Attribution & Recognition */} {/* 2⃣ Attribution & Recognition */}
@ -88,19 +92,20 @@ export default function ExternalRepositoriesPage() {
{/* 3⃣ Reporting Issues with External Scripts */} {/* 3⃣ Reporting Issues with External Scripts */}
<SectionHeader number={3} title="Reporting Issues with External Scripts" /> <SectionHeader number={3} title="Reporting Issues with External Scripts" />
<p className="mb-4"> <p className="mb-4">
If you encounter an issue with an external script, <strong>please report it directly to the original If you encounter an issue with an external script,{" "}
repository</strong> instead of opening an issue in the ProxMenux repository. <strong>please report it directly to the original repository</strong> instead of opening an issue in the
ProxMenux repository.
</p> </p>
<p className="mb-4"> <p className="mb-4">
<strong>ProxMenux does not modify external scripts</strong>; it simply provides a link to the original source. <strong>ProxMenux does not modify external scripts</strong>; it simply provides a link to the original source.
Therefore, any problems related to functionality should be reported to the respective developers. Therefore, any problems related to functionality should be reported to the respective developers.
</p> </p>
{/* 4⃣ Suggesting New External Repositories */} {/* 4⃣ Suggesting New External Repositories */}
<SectionHeader number={4} title="Suggesting New External Repositories" /> <SectionHeader number={4} title="Suggesting New External Repositories" />
<p className="mb-4"> <p className="mb-4">
If you know of a script or repository that could enhance ProxMenux, feel free to suggest it by If you know of a script or repository that could enhance ProxMenux, feel free to suggest it by opening a
opening a discussion or issue in our GitHub repository. discussion or issue in our GitHub repository.
</p> </p>
<p className="mb-4"> <p className="mb-4">
🔗{" "} 🔗{" "}
@ -121,5 +126,5 @@ export default function ExternalRepositoriesPage() {
</Link> </Link>
</p> </p>
</div> </div>
); )
} }