Skip to content

Commit 603bda3

Browse files
bokelleyclaude
andauthored
Improve AAO website UX and navigation clarity (#292)
* Improve AAO website UX and navigation clarity - Rename "Insights" to "Perspectives" (better reflects thought leadership content) - Move "About AdCP" to left side of nav and rename from "AdCP" (clearer distinction from Docs) - Consolidate member CTAs by removing redundant "List Your Organization" banner - Update homepage "Become a Member" button to link directly to dashboard - Clarify benchmarking teaser text: "Members-only tools, data, and other resources" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * Add empty changeset for UI-only changes --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent 9de5bfd commit 603bda3

File tree

4 files changed

+14
-23
lines changed

4 files changed

+14
-23
lines changed

.changeset/tough-buttons-wear.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

server/public/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

server/public/members.html

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1175,22 +1175,11 @@ <h3>Share Your Capabilities</h3>
11751175
</div>
11761176
<div class="coming-soon-teaser">
11771177
<span class="coming-soon-badge">Coming Soon</span>
1178-
<span class="coming-soon-text">Members-only tools, market data, and benchmarking resources</span>
1178+
<span class="coming-soon-text">Members-only tools, data, and other resources</span>
11791179
</div>
11801180
<a href="/auth/login?redirect=/member-profile" class="membership-cta-btn">Join AgenticAdvertising.org</a>
11811181
</section>
11821182

1183-
<!-- Join CTA Banner (for returning visitors scrolling through directory) -->
1184-
<div class="join-cta">
1185-
<div class="join-cta-content">
1186-
<div class="join-cta-text">
1187-
<h2>List Your Organization</h2>
1188-
<p>Join the community and showcase your role in agentic advertising.</p>
1189-
</div>
1190-
<a href="/auth/login?redirect=/member-profile" class="join-cta-btn">Join Now</a>
1191-
</div>
1192-
</div>
1193-
11941183
<div class="search-section">
11951184
<div class="search-bar">
11961185
<input type="text" id="search-input" placeholder="Search by name, location, or tags..." onkeyup="handleSearch(event)">

server/public/nav.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,10 @@
107107
? `<a href="${aboutUrl}" class="navbar__link ${currentPath === '/about' ? 'active' : ''}">About AgenticAdvertising.org</a>`
108108
: '';
109109

110-
// Build insights link (only on beta site)
111-
const insightsUrl = isLocal ? '/insights' : 'https://agenticadvertising.org/insights';
112-
const insightsLink = membershipEnabled
113-
? `<a href="${insightsUrl}" class="navbar__link ${currentPath.startsWith('/insights') ? 'active' : ''}">Insights</a>`
110+
// Build perspectives link (only on beta site)
111+
const perspectivesUrl = isLocal ? '/insights' : 'https://agenticadvertising.org/insights';
112+
const perspectivesLink = membershipEnabled
113+
? `<a href="${perspectivesUrl}" class="navbar__link ${currentPath.startsWith('/insights') ? 'active' : ''}">Perspectives</a>`
114114
: '';
115115

116116
// Always use AAO logo
@@ -119,8 +119,8 @@
119119
// AAO logo is white, needs invert on light background
120120
const logoNeedsInvert = true;
121121

122-
// AdCP link always shown
123-
const adcpLink = '<a href="https://adcontextprotocol.org" class="navbar__link">AdCP</a>';
122+
// About AdCP link always shown
123+
const aboutAdcpLink = '<a href="https://adcontextprotocol.org" class="navbar__link">About AdCP</a>';
124124

125125
return `
126126
<nav class="navbar">
@@ -132,14 +132,14 @@
132132
</div>
133133
</a>
134134
<div class="navbar__links-desktop">
135+
${aboutAdcpLink}
135136
${membersLink}
136-
${insightsLink}
137+
${perspectivesLink}
137138
${aboutLink}
138139
</div>
139140
</div>
140141
<div class="navbar__items navbar__items--right">
141142
<div class="navbar__links-desktop">
142-
${adcpLink}
143143
<a href="${docsUrl}" class="navbar__link">Docs</a>
144144
<a href="https://github.com/adcontextprotocol/adcp" target="_blank" rel="noopener noreferrer" class="navbar__link">GitHub</a>
145145
</div>
@@ -152,10 +152,10 @@
152152
</div>
153153
</div>
154154
<div class="navbar__mobile-menu" id="mobileMenu">
155+
${aboutAdcpLink}
155156
${membersLink}
156-
${insightsLink}
157+
${perspectivesLink}
157158
${aboutLink}
158-
${adcpLink}
159159
<a href="${docsUrl}" class="navbar__link">Docs</a>
160160
<a href="https://github.com/adcontextprotocol/adcp" target="_blank" rel="noopener noreferrer" class="navbar__link">GitHub</a>
161161
</div>

0 commit comments

Comments
 (0)