From 50133155d665cf9cd4b8a3cc844754751eb0cc37 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 18 Jul 2026 18:16:51 -0500 Subject: [PATCH] fix(brand): link "Runic Gateway" footer badge to Gitea org Wrap the "Powered by Runic Gateway" wordmark in an anchor pointing to https://gitea.whitlocktech.com/RunicGateway (new tab, noopener). Adds a subtle accent-color hover on the wordmark. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01XmHdsbnLzDMAVQkAoTQSBe --- client/src/components/SiteFooter.jsx | 9 ++++++++- client/src/styles/theme.css | 7 +++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/client/src/components/SiteFooter.jsx b/client/src/components/SiteFooter.jsx index a3978de..2ae3e57 100644 --- a/client/src/components/SiteFooter.jsx +++ b/client/src/components/SiteFooter.jsx @@ -20,7 +20,14 @@ export default function SiteFooter() { Powered by
- Runic Gateway + + Runic Gateway +
diff --git a/client/src/styles/theme.css b/client/src/styles/theme.css index bd51801..351ce14 100644 --- a/client/src/styles/theme.css +++ b/client/src/styles/theme.css @@ -1044,6 +1044,13 @@ button[disabled] { font-weight: 700; letter-spacing: 0.04em; } +.site-footer-brand-link { + text-decoration: none; + color: inherit; +} +.site-footer-brand-link:hover strong { + color: var(--accent); +} .site-footer-info { display: flex; flex-direction: column;