refactor(products): 更新产品列表和描述信息

移除物联网和AI产品,新增内容管理系统
更新产品页面描述和联系按钮滚动功能
This commit is contained in:
张翔
2026-02-26 15:52:04 +08:00
parent fecbfd1990
commit 7f450dff87
4 changed files with 28 additions and 31 deletions
+11 -2
View File
@@ -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>