Skip to content

Commit 73b33ff

Browse files
committed
fix: expand HUD as Heads-Up Display across visible content
The abbreviation was only expanded in meta tags and llms.txt but never in the content users and crawlers actually read. - Title tag: 'A Heads-Up Display for Your AI Agents' - Hero rail: 'a heads-up display for your AI agents' - Nav wordmark: aria-label expands the abbreviation - Footer wordmark: abbr element with title attribute
1 parent 0c00a41 commit 73b33ff

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

site/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
6-
<title>TokenHUD — Live Token Usage & Cost for Your AI Agents</title>
6+
<title>TokenHUD — A Heads-Up Display for Your AI Agents' Token Usage & Cost</title>
77
<meta name="description" content="See what your AI coding agents run and cost, live on your own machine. Token metering, spend and plan limits for Claude Code, Codex CLI, Cursor, Devin and more. Free, local-first, zero dependencies." />
88
<link rel="canonical" href="https://tokenhud.com/" />
99
<meta name="author" content="TokenHUD" />

site/src/components/Footer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default function Footer() {
55
Metrics leave. <b>Content never does.</b>
66
</p>
77
<div className="footer__meta">
8-
<span className="wordmark">Token<b>HUD</b></span>
8+
<span className="wordmark">Token<b><abbr title="Heads-Up Display">HUD</abbr></b></span>
99
<nav className="footer__links" aria-label="Footer">
1010
<a href="https://github.com/reddy-sh/tokenhud">GitHub</a>
1111
<a href="https://github.com/reddy-sh/tokenhud/blob/main/INSTALL.md">Install</a>

site/src/components/Hero.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default function Hero({ cta, onPortal }) {
2525

2626
<div className="hero__rail">
2727
<span className="hero__rail-dot" aria-hidden="true" />
28-
<span>TOKENHUD — live agent monitoring · open source · MIT</span>
28+
<span>TOKENHUD — a heads-up display for your AI agents · open source · MIT</span>
2929
</div>
3030

3131
<h1 className="hero__display">

site/src/components/Nav.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default function Nav({ cta, onPortal }) {
1515
return (
1616
<header className="nav" ref={navRef}>
1717
<div className="nav__inner">
18-
<a className="nav__brand" href="#top" aria-label="TokenHUD home">
18+
<a className="nav__brand" href="#top" aria-label="TokenHUD — Token Heads-Up Display">
1919
<span className="nav__brand-dot" aria-hidden="true" />
2020
<span>Token<b>HUD</b></span>
2121
</a>

0 commit comments

Comments
 (0)