Comprehensive review of all home-page marketing components against
the post-correction positioning. Five surgical fixes, zero hand-waving.
CTA copy. The previous "Anthropic built Claude Code per developer.
The next unlock is between developers." was a strong line in 2025
but Anthropic Agent Teams (Feb 2026) IS now between-developers
within one machine. Replaced with the accurate distinction:
"Anthropic Agent Teams stops at the edge of one laptop. claudemesh
starts there — across machines, users, and organizations."
WhereMeshFits — new "vs. Agent Teams" comparison card. The single
most important card the page can have right now. Most readers
arriving in May 2026 know about Agent Teams; the comparison they
want to read is exactly this one. Also tightened the "What
claudemesh is" claim card to lean into "across machines, users,
orgs" instead of the narrower "peer network for Claude Code"
framing.
FAQ — three updates:
1. "How is this different from MCP?" was claiming "43 tools that
let peers message, share files…" which contradicted v1.5.0's
ship of tool-less MCP (tools/list returns []). Replaced with
the actual current architecture: thin push-pipe + resource-
noun-verb CLI bundled as a skill.
2. New entry "How is this different from Anthropic's Agent
Teams?" — the biggest gap in the FAQ given the new ecosystem.
Same shape as the WhereMeshFits card so the messaging stays
consistent across surfaces.
3. "Can a peer be in multiple meshes?" updated to reflect
v1.26.0's universal multi-mesh daemon (was speaking about it
as roadmap; it's been shipped for ~2 days). Bridge peers
promoted from "v0.2 roadmap" to "shipped in v0.2.0 (v1.6.0)".
4. "Free during public beta" no longer claims paid tiers launch
"when the dashboard ships" — dashboard already shipped (v1.5+
web chat, v1.7 demo cut). Replaced with team-scale features
(SSO, audit retention, dedicated brokers) as the pricing
trigger.
Pricing card — same "dashboard ships" → "team-scale features"
language fix as the FAQ pricing entry. Single source of truth
maintained between FAQ + Pricing card.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
65 lines
2.7 KiB
TypeScript
65 lines
2.7 KiB
TypeScript
import Link from "next/link";
|
|
import { Reveal, SectionIcon } from "./_reveal";
|
|
|
|
export const CallToAction = () => {
|
|
return (
|
|
<section className="relative overflow-hidden bg-[var(--cm-bg)] px-6 py-32 md:px-12 md:py-40">
|
|
<div
|
|
className="absolute inset-0 z-0 opacity-[0.1]"
|
|
style={{
|
|
backgroundImage:
|
|
"radial-gradient(circle at 50% 100%, var(--cm-clay) 0%, transparent 55%)",
|
|
}}
|
|
/>
|
|
<div className="relative z-10 mx-auto max-w-5xl text-center">
|
|
<Reveal className="mb-8 flex justify-center">
|
|
<SectionIcon glyph="mesh" />
|
|
</Reveal>
|
|
<Reveal delay={1}>
|
|
<h2
|
|
className="text-[clamp(2.25rem,5.5vw,4.5rem)] font-medium leading-[1.05] tracking-tight text-[var(--cm-fg)]"
|
|
style={{ fontFamily: "var(--cm-font-serif)" }}
|
|
>
|
|
Connect what's scattered.
|
|
<br />
|
|
<span className="italic text-[var(--cm-clay)]">
|
|
Ship what ships together.
|
|
</span>
|
|
</h2>
|
|
</Reveal>
|
|
<Reveal delay={2}>
|
|
<p
|
|
className="mx-auto mt-8 max-w-2xl text-lg leading-[1.65] text-[var(--cm-fg-secondary)]"
|
|
style={{ fontFamily: "var(--cm-font-serif)" }}
|
|
>
|
|
Anthropic Agent Teams stops at the edge of one laptop. claudemesh
|
|
starts there — across machines, users, and organizations. Hosted
|
|
on claudemesh.com or self-hosted in your VPC, same CLI either way.
|
|
</p>
|
|
</Reveal>
|
|
<Reveal delay={3}>
|
|
<div className="mt-12 flex flex-col items-stretch justify-center gap-3 sm:flex-row sm:items-center">
|
|
<Link
|
|
href="/auth/register"
|
|
className="group inline-flex items-center justify-center gap-2 rounded-[var(--cm-radius-xs)] bg-[var(--cm-clay)] px-6 py-3.5 text-[15px] font-medium text-[var(--cm-fg)] transition-colors duration-300 hover:bg-[var(--cm-clay-hover)]"
|
|
style={{ fontFamily: "var(--cm-font-sans)" }}
|
|
>
|
|
Start free
|
|
<span className="transition-transform duration-300 group-hover:translate-x-0.5">
|
|
→
|
|
</span>
|
|
</Link>
|
|
<Link
|
|
href="https://github.com/alezmad/claudemesh-cli#readme"
|
|
className="inline-flex items-center justify-center gap-2 rounded-[var(--cm-radius-xs)] border border-[var(--cm-fg-tertiary)] px-6 py-3.5 text-[15px] font-medium text-[var(--cm-fg)] transition-colors duration-300 hover:border-[var(--cm-fg)] hover:bg-[var(--cm-bg-elevated)]"
|
|
style={{ fontFamily: "var(--cm-font-sans)" }}
|
|
>
|
|
Read the docs
|
|
</Link>
|
|
</div>
|
|
</Reveal>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|