Skip to content

Commit a454cf1

Browse files
author
Eduardo Contreras
committed
Explain the RFSAM acronym on the landing page (and site-wide)
The name was never spelled out. Added "RFSAM — Radio Frequency Security Assessment Methodology" as a subtitle under the hero, expanded the footer to the full name on every page, and a title tooltip on the nav brand.
1 parent 25d31a9 commit a454cf1

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/layouts/BaseLayout.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ const nav = [
2424
</head>
2525
<body>
2626
<nav class="topnav">
27-
<a class="brand" href="/RFSAM/">RFSAM</a>
27+
<a class="brand" href="/RFSAM/" title={meta.subtitle}>RFSAM</a>
2828
{nav.map((n) => (
2929
<a class="nav" href={n.href} aria-current={path === n.href || path.startsWith(n.href + '/') ? 'page' : undefined}>{n.label}</a>
3030
))}
3131
</nav>
3232
<slot />
3333
<footer style="border-top:1px solid var(--line);padding:24px;color:var(--mut2);font-size:12px;text-align:center">
34-
{meta.org} · {meta.title} {meta.version} · CC BY-SA 4.0
34+
{meta.title}{meta.subtitle} · {meta.org} · {meta.version} · CC BY-SA 4.0
3535
</footer>
3636
</body>
3737
</html>

src/pages/index.astro

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ const sections = [
3434
<div class="container">
3535
<div class="mono kicker">Open methodology · {meta.org}</div>
3636
<h1 class="hero">A <span style="color:var(--cyan)">north</span> for RF research and auditing.</h1>
37+
<p class="fullname mono"><strong>RFSAM</strong> — {meta.subtitle}</p>
3738
<p class="blurb">{meta.blurb}</p>
3839
<IqTrace />
3940

@@ -71,6 +72,8 @@ const sections = [
7172
.kicker { font-size: 11px; letter-spacing: .18em; color: var(--orange); text-transform: uppercase; }
7273
.hero { font-size: 46px; line-height: 1.05; margin: 16px 0 0; max-width: 16ch; }
7374
.blurb { font-size: 17px; color: var(--mut); max-width: 62ch; margin-top: 18px; line-height: 1.6; }
75+
.fullname { font-size: 13px; color: var(--mut2); margin-top: 14px; letter-spacing: .01em; }
76+
.fullname strong { color: var(--ink); font-weight: 600; letter-spacing: .05em; }
7477
.section-h { font-size: 13px; letter-spacing: .16em; color: var(--mut2); margin-top: 50px; }
7578
.section-h .count { color: var(--mut); font-weight: 400; letter-spacing: 0; }
7679
.lede { font-size: 14px; color: var(--mut); max-width: 70ch; margin-top: 8px; line-height: 1.6; }

0 commit comments

Comments
 (0)