From 55abb134f19384fb2c847794346996020d4dc535 Mon Sep 17 00:00:00 2001 From: helpbase-sync Date: Mon, 13 Jul 2026 11:50:25 +0000 Subject: [PATCH] docs: sync with codebase (2026-07-13) --- apps/web/content/getting-started/installation.mdx | 6 +++--- apps/web/content/getting-started/introduction.mdx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/web/content/getting-started/installation.mdx b/apps/web/content/getting-started/installation.mdx index 11ca98a..bea48a7 100644 --- a/apps/web/content/getting-started/installation.mdx +++ b/apps/web/content/getting-started/installation.mdx @@ -56,13 +56,13 @@ The scaffolded project is completely standalone. It has no dependency on the hel ## Adding to an existing project -If you already have a Next.js + shadcn project, use the registry instead: +If you already have a Next.js + shadcn project, you can install the full helpbase primitive in one command: ```bash -npx shadcn add https://helpbase.dev/r/help-center.json +pnpm dlx helpbase init ``` -This adds the help center components, content pipeline, and routes to your existing project without replacing your layout or configuration. +This adds the help center routes, starter content, MCP server, and sync workflow to your existing project. You can also add individual pieces by installing primitives like `https://helpbase.dev/r/help-center.json` directly via shadcn. ## Deploy diff --git a/apps/web/content/getting-started/introduction.mdx b/apps/web/content/getting-started/introduction.mdx index 7e77cb1..a789add 100644 --- a/apps/web/content/getting-started/introduction.mdx +++ b/apps/web/content/getting-started/introduction.mdx @@ -29,7 +29,7 @@ Most help center tools are either closed-source hosted SaaS or generic wikis tha Run the scaffolder to create a new help center project with sample content: ```bash - npx create-helpbase my-docs + pnpm dlx create-helpbase my-docs cd my-docs ```