import { motion } from "framer-motion"; import { Upload, Cpu, Globe, CheckCircle } from "lucide-react"; const steps = [ { icon: Upload, title: "Upload Metadata", description: "Submit song details anonymously — no legal names needed." }, { icon: Cpu, title: "Verify Ownership", description: "Automatic digital provenance record for your music." }, { icon: Globe, title: "Distribute Globally", description: "Instantly delivered to 150+ stores worldwide." }, { icon: CheckCircle, title: "Get Paid Instantly", description: "Earnings available immediately, no waiting." }, ]; const HowItWorks = () => { return (

How It Works

Every part of distribution automated so you stay creative.

{/* Staggered two-column layout */}
{steps.map((step, i) => (
Step {i + 1}

{step.title}

{step.description}

))}
); }; export default HowItWorks;