'use client'; import { motion } from 'framer-motion'; import { ProductCard } from '@/components/ui/product-card'; import { GeometricDecoration } from '@/components/ui/brand-visuals'; import { PRODUCTS } from '@/lib/constants'; import { useReducedMotion } from '@/hooks/use-reduced-motion'; export function ProductMatrixSection() { const shouldReduceMotion = useReducedMotion(); return (

产品矩阵

6 款自研产品覆盖企业数字化全场景,目前全部研发中,欢迎提前了解规划

研发中 · 即将上线 {PRODUCTS.length} PRODUCTS
{PRODUCTS.map((product, index) => ( ))}
); }