Skip to content

Commit 0c56033

Browse files
lroolleclaude
andcommitted
fix(web): link footer brand and author to GitHub
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent fea1ec5 commit 0c56033

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

internal/web/templates.go

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2494,9 +2494,9 @@ func renderTopNav(projectName, sessionID string) string {
24942494
func renderFooter() string {
24952495
return `<footer class="site-footer">
24962496
<div class="footer-inner">
2497-
<span class="footer-brand"><span class="brand-cc">cc</span><span class="brand-x">x</span></span>
2497+
<a href="https://github.com/thevibeworks/ccx" target="_blank" rel="noopener noreferrer" class="footer-brand"><span class="brand-cc">cc</span><span class="brand-x">x</span></a>
24982498
<span class="footer-sep">·</span>
2499-
<span class="footer-text">by thevibeworks</span>
2499+
<a href="https://github.com/thevibeworks" target="_blank" rel="noopener noreferrer" class="footer-text">by thevibeworks</a>
25002500
</div>
25012501
</footer>`
25022502
}
@@ -2825,9 +2825,11 @@ code, pre, .session-id, .model-badge {
28252825
font-size: 13px;
28262826
color: var(--text-muted);
28272827
}
2828-
.footer-brand { font-weight: 700; font-size: 14px; }
2828+
.footer-brand { font-weight: 700; font-size: 14px; color: inherit; text-decoration: none; }
2829+
.footer-brand:hover { opacity: 0.8; }
28292830
.footer-sep { opacity: 0.5; }
2830-
.footer-text { font-size: 12px; }
2831+
.footer-text { font-size: 12px; color: inherit; text-decoration: none; }
2832+
.footer-text:hover { opacity: 0.8; }
28312833
28322834
/* Two-panel navigation */
28332835
.panel-nav {

0 commit comments

Comments
 (0)