rewrite plan preview as clean bullet text, no markdown tables
This commit is contained in:
+19
-63
@@ -1184,72 +1184,28 @@ function generatePlan() {
|
|||||||
|
|
||||||
updateSharedLinkBox();
|
updateSharedLinkBox();
|
||||||
|
|
||||||
// What sponsor covers
|
|
||||||
let giftSection = '';
|
|
||||||
if (giftCost > 0) {
|
|
||||||
giftSection = `## What Your Sponsor Covers
|
|
||||||
|
|
||||||
Your sponsor is covering **$${giftCost}** to get you started through Level ${giftLevel} (L${giftLevel === 1 ? '1 only' : `1-L${giftLevel}`}). You owe nothing for this — it's funded up front, and you keep 100% of your earnings.`;
|
|
||||||
} else {
|
|
||||||
giftSection = `## What Your Sponsor Covers
|
|
||||||
|
|
||||||
Your sponsor has not pre-funded any levels — you'll be building entirely on your own using the link below.`;
|
|
||||||
}
|
|
||||||
|
|
||||||
// What referral needs to do
|
|
||||||
let selfFundSection = '';
|
|
||||||
if (selfCost > 0) {
|
|
||||||
selfFundSection = `\n\n## What You Need to Do
|
|
||||||
|
|
||||||
To reach endgame (3× L7 campaigns earning ~$3,960/mo passive), you'll need to self-fund through **Level ${selfLevel}**:
|
|
||||||
|
|
||||||
**Your total self-fund: $${selfCost}**
|
|
||||||
${selfCost > giftCost ? `(You cover $${(selfCost - giftCost).toLocaleString()} beyond your sponsor's gift)` : ''}
|
|
||||||
|
|
||||||
### Your Payouts Per Cycle
|
|
||||||
Each ad campaign runs for ~19 days. Here's what you earn at each phase:
|
|
||||||
|
|
||||||
| Phase | Investment | Payout/Cycle | Net Profit |
|
|
||||||
|-------|:-:|:-:|:-:|
|
|
||||||
${phases.filter(k => k !== '3xL7').map(k => {
|
|
||||||
const p = HYBRIDS[k];
|
|
||||||
return `| ${p.label} | $${p.reinvest.toLocaleString()} | $${p.payout.toFixed(2)} | $${p.profit.toFixed(2)} |`;
|
|
||||||
}).join('\n')}
|
|
||||||
|
|
||||||
**Estimated time to 3× L7 endgame: ~${totalMonths} months**
|
|
||||||
`;
|
|
||||||
} else {
|
|
||||||
selfFundSection = `\n\n## What You Need to Do
|
|
||||||
|
|
||||||
Once you receive your gift, simply **click your ads daily** and reinvest your profits. Here's your path:
|
|
||||||
|
|
||||||
| Phase | Payout/Cycle | Net Profit/Cycle |
|
|
||||||
|-------|:-:|:-:|
|
|
||||||
${phases.filter(k => k !== '3xL7').map(k => {
|
|
||||||
const p = HYBRIDS[k];
|
|
||||||
return `| ${p.label} | $${p.payout.toFixed(2)} | $${p.profit.toFixed(2)} |`;
|
|
||||||
}).join('\n')}
|
|
||||||
|
|
||||||
Once you've accumulated enough profit, use it to activate the next level up. Rinse and repeat until you're running 3× L7 campaigns.
|
|
||||||
|
|
||||||
**Estimated time to 3× L7 endgame: ~${totalMonths} months**
|
|
||||||
`;
|
|
||||||
}
|
|
||||||
|
|
||||||
const plan = `📋 Your ClickBaitPays Plan
|
const plan = `📋 Your ClickBaitPays Plan
|
||||||
━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
||||||
${giftSection}
|
|
||||||
${selfFundSection}
|
|
||||||
|
|
||||||
\`\`\`
|
${giftCost > 0 ? `Your sponsor is covering **$${giftCost}** to get you started through Level ${giftLevel} (L${giftLevel === 1 ? '1 only' : `1-L${giftLevel}`}). You owe nothing for this — it's funded up front, and you keep 100% of your earnings.` : `Your sponsor hasn't pre-funded any levels — you'll be building entirely on your own using the link below.`}
|
||||||
📊 Quick Stats
|
|
||||||
Monthly at 3× L7: ~$3,960/mo passive
|
|
||||||
Reward per ad click: $0.48 - $13.50
|
|
||||||
Each campaign cycle: 19 days
|
|
||||||
Minimum daily clicks: 3-20 (depending on level)
|
|
||||||
\`\`\`
|
|
||||||
|
|
||||||
## Your Referral Link
|
Your path to $3,960/month:
|
||||||
|
|
||||||
|
${phases.filter(k => k !== '3xL7').map(k => {
|
||||||
|
const p = HYBRIDS[k];
|
||||||
|
return `• ${p.label} → $${p.payout.toFixed(2)}/cycle (net $${p.profit.toFixed(2)})`;
|
||||||
|
}).join('\n')}
|
||||||
|
|
||||||
|
${selfCost > 0 ? `**Your total self-fund: $${selfCost}**${selfCost > giftCost ? ` (you cover $${(selfCost - giftCost).toLocaleString()} after sponsor's gift)` : ''}\n\n` : ''}Once you've earned enough from one phase, use those profits to unlock the next level up. Rinse and repeat until you're running 3× L7 campaigns.
|
||||||
|
|
||||||
|
Estimated time to 3× L7 endgame: ~${totalMonths} months
|
||||||
|
|
||||||
|
Quick Stats
|
||||||
|
• Monthly at 3× L7: ~$3,960/mo passive
|
||||||
|
• Each campaign cycle: 19 days
|
||||||
|
• Min daily clicks: 3-20 (depending on level)
|
||||||
|
• Reward per ad click: $0.48 - $13.50
|
||||||
|
|
||||||
|
Your Referral Link
|
||||||
${refLink}
|
${refLink}
|
||||||
|
|
||||||
Use this link to sign up — it's how your sponsor tracks your progress. If you have questions, reach out to them directly.
|
Use this link to sign up — it's how your sponsor tracks your progress. If you have questions, reach out to them directly.
|
||||||
|
|||||||
Reference in New Issue
Block a user