Skip to content

Commit 5d867c7

Browse files
fix: clarify AI2Work live network claims
1 parent cd03fed commit 5d867c7

3 files changed

Lines changed: 13 additions & 4 deletions

File tree

en/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ <h3 class="text-xl font-bold text-foreground dark:text-dark-foreground mb-2 font
390390
<img src="https://ai2work.atlasnexus.tech/icon.svg" alt="AI2Work" class="w-9 h-9 object-contain">
391391
</div>
392392
<h3 class="text-xl font-bold text-foreground dark:text-dark-foreground mb-2 font-display">AI2Work</h3>
393-
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed mb-4">On-chain marketplace where AI agents solve GitHub bounties and earn stablecoins. Live on Celo mainnet, Solana in progress.</p>
393+
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed mb-4">On-chain marketplace where AI agents solve GitHub bounties. Live on Celo Mainnet with USDC, cUSD and CELO; other networks are on the roadmap.</p>
394394
<div class="flex flex-wrap gap-2 mb-4">
395395
<span class="px-3 py-1 agentic-chip text-xs font-medium rounded-full">Web3</span>
396396
<span class="px-3 py-1 agentic-chip text-xs font-medium rounded-full">On-chain</span>

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -405,12 +405,12 @@ <h3 class="text-xl font-bold text-foreground dark:text-dark-foreground mb-2 font
405405
</div>
406406
</a>
407407
<!-- AI2Work -->
408-
<a href="https://ai2work.onrender.com" class="reveal reveal-delay-2 card-hover agentic-blue-card rounded-2xl p-8 border border-border bg-white dark:bg-dark-card flex flex-col">
408+
<a href="https://ai2work.atlasnexus.tech" class="reveal reveal-delay-2 card-hover agentic-blue-card rounded-2xl p-8 border border-border bg-white dark:bg-dark-card flex flex-col">
409409
<div class="w-12 h-12 agentic-icon-bg rounded-xl flex items-center justify-center mb-6">
410-
<img src="https://ai2work.onrender.com/icon.svg" alt="AI2Work" class="w-9 h-9 object-contain">
410+
<img src="https://ai2work.atlasnexus.tech/icon.svg" alt="AI2Work" class="w-9 h-9 object-contain">
411411
</div>
412412
<h3 class="text-xl font-bold text-foreground dark:text-dark-foreground mb-2 font-display">AI2Work</h3>
413-
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed mb-4">Marketplace on-chain où des agents IA résolvent des bounties GitHub et gagnent des stablecoins. Multi-chain : Celo, Base, Polygon + Solana.</p>
413+
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed mb-4">Marketplace on-chain où des agents IA résolvent des bounties GitHub. Live sur Celo Mainnet avec USDC, cUSD et CELO ; autres réseaux sur la feuille de route.</p>
414414
<div class="flex flex-wrap gap-2 mb-4">
415415
<span class="px-3 py-1 agentic-chip text-xs font-medium rounded-full">Web3</span>
416416
<span class="px-3 py-1 agentic-chip text-xs font-medium rounded-full">On-chain</span>

tests/test_audit_corrections.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ def test_sitemap_prioritizes_offers_and_cases_not_raw_demos():
4343
assert "https://atlasnexus.tech/case-study/" in SITEMAP
4444

4545

46+
def test_ai2work_copy_distinguishes_live_network_from_roadmap():
47+
for html in (FR, EN):
48+
assert "Celo Mainnet" in html
49+
assert "USDC" in html and "cUSD" in html and "CELO" in html
50+
assert "Multi-chain : Celo, Base, Polygon + Solana" not in FR
51+
assert "other networks are on the roadmap" in EN
52+
assert "ai2work.onrender.com" not in FR + EN
53+
54+
4655
if __name__ == "__main__":
4756
tests = [(name, value) for name, value in globals().items() if name.startswith("test_") and callable(value)]
4857
for name, test in tests:

0 commit comments

Comments
 (0)