From 73d2b8295bc4406742d16718f556dda1afd90604 Mon Sep 17 00:00:00 2001 From: Nicholas Kissel Date: Sat, 20 Jun 2026 20:27:48 -0700 Subject: [PATCH] Redesign homepage hero: benefit H1, proof strip, clearer CTA hierarchy Reworks the Agent OS homepage hero for faster comprehension: - Adds a benefit headline ("Thousands of agents. Milliseconds to start.") and demotes the animated agentOS wordmark to a brand mark above it. - Tightens the subhead to state what it is (each agent in its own V8 isolate; no Docker/VMs). - Adds a proof strip of the headline metrics (~6 ms cold start, 8x less memory, 32x cheaper, npm install), sourced from bench.ts. - Establishes CTA hierarchy: primary 'Get started' + the npm install copy box, moved above the code sample; demotes the registry link to a quiet tertiary link below it. - Trims the code sample height so the hero fits better above the fold. Co-Authored-By: Claude Opus 4.8 --- .../marketing/solutions/AgentOSPage.tsx | 89 ++++++++++++++----- 1 file changed, 65 insertions(+), 24 deletions(-) diff --git a/website/src/components/marketing/solutions/AgentOSPage.tsx b/website/src/components/marketing/solutions/AgentOSPage.tsx index 15314a1d2..3310ecb9c 100644 --- a/website/src/components/marketing/solutions/AgentOSPage.tsx +++ b/website/src/components/marketing/solutions/AgentOSPage.tsx @@ -823,32 +823,65 @@ const Hero = ({ heroTabs }: { heroTabs: HeroTabCode[] }) => { // Displayed agent is either hovered (if autoplay complete) or autoplay agent const displayedAgent = autoPlayComplete ? hoveredAgent : autoPlayAgent; + // Hero proof points, sourced from bench.ts so they stay accurate. + const heroStats = [ + `~${Math.round(benchColdStart[2].agentOS)} ms cold start`, + `${benchWorkloads.agent.memory.multiplier.split('x')[0]}× less memory`, + `${benchWorkloads.agent.cost[0].ratio}× cheaper`, + 'npm install', + ]; + return (
- {/* Title */} + {/* Brand mark */}
- + Beta
- {/* Subtitle */} + {/* Headline */} + + Thousands of agents. Milliseconds to start. + + + {/* Subhead */} - A portable open-source operating system for agents. ~6 ms coldstarts, 32x cheaper than sandboxes. Powered by WebAssembly and V8 isolates. + Agent OS runs each AI agent in its own lightweight V8 isolate — the same technology that powers Chrome. No Docker, no VMs. + {/* Proof strip */} + + {heroStats.map((stat, i) => ( + + {i > 0 ? : null} + {stat} + + ))} + + {/* Supported Harnesses */} { *Coming Soon + {/* CTAs */} + + + Get started + + + + + {/* Code snippets */} {
{getStartedTabs[activeTab]?.fileName ?? 'index.ts'}
-