'use client'; import { SOLUTIONS } from '@/lib/constants/solutions'; import { PRODUCTS } from '@/lib/constants/products'; import { StaticLink } from '@/components/ui/static-link'; import { CheckCircle } from 'lucide-react'; import { InkReveal, FadeUp, FloatingElement, StaggerContainer, StaggerItem, InkCard, SealStamp, } from '@/lib/animations'; import { RippleButton } from '@/components/ui/ripple-button'; import { ScrollReveal, inkRevealVariants, slideInLeftVariants } from '@/components/ui/scroll-animations'; interface SolutionDetailClientProps { solutionId: string; } export function SolutionDetailClient({ solutionId }: SolutionDetailClientProps) { const solution = SOLUTIONS.find((s) => s.id === solutionId) || null; if (!solution) { return (

加载中...

); } return (
{/* Section 1: Hero */}
{solution.industry}

{solution.title}

{solution.subtitle}

{solution.description}

预约演示 获取定制方案
{/* Section 2: Challenges */}

行业痛点

您是否也面临这些挑战?

{solution.challenges.map((challenge, index) => (
{index + 1}

{challenge}

))}
{/* Section 3: Our Solutions */}

我们的解决方案

针对行业痛点,量身定制

{solution.solutions.map((item, index) => (

{item}

))}
{/* Section 4: Related Products */} {solution.relatedProducts.length > 0 && (

推荐产品

即将上市,敬请期待

{solution.relatedProducts.map((productId) => { const product = PRODUCTS.find((p) => p.id === productId); if (!product) {return null;} return (
{product.category}

{product.title}

{product.description}

); })}
)} {/* Section 6: CTA */}

准备好开启{solution.industry}数字化转型了吗?

我们的专家团队将为您量身定制专属解决方案

免费获取方案
); }