import React from 'react'; import { User, Share2, Cpu, CheckCircle, Scale } from 'lucide-react'; const HowItWorks: React.FC = () => { const steps = [ { icon: , label: "Persona Creation" }, { icon: , label: "Focus Group Construction" }, { icon: , label: "AI-driven Simulations" }, { icon: , label: "Result Generation" }, { icon: , label: "Automatic A/B Testing" }, ]; return ( How It Works From raw data to real understanding {/* Steps Navigation/Visual */} {steps.map((step, idx) => ( {step.icon} {step.label} ))} {/* Abstract Visualization */} {/* Radar/Network Graphic */} {/* Connecting Lines */} {/* Center to Top (in) */} {/* Center to Bottom Right (X) */} {/* Center to Bottom Left (Globe) */} {/* Center Node */} {/* Satellite Nodes */} in X ); }; const GlobeIcon = () => ( ); export default HowItWorks;