diff --git a/src/components/sections/products-section.tsx b/src/components/sections/products-section.tsx index ebba9b7..e36444e 100644 --- a/src/components/sections/products-section.tsx +++ b/src/components/sections/products-section.tsx @@ -5,6 +5,7 @@ import { useInView } from 'framer-motion'; import { useRef } from 'react'; import { Card, CardContent, CardHeader, CardTitle, CardDescription } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; +import { Badge } from '@/components/ui/badge'; import { ArrowRight, Check, TrendingUp } from 'lucide-react'; import { PRODUCTS } from '@/lib/constants'; @@ -13,7 +14,7 @@ export function ProductsSection() { const isInView = useInView(ref, { once: true, margin: '-100px' }); return ( -
+
- + 产品服务 -

- 我们的产品 +

+ 我们的产品

-

+

自主研发的企业级产品,助力企业高效运营,实现数字化转型

@@ -40,51 +41,49 @@ export function ProductsSection() { animate={isInView ? { opacity: 1, y: 0 } : {}} transition={{ duration: 0.5, delay: 0.1 + idx * 0.1 }} > - + - + {product.category} - - {product.title} + + {product.title} - + {product.description} - {/* 核心功能 */}
-

核心功能

+

核心功能

{product.features.slice(0, 4).map((feature, idx) => ( - + {feature} ))}
- {/* 核心价值 */}
-

- +

+ 核心价值

    {product.benefits.map((benefit, idx) => ( -
  • - +
  • + {benefit}
  • ))}
- @@ -94,24 +93,29 @@ export function ProductsSection() { ))}
- {/* 底部CTA */} -
-

- 需要定制化解决方案? -

-

- 我们的专业团队可以根据您的业务需求,提供量身定制的产品开发和系统集成服务 -

- +
+
+
+
+
+
+

+ 需要定制化解决方案? +

+

+ 我们的专业团队可以根据您的业务需求,提供量身定制的产品开发和系统集成服务 +

+ +