From cd13f0d93f02595903ec94921f7db6e424fcec4e Mon Sep 17 00:00:00 2001 From: Chneemann Date: Thu, 30 Jul 2026 11:19:18 +0200 Subject: [PATCH] refactor: replace codeberg links with self-hosted git --- src/lib/paletteCommands.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/paletteCommands.ts b/src/lib/paletteCommands.ts index 924c213..fd896fe 100644 --- a/src/lib/paletteCommands.ts +++ b/src/lib/paletteCommands.ts @@ -52,13 +52,13 @@ export const getCommands = ( }, }, { - id: "codeberg", - label: "View Codeberg Profile", + id: "forgejo", + label: "View Self-Hosted Git Profile", category: "Social / Links", - icon: "🏔️", + icon: "🔨", action: () => { window.open( - "https://codeberg.org/Chneemann", + "https://git.andre-kempf.com/Chneemann", "_blank", "noopener,noreferrer", ); @@ -92,12 +92,12 @@ export const getCommands = ( }, { id: "source-code", - label: "View Site Source Code (Codeberg)", + label: "View Site Source Code (Self-Hosted Git)", category: "Social / Links", icon: "💻", action: () => { window.open( - "https://codeberg.org/Chneemann/portfolio", + "https://git.andre-kempf.com/Chneemann/portfolio", "_blank", "noopener,noreferrer", );