Files
template-5/config/products.ts
赵忠林 dd9c1708fa feat(home): 更新首页UI设计并重构组件结构
- 更新导航栏标题为WEBSOFT,移除自定义导航样式
- 重构Hero区域样式,替换渐变背景和品牌展示组件
- 新增快速导航栏支持产品、能力、流程等功能跳转
- 实现产品矩阵展示企业官网、小程序、电商系统等六大产品
- 添加核心能力介绍包括SaaS多租户、私有化部署、模板插件市场
- 集成联系咨询功能和电话呼叫能力
- 优化分享消息内容显示站点名称和网宿软件信息
- 重构页面布局结构提升移动端用户体验
2026-02-03 08:44:08 +08:00

55 lines
1.7 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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'
}
]