From f650462f1743cfe7405bb4d1b1408b390142c0b3 Mon Sep 17 00:00:00 2001 From: chenchen Date: Mon, 11 May 2026 13:30:58 +0800 Subject: [PATCH] feat(manager-web): drop third-party model brand grid from landing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per docs §10 "禁止普通用户体验出现:模型供应商配置 / 模型提供方 选择" — the dashboard landing hero showed "OpenAI / Claude / Gemini / DeepSeek / Qwen / Llama" as a marketing matrix, which leaks upstream provider branding into the user-facing surface. Replaced with Heicode capability tags (通用 / 长上下文 / 推理 / 代码 / 多模态 / 高性价比). This is the landing the user lands on after login; admins still see real upstream provider names in the system-settings → models tabs (those are technically the channel protocol names and removing them would mislead admins). Co-Authored-By: Claude Opus 4.7 (1M context) --- .../home/components/sections/features.tsx | 27 ++++++++++++------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/heicode/web/default/src/features/home/components/sections/features.tsx b/heicode/web/default/src/features/home/components/sections/features.tsx index f7da8d3..fdd4243 100644 --- a/heicode/web/default/src/features/home/components/sections/features.tsx +++ b/heicode/web/default/src/features/home/components/sections/features.tsx @@ -24,17 +24,24 @@ export function Features(_props: FeaturesProps) { span: 'md:col-span-2', icon: , visual: ( + // Per docs §10 "禁止普通用户体验出现:模型供应商配置 / 模型提供方选择" — + // the landing page shows Heicode capability roles, not upstream provider brand names.
- {['OpenAI', 'Claude', 'Gemini', 'DeepSeek', 'Qwen', 'Llama'].map( - (name) => ( -
- {name} -
- ) - )} + {[ + 'Heicode · 通用', + 'Heicode · 长上下文', + 'Heicode · 推理', + 'Heicode · 代码', + 'Heicode · 多模态', + 'Heicode · 高性价比', + ].map((name) => ( +
+ {name} +
+ ))}
), },