From f68310046165dc9a7e16d50430ab1337186cebf2 Mon Sep 17 00:00:00 2001 From: Nick Gomez <122398915+nick-inkeep@users.noreply.github.com> Date: Thu, 25 Jun 2026 20:16:21 -0700 Subject: [PATCH] docs(marketing): tighten hero, feature, and use-case copy (#2167) Trim hero subhead; tighten made-for-agents feature blurbs; rework knowledge-base + eng-specs use-case descriptions. GitOrigin-RevId: 1f65204d3265ebc790442f6afafdbf17c6b284ec --- docs/src/app/(home)/sections/hero.tsx | 2 +- docs/src/app/(home)/sections/made-for-agents.tsx | 8 +++----- docs/src/app/(home)/sections/put-it-to-work.tsx | 4 ++-- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/docs/src/app/(home)/sections/hero.tsx b/docs/src/app/(home)/sections/hero.tsx index 8fe9881c5..268f499f6 100644 --- a/docs/src/app/(home)/sections/hero.tsx +++ b/docs/src/app/(home)/sections/hero.tsx @@ -39,7 +39,7 @@ export function Hero() { className="items-center" tag="Open source" headingClassName="sm:text-6xl text-5xl" - description="A rich text editor and knowledge base for you and your agents. Private, open source, and free." + description="A rich text editor and knowledge base for you and your agents." > {SITE_HEADLINE} diff --git a/docs/src/app/(home)/sections/made-for-agents.tsx b/docs/src/app/(home)/sections/made-for-agents.tsx index 3d4210233..38b9cdbe6 100644 --- a/docs/src/app/(home)/sections/made-for-agents.tsx +++ b/docs/src/app/(home)/sections/made-for-agents.tsx @@ -16,19 +16,17 @@ const features: Feature[] = [ { icon: Hexagon, title: 'Agent skills', - description: - 'Your agents know how to navigate, edit and grow your knowledge base out of the box.', + description: 'Agents know how to navigate, edit and grow your knowledge base out of the box.', }, { icon: Plug, title: 'Native MCP', - description: 'Plug your knowledge base straight into Claude, Cursor, Codex, and other agents.', + description: 'Plug your knowledge base into Claude, Cursor, Codex, and other agents.', }, { icon: Search, title: 'Agentic Search', - description: - 'Help agents find the right content with built-in embeddings and hierarchical RAG.', + description: 'Help agents find the right content with embeddings and hierarchical RAG.', }, ]; diff --git a/docs/src/app/(home)/sections/put-it-to-work.tsx b/docs/src/app/(home)/sections/put-it-to-work.tsx index 5b56ef865..8217c2a52 100644 --- a/docs/src/app/(home)/sections/put-it-to-work.tsx +++ b/docs/src/app/(home)/sections/put-it-to-work.tsx @@ -22,13 +22,13 @@ const cards: UseCaseCard[] = [ visual: , title: 'Knowledge base', description: - 'A living wiki for your team — docs, notes, and decisions in plain markdown, kept current by everyone who works on them.', + 'A living wiki for you and your team — skills, docs, notes in plain markdown, kept automatically in sync.', }, { visual: , title: 'Engineering specs', description: - 'Specs, RFCs and runbooks living next to the code, edited by humans and coding agents in the same loop.', + 'Specs, PRDs, and roadmaps living next to the code, edited by humans and coding agents in the same loop.', }, ];