break roadmap into separate phase blocks with spacing
This commit is contained in:
+12
-5
@@ -1205,13 +1205,20 @@ ${giftCost > 0 ? `With me as your sponsor, I'm covering **$${giftCost}** to get
|
|||||||
|
|
||||||
Your full roadmap to $3,960/month:
|
Your full roadmap to $3,960/month:
|
||||||
|
|
||||||
${phases.filter(k => k !== '3xL7').map(k => {
|
${phases.filter(k => k !== '3xL7').map((k, i) => {
|
||||||
const p = HYBRIDS[k];
|
const p = HYBRIDS[k];
|
||||||
return `• ${p.label} — run ${p.label} for ${p.cycles} cycles (${p.months} months). Payout: $${p.payout.toFixed(2)}/cycle → you keep ~$${p.profit.toFixed(2)} each cycle. After all ${p.cycles} cycles, you have enough to unlock the next level.`;
|
return `**Phase ${i+1}: ${p.label}**
|
||||||
}).join('\n')}
|
Run for ${p.cycles} cycles (${p.months} months)
|
||||||
• **3× L7 Endgame** — all three L7 campaigns running at once. $9,720.00/cycle payout → ~$3,960.00/month passive.
|
Payout: $${p.payout.toFixed(2)}/cycle → you keep ~$${p.profit.toFixed(2)} each cycle
|
||||||
|
Then you have enough profit to unlock the next level up`;
|
||||||
|
}).join('\n\n')}
|
||||||
|
|
||||||
${selfCost > 0 ? `**Your total self-fund: $${selfCost}**${selfCost > giftCost ? ` (you cover $${(selfCost - giftCost).toLocaleString()} after sponsor's gift)` : ''}\n\n` : ''}Each phase funds the next one — you never need to put new money in after the start. Just run the cycles, stack the profits, and level up.
|
**Phase ${phases.filter(k => k !== '3xL7').length+1}: 3× L7 Endgame** 🎯
|
||||||
|
All three L7 campaigns running at once
|
||||||
|
$9,720.00/cycle payout → ~$3,960.00/month passive
|
||||||
|
This is the finish line
|
||||||
|
|
||||||
|
${selfCost > 0 ? `**Your total self-fund: $${selfCost}**${selfCost > giftCost ? ` (you cover $${(selfCost - giftCost).toLocaleString()} after sponsor's gift)` : ''}\n\n` : ''}Each phase funds the next — no new money needed after the start. Just run the cycles, stack the profits, and level up.
|
||||||
|
|
||||||
As a side note — I also earn 10% of everything you get paid through this system, so eventually I'll get my gift back. But that's not why I'm doing this. I genuinely just want to pay it forward and help you get started. You win, I win — we both win together.
|
As a side note — I also earn 10% of everything you get paid through this system, so eventually I'll get my gift back. But that's not why I'm doing this. I genuinely just want to pay it forward and help you get started. You win, I win — we both win together.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user