From 36ffe3ac00b16de9906d99a2351726d2be60a6f1 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 25 Jul 2026 17:07:49 +0200 Subject: [PATCH 1/2] hackbot-ui: add GitHub source link to header Add a GitHub icon link in the topbar pointing to the hackbot-ui source on GitHub, making it easy for contributors to find and explore the code. --- services/hackbot-ui/app/globals.css | 17 +++++++++++++++++ services/hackbot-ui/app/layout.tsx | 10 ++++++++++ services/hackbot-ui/public/github.svg | 3 +++ 3 files changed, 30 insertions(+) create mode 100644 services/hackbot-ui/public/github.svg diff --git a/services/hackbot-ui/app/globals.css b/services/hackbot-ui/app/globals.css index a4886ff2a1..18b2c2eef9 100644 --- a/services/hackbot-ui/app/globals.css +++ b/services/hackbot-ui/app/globals.css @@ -70,6 +70,23 @@ header.topbar .tag { color: var(--muted); } +header.topbar .github-link { + display: inline-flex; + align-items: center; + gap: 5px; + margin-left: 12px; + font-size: 13px; + color: var(--muted); + text-decoration: none; + opacity: 0.7; + transition: opacity 0.15s; +} + +header.topbar .github-link:hover { + opacity: 1; + color: var(--fg); +} + .panel { background: var(--panel); border: 1px solid var(--border); diff --git a/services/hackbot-ui/app/layout.tsx b/services/hackbot-ui/app/layout.tsx index 7ba906be15..10b6ee78a8 100644 --- a/services/hackbot-ui/app/layout.tsx +++ b/services/hackbot-ui/app/layout.tsx @@ -20,6 +20,16 @@ export default function RootLayout({

🚀 Hackbot Launchpad

demo + + + GitHub +
diff --git a/services/hackbot-ui/public/github.svg b/services/hackbot-ui/public/github.svg new file mode 100644 index 0000000000..160a793932 --- /dev/null +++ b/services/hackbot-ui/public/github.svg @@ -0,0 +1,3 @@ + + + From ed4f2e4b1a9a814198264b7ff0cc96084f89040f Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 25 Jul 2026 20:10:51 +0200 Subject: [PATCH 2/2] hackbot: no longer a demo --- services/hackbot-ui/app/layout.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/services/hackbot-ui/app/layout.tsx b/services/hackbot-ui/app/layout.tsx index 10b6ee78a8..38c280768b 100644 --- a/services/hackbot-ui/app/layout.tsx +++ b/services/hackbot-ui/app/layout.tsx @@ -19,7 +19,6 @@ export default function RootLayout({

🚀 Hackbot Launchpad

- demo