'use client'; import { motion } from 'framer-motion'; import type { CaseStudy } from '@/lib/constants/products'; interface CaseStudyCardProps { study: CaseStudy; index: number; } export function CaseStudyCard({ study, index }: CaseStudyCardProps) { return (
{study.industry} {study.client}

挑战

{study.challenge}

解决方案

{study.solution}

{study.result}

); }