2 Commits

Author SHA1 Message Date
5639117936 Merge pull request 'fix(brand): link "Runic Gateway" footer badge to Gitea org' (#70) from fix/branding-footer-link into main
All checks were successful
Build container images / build (push) Successful in 1m11s
Build container images / deploy (push) Successful in 33s
Reviewed-on: #70
Reviewed-by: Colby Whitlock <whitlocktech@gmail.com>
2026-07-18 23:36:46 +00:00
50133155d6 fix(brand): link "Runic Gateway" footer badge to Gitea org
All checks were successful
PR Checks / server-tests (pull_request) Successful in 9m27s
PR Checks / client-build (pull_request) Successful in 10m16s
PR Checks / bot-install (pull_request) Successful in 9m19s
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 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01XmHdsbnLzDMAVQkAoTQSBe
2026-07-18 18:16:51 -05:00
2 changed files with 15 additions and 1 deletions

View File

@@ -20,7 +20,14 @@ export default function SiteFooter() {
<span>
Powered by
<br />
<strong>Runic Gateway</strong>
<a
href="https://gitea.whitlocktech.com/RunicGateway"
target="_blank"
rel="noopener noreferrer"
className="site-footer-brand-link"
>
<strong>Runic Gateway</strong>
</a>
</span>
</div>
<div className="site-footer-info">

View File

@@ -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;