export default function HowItWorks() { const steps = [ { num: '01', title: 'Launch Your Economy', desc: 'Deploy your token, liquidity vault, and NFT collection contracts in a single transaction.' }, { num: '02', title: 'Distribute Tokens', desc: 'Share your tokens with fans. Every transfer includes a small tax that flows to the liquidity vault.' }, { num: '03', title: 'Whales Join Vault', desc: 'Large holders deposit tokens and base assets into the vault to earn rewards from taxes and royalties.' }, { num: '04', title: 'Mint & Trade NFTs', desc: 'Create exclusive NFT content. Royalties from secondary sales automatically flow back to the vault.' }, ]; return (

How It Works

From zero to a full creator economy in four steps

{steps.map((step) => (
{step.num}

{step.title}

{step.desc}

))}
); }