From dd9c1708fa16154c62d005597adcd88116ca2347 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Tue, 3 Feb 2026 08:44:08 +0800 Subject: [PATCH] =?UTF-8?q?feat(home):=20=E6=9B=B4=E6=96=B0=E9=A6=96?= =?UTF-8?q?=E9=A1=B5UI=E8=AE=BE=E8=AE=A1=E5=B9=B6=E9=87=8D=E6=9E=84?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新导航栏标题为WEBSOFT,移除自定义导航样式 - 重构Hero区域样式,替换渐变背景和品牌展示组件 - 新增快速导航栏支持产品、能力、流程等功能跳转 - 实现产品矩阵展示企业官网、小程序、电商系统等六大产品 - 添加核心能力介绍包括SaaS多租户、私有化部署、模板插件市场 - 集成联系咨询功能和电话呼叫能力 - 优化分享消息内容显示站点名称和网宿软件信息 - 重构页面布局结构提升移动端用户体验 --- config/products.ts | 54 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 config/products.ts diff --git a/config/products.ts b/config/products.ts new file mode 100644 index 0000000..900f8e0 --- /dev/null +++ b/config/products.ts @@ -0,0 +1,54 @@ +export type ProductMatrixItem = { + title: string + recommend?: boolean + desc: string + tags: string[] + adminUrl: string +} + +// Keep in sync with PC (nuxt4-10398) homepage "产品矩阵". +export const productMatrix: ProductMatrixItem[] = [ + { + title: '企业官网', + recommend: true, + desc: '品牌展示与获客转化,支持多模板、多语言、SEO 与可视化配置。', + tags: ['模板', 'SEO', '多语言', '私有化'], + adminUrl: 'https://site.websoft.top' + }, + { + title: '小程序/公众号', + recommend: false, + desc: '多端渠道接入与统一管理,适配常见内容与电商场景。', + tags: ['多端', '渠道', '可扩展'], + adminUrl: 'https://mp.websoft.top' + }, + { + title: '电商系统', + recommend: true, + desc: '商品/订单/支付/营销基础能力,插件化扩展,支持多端触达。', + tags: ['支付', '插件', '营销', '多租户'], + adminUrl: 'https://shop.websoft.top' + }, + { + title: '管理后台', + recommend: false, + desc: '多租户管理、角色权限、组织架构与可扩展菜单体系。', + tags: ['权限', '多租户', '审计'], + adminUrl: 'https://oa.websoft.top' + }, + { + title: '开发者中心', + recommend: false, + desc: '应用开发与交付入口:应用中心、源码仓库、Git 账号绑定、权限申请与教程文档。', + tags: ['应用', '源码', 'Git', '教程'], + adminUrl: '/developer' + }, + { + title: '模板/插件市场', + recommend: false, + desc: '支持模板与插件购买、授权与更新,形成生态与增值体系。', + tags: ['市场', '授权', '更新', '变现'], + adminUrl: '/market' + } +] +