refactor(products): 更新产品列表和描述信息
移除物联网和AI产品,新增内容管理系统 更新产品页面描述和联系按钮滚动功能
This commit is contained in:
@@ -327,10 +327,8 @@ class TestDataGenerator:
|
||||
products = [
|
||||
{"name": "睿新ERP管理系统", "category": "企业软件"},
|
||||
{"name": "睿新客户关系管理系统", "category": "企业软件"},
|
||||
{"name": "睿新协同办公平台", "category": "企业软件"},
|
||||
{"name": "睿新商业智能平台", "category": "数据产品"},
|
||||
{"name": "睿新物联网平台", "category": "物联网"},
|
||||
{"name": "睿新AI智能应用套件", "category": "人工智能"}
|
||||
{"name": "睿新内容管理系统", "category": "企业软件"},
|
||||
{"name": "睿新商业智能平台", "category": "数据产品"}
|
||||
]
|
||||
product = random.choice(products)
|
||||
return {
|
||||
|
||||
@@ -6,7 +6,7 @@ import { ArrowRight, Check, TrendingUp } from 'lucide-react';
|
||||
|
||||
export const metadata = {
|
||||
title: `产品服务 - ${COMPANY_INFO.name}`,
|
||||
description: `了解${COMPANY_INFO.name}的产品和服务解决方案,包括ERP、CRM、OA、BI、物联网和AI智能应用`,
|
||||
description: `了解${COMPANY_INFO.name}的产品和服务解决方案,包括ERP、客户关系管理、内容管理系统、商业智能平台`,
|
||||
};
|
||||
|
||||
export default function ProductsPage() {
|
||||
@@ -89,7 +89,16 @@ export default function ProductsPage() {
|
||||
<p className="text-gray-600 mb-8 max-w-2xl mx-auto">
|
||||
我们的专业团队可以根据您的业务需求,提供量身定制的产品开发和系统集成服务
|
||||
</p>
|
||||
<Button size="lg" className="bg-black text-white hover:bg-gray-800">
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-black text-white hover:bg-gray-800"
|
||||
onClick={() => {
|
||||
const element = document.getElementById('contact');
|
||||
if (element) {
|
||||
element.scrollIntoView({ behavior: 'smooth' });
|
||||
}
|
||||
}}
|
||||
>
|
||||
联系我们
|
||||
<ArrowRight className="ml-2 w-4 h-4" />
|
||||
</Button>
|
||||
|
||||
@@ -110,7 +110,15 @@ export function ProductsSection() {
|
||||
<p className="text-[#718096] mb-8 max-w-2xl mx-auto">
|
||||
我们的专业团队可以根据您的业务需求,提供量身定制的产品开发和系统集成服务
|
||||
</p>
|
||||
<Button size="lg">
|
||||
<Button
|
||||
size="lg"
|
||||
onClick={() => {
|
||||
const element = document.getElementById('contact');
|
||||
if (element) {
|
||||
element.scrollIntoView({ behavior: 'smooth' });
|
||||
}
|
||||
}}
|
||||
>
|
||||
联系我们
|
||||
<ArrowRight className="ml-2 w-4 h-4" />
|
||||
</Button>
|
||||
|
||||
+6
-24
@@ -78,13 +78,13 @@ export const PRODUCTS = [
|
||||
benefits: ['销售转化率提升25%', '客户满意度提升40%', '销售周期缩短30%'],
|
||||
},
|
||||
{
|
||||
id: 'oa',
|
||||
title: '睿新协同办公平台',
|
||||
description: '一站式企业协同办公解决方案,提供流程审批、文档管理、日程安排、即时通讯等功能,提升团队协作效率。',
|
||||
image: '/images/products/oa.jpg',
|
||||
id: 'cms',
|
||||
title: '睿新内容管理系统',
|
||||
description: '灵活易用的企业级内容管理平台,支持多站点管理、内容发布、权限控制,助力企业高效管理各类数字内容。',
|
||||
image: '/images/products/cms.jpg',
|
||||
category: '企业软件',
|
||||
features: ['流程审批', '文档管理', '日程管理', '即时通讯', '任务协作', '移动办公'],
|
||||
benefits: ['审批效率提升50%', '纸质文档减少80%', '跨部门协作更顺畅'],
|
||||
features: ['内容编辑', '多站点管理', '权限控制', '版本管理', '内容发布', 'SEO优化'],
|
||||
benefits: ['内容发布效率提升50%', '管理成本降低40%', '支持多终端访问'],
|
||||
},
|
||||
{
|
||||
id: 'bi',
|
||||
@@ -95,24 +95,6 @@ export const PRODUCTS = [
|
||||
features: ['数据整合', '可视化报表', '自助分析', '实时监控', '智能预警', '移动看板'],
|
||||
benefits: ['决策效率提升60%', '数据准备时间减少70%', '发现隐藏业务洞察'],
|
||||
},
|
||||
{
|
||||
id: 'iot',
|
||||
title: '睿新物联网平台',
|
||||
description: '设备接入、数据采集、远程监控的一站式物联网解决方案,支持海量设备连接,助力企业实现智能制造。',
|
||||
image: '/images/products/iot.jpg',
|
||||
category: '物联网',
|
||||
features: ['设备接入', '数据采集', '远程监控', '规则引擎', '设备管理', '数据分析'],
|
||||
benefits: ['设备利用率提升35%', '故障响应时间缩短60%', '运维成本降低40%'],
|
||||
},
|
||||
{
|
||||
id: 'ai',
|
||||
title: '睿新AI智能应用套件',
|
||||
description: '基于人工智能技术的智能应用集合,包括智能客服、图像识别、智能推荐等功能,为企业注入AI动力。',
|
||||
image: '/images/products/ai.jpg',
|
||||
category: '人工智能',
|
||||
features: ['智能客服', '图像识别', '语音识别', '智能推荐', '文本分析', '预测分析'],
|
||||
benefits: ['客服成本降低50%', '识别准确率达98%', '用户体验显著提升'],
|
||||
},
|
||||
] as const;
|
||||
|
||||
// News Data
|
||||
|
||||
Reference in New Issue
Block a user