refactor(products): 更新产品列表和描述信息
移除物联网和AI产品,新增内容管理系统 更新产品页面描述和联系按钮滚动功能
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user