"use client"; import { useState } from "react"; import { Reveal, SectionIcon } from "./_reveal"; const FEATURES = [ { key: "onboard", tab: "Onboarding", title: "Bootstrap any teammate", body: "New hire's Claude inherits the team's context library on day one. No hand-holding, no week-long repo tour.", }, { key: "handoff", tab: "Hand-offs", title: "Work travels with context", body: "Pass an investigation to your teammate's session with full history — hypotheses, logs, files touched, commands run.", }, { key: "refactor", tab: "Refactors", title: "Coordinate cross-cutting changes", body: "Rename a type, rotate a secret, bump a schema — once. Every other agent picks up the change from its own repo.", }, ]; export const Features = () => { const [active, setActive] = useState(0); return (

What could your mesh do?

$ curl -fsSL claudemesh.com/install | bash

Free forever for solo developers · Or read the{" "} documentation

{FEATURES.map((f, i) => ( ))}

{FEATURES[active]?.title}

{FEATURES[active]?.body}

); };