import type { Metadata } from "next"; import { Link2 } from "lucide-react"; import Link from "next/link"; export const metadata: Metadata = { title: "ProxMenux - External Repositories", description: "Learn about the external repositories used in ProxMenux, how they are selected, and how to report issues or suggest new integrations.", openGraph: { title: "ProxMenux - External Repositories", description: "Learn about the external repositories used in ProxMenux, how they are selected, and how to report issues or suggest new integrations.", type: "article", url: "https://macrimi.github.io/ProxMenux/docs/external-repositories", images: [ { url: "https://macrimi.github.io/ProxMenux/external-repos-image.png", width: 1200, height: 630, alt: "ProxMenux External Repositories", }, ], }, twitter: { card: "summary_large_image", title: "ProxMenux - External Repositories", description: "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"], }, }; function SectionHeader({ number, title }: { number: number; title: string }) { return (

{number}
{title}

); } export default function ExternalRepositoriesPage() { return (

External Repositories

{/* Introduction */}

ProxMenux integrates with selected external repositories to provide alternative scripts for various functionalities. These scripts come from **trusted sources** and serve as additional options in some menu sections.

When an external script is available as an alternative, **ProxMenux will clearly indicate that it originates from an external repository and specify which one.**

{/* 1️⃣ Example of External Repository */}

One essential repository for Proxmox VE users is:

Proxmox VE Helper-Scripts {" "} - A highly recommended repository that provides additional tools and utilities for managing Proxmox VE more efficiently.

{/* 2️⃣ Attribution & Recognition */}
  • Credit is always given to the original authors.
  • A link to the source repository is provided.
  • Users are encouraged to support the developers of these external projects.
{/* 3️⃣ Reporting Issues with External Scripts */}

If you encounter an issue with an external script, **please report it directly to the original repository** instead of opening an issue in the ProxMenux repository.

**ProxMenux does not modify external scripts**; it simply provides a link to the original source. Therefore, any problems related to functionality should be reported to the respective developers.

{/* 4️⃣ Suggesting New External Repositories */}

If you know of a script or repository that could enhance ProxMenux, feel free to suggest it by opening a discussion or issue in our GitHub repository.

🔗{" "} Open a Discussion {" "} |{" "} Report an Issue

); }