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