'use client'; import { motion } from 'framer-motion'; import { ScrollReveal, StaggerReveal } from '@/components/ui/scroll-reveal'; import { CTAButton } from '@/components/ui/cta-button'; import { EASE_OUT } from '@/components/ui/page-decoration'; import { CheckCircle2 } from 'lucide-react'; interface MethodologyPhase { number?: number; title: string; subtitle?: string; description?: string; activities?: string[]; deliverables?: string[]; } interface MethodologyContentProps { data: Record | null; } export function MethodologyContent({ data }: MethodologyContentProps) { const heroSubtitle = data?.heroSubtitle || '方法论'; const heroTitle = data?.heroTitle || '从诊断到优化\n四阶段推进数字化转型'; const heroDescription = data?.heroDescription || ''; const phases: MethodologyPhase[] = Array.isArray(data?.phases) ? data.phases : []; return (
{/* Hero:品牌化定位,轻量 CTA */}
{heroSubtitle} {heroTitle} {heroDescription}
{/* 阶段骨架:四阶段 Cards,空态占位 */}

四阶段推进,步步可衡量

每个阶段都有明确的交付物与验证标准,确保转型过程可控、结果可量化。

{phases.length > 0 ? (
{phases.map((phase, idx) => (
{phase.number ?? idx + 1}

{phase.title}

{phase.subtitle && (

{phase.subtitle}

)} {phase.description && (

{phase.description}

)} {phase.activities?.length ? (

核心活动

    {phase.activities.map((activity, i) => (
  • {activity}
  • ))}
) : null} {phase.deliverables?.length ? (

交付物

    {phase.deliverables.map((deliverable, i) => (
  • {deliverable}
  • ))}
) : null}
))}
) : (

方法论内容即将发布

我们正在沉淀与首批客户共创过程中的方法论实践,完成后将在此呈现完整框架。

)}
{/* CTA:轻量导向服务与联系 */}

与方法论匹配的专业服务

我们的咨询服务贯穿方法论的每个阶段,从战略规划到落地实施全程陪伴。

了解我们的服务 联系我们
); }