diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx index c6fad745a..8a5fbc14a 100644 --- a/frontend/src/app/page.tsx +++ b/frontend/src/app/page.tsx @@ -70,9 +70,9 @@ export default function Page() { Thank You! - A big thank you to Tteck and the many contributors who have - made this project possible. Your hard work is truly - appreciated by the entire Proxmox community! + A big thank you to Tteck, for your hard work over all of these years, + and also to the many other contributors to the project. + Your hard work is truly appreciated by the entire Proxmox community! @@ -93,7 +93,18 @@ export default function Page() { rel="noopener noreferrer" className="flex items-center justify-center" > - Proxmox Helper + Upstream Proxmox Helper + Scripts + + + @@ -106,8 +117,7 @@ export default function Page() { Make managing your Homelab a breeze

- We are a community-driven initiative that simplifies the setup of - Proxmox Virtual Environment (VE). + This project aims to take the community-made Proxmox Helper Scripts, originally started by tteck, and port it to arm64.

Originally created by{" "} @@ -118,12 +128,6 @@ export default function Page() {
the process of creating and configuring Linux containers (LXC) and virtual machines (VMs) on Proxmox VE. -
-
- With 200+ scripts to help you manage your{" "} - Proxmox VE environment.
- Whether you're a seasoned user or a newcomer, we've got - you covered.

diff --git a/frontend/src/app/scripts/_components/ScriptItem.tsx b/frontend/src/app/scripts/_components/ScriptItem.tsx index a8a769634..1dd416c40 100644 --- a/frontend/src/app/scripts/_components/ScriptItem.tsx +++ b/frontend/src/app/scripts/_components/ScriptItem.tsx @@ -54,17 +54,9 @@ function ScriptItem({
-

- - {item.status} - {item.name} {getDisplayValueFromType(item.type)} -

+

+ {item.status} {item.name} {getDisplayValueFromType(item.type)} +

Date added: {extractDate(item.date_created)}

diff --git a/frontend/src/app/scripts/_components/ScriptItems/InstallCommand.tsx b/frontend/src/app/scripts/_components/ScriptItems/InstallCommand.tsx index 26d941cf3..43804679f 100644 --- a/frontend/src/app/scripts/_components/ScriptItems/InstallCommand.tsx +++ b/frontend/src/app/scripts/_components/ScriptItems/InstallCommand.tsx @@ -5,7 +5,7 @@ import { Script } from "@/lib/types"; import { getDisplayValueFromType } from "../ScriptInfoBlocks"; const getInstallCommand = (scriptPath?: string, isAlpine = false) => { - return `bash -c "$(wget -q${isAlpine ? "" : "L"}O - https://github.com/community-scripts/${basePath}/raw/main/${scriptPath})"`; + return `bash -c "$(wget -q${isAlpine ? "" : "L"}O - https://github.com/asylumexp/${basePath}/raw/main/${scriptPath})"`; }; export default function InstallCommand({ item }: { item: Script }) { diff --git a/frontend/src/components/Navbar.tsx b/frontend/src/components/Navbar.tsx index 482c2897c..c8bd1f2fc 100644 --- a/frontend/src/components/Navbar.tsx +++ b/frontend/src/components/Navbar.tsx @@ -51,7 +51,7 @@ function Navbar() { alt="logo" src="logo.png" /> - Proxmox VE Helper-Scripts + Proxmox ARM64 Helper-Scripts
diff --git a/frontend/src/components/ui/star-on-github-button.tsx b/frontend/src/components/ui/star-on-github-button.tsx index fd8b4edcc..340d59a47 100644 --- a/frontend/src/components/ui/star-on-github-button.tsx +++ b/frontend/src/components/ui/star-on-github-button.tsx @@ -13,7 +13,7 @@ export default function StarOnGithubButton() { const fetchStars = async () => { try { const res = await fetch( - `https://api.github.com/repos/community-scripts/${basePath}`, + `https://api.github.com/repos/asylumexp/${basePath}`, { next: { revalidate: 60 * 60 * 24 }, }, diff --git a/frontend/src/config/siteConfig.tsx b/frontend/src/config/siteConfig.tsx index 40c15f041..8d7e546ce 100644 --- a/frontend/src/config/siteConfig.tsx +++ b/frontend/src/config/siteConfig.tsx @@ -34,7 +34,7 @@ export const navbarLinks = [ export const mostPopularScripts = [ "Proxmox VE Post Install", "Docker", - "Home Assistant OS", + "PiMox HAOS", ]; export const analytics = {