Skip to content

Commit 88ea01d

Browse files
Add-adoption-contact-callout
1 parent 0ba3ada commit 88ea01d

3 files changed

Lines changed: 16 additions & 3 deletions

File tree

design-system.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1123,6 +1123,10 @@ html:has(body.agentrust-hub) { scroll-behavior: smooth; }
11231123
.agentrust-hub .startup-card .partner-logo-wrap { min-height: 76px; padding: .65rem; }
11241124
.agentrust-hub .startup-card .partner-logo-wrap img { width: 48px; max-height: 48px; margin: auto; object-fit: contain; }
11251125
.agentrust-hub .startup-card h3 { font-family: var(--at-sans); font-size: 1.1rem; font-weight: 750; }
1126+
.agentrust-hub .adoption-contact { display: flex; gap: 2rem; align-items: center; justify-content: space-between; margin-top: 1rem; padding: 1.5rem; border: 1px solid var(--at-line); border-radius: var(--at-radius); background: var(--at-paper-2); }
1127+
.agentrust-hub .adoption-contact h3 { margin: 0 0 .4rem; color: var(--at-ink); font-family: var(--at-serif); font-size: clamp(1.35rem, 2.5vw, 1.9rem); font-weight: 500; }
1128+
.agentrust-hub .adoption-contact p { max-width: 720px; margin: 0; color: var(--at-muted); font-size: .9rem; line-height: 1.55; }
1129+
.agentrust-hub .adoption-contact .btn { flex: 0 0 auto; white-space: nowrap; }
11261130
.agentrust-hub .governance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
11271131
.agentrust-hub .governance-card { min-height: 240px; padding: 1.5rem; }
11281132
.agentrust-hub .governance-card h3 { margin: 0 0 .6rem; color: var(--at-ink); font-size: 1.1rem; }
@@ -1145,6 +1149,7 @@ html:has(body.agentrust-hub) { scroll-behavior: smooth; }
11451149
.agentrust-hub .governance-grid,
11461150
.agentrust-hub .partner-grid,
11471151
.agentrust-hub .partner-card { grid-template-columns: 1fr; }
1152+
.agentrust-hub .adoption-contact { align-items: flex-start; flex-direction: column; }
11481153
.agentrust-hub .playbook-grid { grid-template-columns: 1fr; }
11491154
.agentrust-hub .playbook-card { min-height: 130px; }
11501155
}

index.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
]
195195
}
196196
</script>
197-
<link rel="stylesheet" href="/design-system.css?v=13">
197+
<link rel="stylesheet" href="/design-system.css?v=14">
198198
</head>
199199
<body class="agentrust-hub" id="top">
200200

@@ -368,6 +368,14 @@ <h1>Build the ecosystem for verifiable AI agents</h1>
368368
</article>
369369
</div>
370370
<!-- adoption:generated:end -->
371+
<aside class="adoption-contact" aria-labelledby="adoption-contact-title">
372+
<div>
373+
<div class="partner-kicker">Join the ecosystem</div>
374+
<h3 id="adoption-contact-title">Building with or supporting AgenTrust?</h3>
375+
<p>Share your implementation, integration, contribution, or partnership context. Every relationship is described precisely and linked to public evidence where available.</p>
376+
</div>
377+
<a class="btn btn-primary" href="mailto:imran.siddique@opaque.co?subject=AgenTrust%20adoption%20and%20ecosystem">Contact Imran →</a>
378+
</aside>
371379
</section>
372380

373381
<hr class="divider">

scripts/render-adoption.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const generated = [
6363
end
6464
].join('\n');
6565

66-
const page = await readFile(pageUrl, 'utf8');
66+
const page = (await readFile(pageUrl, 'utf8')).replaceAll('\r\n', '\n');
6767
const startAt = page.indexOf(start);
6868
const endAt = page.indexOf(end);
6969
if (startAt < 0 || endAt < startAt) throw new Error('Generated adoption markers are missing or out of order');
@@ -76,6 +76,6 @@ if (process.argv.includes('--check')) {
7676
}
7777
console.log(`PASS ${relationships.length} adoption relationships are in sync`);
7878
} else {
79-
await writeFile(pageUrl, next);
79+
await writeFile(pageUrl, next, 'utf8');
8080
console.log(`Rendered ${relationships.length} adoption relationships`);
8181
}

0 commit comments

Comments
 (0)