'use client'; import { useRef } from 'react'; import { motion } from 'framer-motion'; import { ScrollReveal, StaggerReveal } from '@/components/ui/scroll-reveal'; import { Button } from '@/components/ui/button'; import { ArrowRight, Factory, ShoppingCart, Heart, GraduationCap } from 'lucide-react'; import { cn } from '@/lib/utils'; import { SOLUTIONS, type Solution } from '@/lib/constants/solutions'; import { PRODUCTS } from '@/lib/constants/products'; const EASE_OUT = [0.22, 1, 0.36, 1] as const; const INDUSTRY_ICONS: Record = { 制造业: , 零售业: , 医疗: , 教育: , }; function GrainOverlay() { return (
); } function SectionLabel({ children, className = '' }: { children: React.ReactNode; className?: string }) { return (
{children}
); } function HeroSection() { const containerRef = useRef(null); return (
Industry Solutions
深耕行业场景的
解决方案
端到端交付,推荐套装组合 + 配套服务包。 基于自研产品矩阵,为制造业、零售业、教育、医疗等行业量身定制最佳实践。
4+
行业覆盖
端到
交付模式
定制
方案特点
); } function SolutionsGridSection() { return (
Industry Expertise

行业解决方案

每个方案都明确推荐产品组合和服务包,确保落地效果

{SOLUTIONS.map((solution) => ( ))}
); } function SolutionCard({ solution }: { solution: Solution }) { const industryIcon = INDUSTRY_ICONS[solution.industry] || ; return (