Skip to content

Commit 99149be

Browse files
committed
feat(website): rework why-build cards from the launch blog, move section below tools
Why-build section now carries the blog's messaging: 'first MCP built for production pipelines' subtitle, 'Reproducible by design' replaces 'Outputs you keep' (outputs folded in), auth line fixed for local (no account needed), full-engine card mentions auto-updating templates, and the your-GPUs card sells the hardware-aware local agent (reads models, custom nodes, VRAM; untangles complex open-source workflows). No em dashes. Section moves below the capabilities list on both locales so tools sell before infrastructure.
1 parent 2b08fef commit 99149be

3 files changed

Lines changed: 15 additions & 14 deletions

File tree

apps/website/src/i18n/translations.ts

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2332,44 +2332,45 @@ const translations = {
23322332
'zh-CN': 'Comfy MCP?'
23332333
},
23342334
'mcp.why.subtitle': {
2335-
en: 'A trusted infrastructure that lets engineers and professionals ship faster.',
2336-
'zh-CN': '一套值得信赖的基础设施,让工程师和专业人士交付更快。'
2335+
en: 'The first MCP built for production pipelines: trusted infrastructure that lets engineers and professionals ship faster.',
2336+
'zh-CN':
2337+
'首个为生产管线打造的 MCP:值得信赖的基础设施,让工程师和专业人士交付更快。'
23372338
},
23382339
'mcp.why.1.title': {
23392340
en: 'Open protocol,\nany client.',
23402341
'zh-CN': '开放协议,\n任意客户端。'
23412342
},
23422343
'mcp.why.1.description': {
2343-
en: 'MCP is an open standard, so any MCP-compatible client can connect. Claude Code, Claude Desktop, and Codex sign in with OAuth; every other agent connects with an API key.',
2344+
en: 'MCP is an open standard, so any MCP-compatible client can connect: Claude Code, Claude Desktop, Codex, Cursor, and more. Sign in with OAuth or an API key on cloud; local runs need no account at all.',
23442345
'zh-CN':
2345-
'MCP 是开放标准,因此任何兼容 MCP 的客户端都能接入Claude Code、Claude DesktopCodex 通过 OAuth 登录,其他智能体使用 API 密钥连接。'
2346+
'MCP 是开放标准,任何兼容 MCP 的客户端都能接入Claude Code、Claude DesktopCodex、Cursor 等。云端通过 OAuth API 密钥登录;本地运行完全不需要账户。'
23462347
},
23472348
'mcp.why.2.title': {
23482349
en: 'The full engine,\nnot a sandbox.',
23492350
'zh-CN': '完整引擎,\n非沙箱环境。'
23502351
},
23512352
'mcp.why.2.description': {
2352-
en: 'Same tool your team uses. Fully connected multi-step, multi-GPU workflows. Everything available now and in the future.',
2353+
en: 'Same tool your team uses. Fully connected multi-step, multi-GPU workflows, with best-practice templates that update as the ecosystem moves. Everything available now and in the future.',
23532354
'zh-CN':
2354-
'与你团队使用的相同工具。完整连接的多步骤、多 GPU 工作流。当前及未来的所有功能均可使用。'
2355+
'与你团队使用的相同工具。完整连接的多步骤、多 GPU 工作流,以及随生态更新的最佳实践模板。当前及未来的所有功能均可使用。'
23552356
},
23562357
'mcp.why.3.title': {
2357-
en: 'Outputs you keep.',
2358-
'zh-CN': '输出归你所有。'
2358+
en: 'Reproducible\nby design.',
2359+
'zh-CN': '为可复现性\n而设计。'
23592360
},
23602361
'mcp.why.3.description': {
2361-
en: 'Downloads go to your Comfy library store, reuse, remix, and share without leaving the ecosystem.',
2362+
en: 'Every generation is a workflow: rerun it, share it by URL, hand it to a teammate. Made for long-term projects, not one-off generations. Outputs land in your Comfy library to store, reuse, and remix.',
23622363
'zh-CN':
2363-
'下载内容保存到你的 Comfy 库——在生态系统内存储、复用、二次创作和分享。'
2364+
'每次生成都是一个工作流:可以重跑、通过 URL 分享、交给队友。为长期项目而生,而非一次性生成。输出保存到你的 Comfy 库,随时存储、复用和二次创作。'
23642365
},
23652366
'mcp.why.4.title': {
23662367
en: 'Your GPUs,\nor ours.',
23672368
'zh-CN': '你的 GPU,\n或我们的。'
23682369
},
23692370
'mcp.why.4.description': {
2370-
en: 'Run without a local GPU on Comfy Cloud infrastructure, or keep everything on your own machine with the open-source local server. Same tools, same client, your choice.',
2371+
en: 'Run without a GPU on Comfy Cloud, or go local and let the agent do the hard part: it reads your machine (models, custom nodes, VRAM), untangles complex open-source workflows, and builds ones your hardware can actually run.',
23712372
'zh-CN':
2372-
'无需本地 GPU,在 Comfy Cloud 基础设施上运行;或使用开源本地服务器,让一切都留在你自己的机器上。同样的工具,同样的客户端,由你选择。'
2373+
'无需 GPU,在 Comfy Cloud 上运行;或选择本地,把难题交给智能体:它了解你的机器(模型、自定义节点、显存),理清复杂的开源工作流,构建你的硬件真正跑得动的工作流。'
23732374
},
23742375

23752376
// MCP – ToolsSection

apps/website/src/pages/mcp.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import { t } from '../i18n/translations'
1616
>
1717
<HeroSection locale="en" client:load />
1818
<SetupSection locale="en" client:visible />
19-
<WhySection locale="en" />
2019
<ToolsSection locale="en" />
20+
<WhySection locale="en" />
2121
<HowItWorksSection locale="en" />
2222
<ProductCardsSection locale="en" label-key="products.labelProducts" />
2323
<FAQSection client:visible locale="en" />

apps/website/src/pages/zh-CN/mcp.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import { t } from '../../i18n/translations'
1616
>
1717
<HeroSection locale="zh-CN" client:load />
1818
<SetupSection locale="zh-CN" client:visible />
19-
<WhySection locale="zh-CN" />
2019
<ToolsSection locale="zh-CN" />
20+
<WhySection locale="zh-CN" />
2121
<HowItWorksSection locale="zh-CN" />
2222
<ProductCardsSection locale="zh-CN" label-key="products.labelProducts" />
2323
<FAQSection client:visible locale="zh-CN" />

0 commit comments

Comments
 (0)