'use client'; import { motion } from 'framer-motion'; import { useInView } from 'framer-motion'; import { useRef } from 'react'; import { StaticLink } from '@/components/ui/static-link'; import { Card, CardContent, CardHeader, CardTitle, CardDescription } from '@/components/ui/card'; import { RippleButton } from '@/components/ui/ripple-button'; import { InkCard } from '@/lib/animations'; import { Badge } from '@/components/ui/badge'; import { ArrowRight, Check, TrendingUp } from 'lucide-react'; import { PRODUCTS } from '@/lib/constants'; export function ProductsSection() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: '-100px' }); return (

我们的产品

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

{PRODUCTS.length > 0 ? (
{PRODUCTS.map((product) => ( {product.category} {product.title} {product.description}

核心功能

{product.features.slice(0, 4).map((feature, idx) => ( {feature} ))}

核心价值

    {product.benefits.map((benefit, idx) => (
  • {benefit}
  • ))}
了解详情
))}
) : (

暂无产品信息

)}

需要定制化解决方案?

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

联系我们
); }