diff --git a/public/assets/join.js b/public/assets/join.js index 1d68193..3b0910e 100644 --- a/public/assets/join.js +++ b/public/assets/join.js @@ -5,15 +5,27 @@ (function () { const $ = id => document.getElementById(id); const ANGLES = { - instant: { eyebrow: 'Same-transaction payouts', h: 'Paid before the page reloads.', lead: 'What if your commission landed before the thank-you page finished loading? On InstantAdPay that is not a metaphor. A smart contract on Polygon splits every ad package the moment it sells.' }, - adspend: { eyebrow: 'For marketers who buy traffic', h: 'You were buying ads anyway.', lead: 'Every ad dollar you ever spent went one direction: out. Here the ad spend in your line pays you, in the same transaction, on a public ledger. Seven formats, dwell-timed views, packages from $5.' }, - free: { eyebrow: 'Costs nothing to try', h: 'Watch first. Spend never.', lead: 'Join free, view a few ads, earn credits, and run your first campaign for zero dollars. Upgrade only if you want more reach.' }, - ledger: { eyebrow: 'No back office', h: 'No back office. No payday.', lead: 'Your last program paid you on the 15th, if it paid you. Here every payout is a public transaction on Polygon you can read yourself, and nothing is ever held.' }, - two: { eyebrow: 'The referral side, exactly as coded', h: 'Two buyers open level two.', lead: 'Every direct buyer pays you 50 percent from their first package. Two qualifying buyers open level two, five open level three. Written as constants in a verified contract.' } + instant: { eyebrow: 'Same-transaction payouts', h: 'Paid before the page reloads.', lead: 'What if your commission landed before the thank-you page finished loading? On InstantAdPay that is not a metaphor. A smart contract on Polygon splits every ad package the moment it sells.', + points: ['A verified contract splits every package in the same transaction it sells: 50 percent to the sponsor, 20 and 10 up the line, 20 to the platform.', 'It lands in your own wallet in seconds. There is no balance to withdraw because nothing is ever held.', 'Every payment is public on Polygonscan, so you can check the claim before you spend a dollar.'] }, + adspend: { eyebrow: 'For marketers who buy traffic', h: 'You were buying ads anyway.', lead: 'Every ad dollar you ever spent went one direction: out. Here the ad spend in your line pays you, in the same transaction, on a public ledger. Seven formats, dwell-timed views, packages from $5.', + points: ['Seven formats: banners, text ads, login ads, solo ads to member inboxes, video, featured links and verified visits.', 'Views are timed on the server, so a real person saw your ad. Banners and text also run across a partner ad network.', 'When anyone in your line buys ads, the contract pays you in that same transaction.'] }, + free: { eyebrow: 'Costs nothing to try', h: 'Watch first. Spend never.', lead: 'Join free, view a few ads, earn credits, and run your first campaign for zero dollars. Upgrade only if you want more reach.', + points: ['Join with just an email. No password, no wallet today.', 'View a few ads each day and earn credits you can spend on your own banner or text campaign.', 'Buy a package only if you want more reach. They start at $5, and every payout on them is public.'] }, + ledger: { eyebrow: 'No back office', h: 'No back office. No payday.', lead: 'Your last program paid you on the 15th, if it paid you. Here every payout is a public transaction on Polygon you can read yourself, and nothing is ever held.', + points: ['Every payout is a public transaction on Polygon. Click it, read it, verify it yourself.', 'The contract holds zero balance. It splits and sends in the same transaction, with no pause switch and no upgrade path.', 'No back office means nobody can delay, reverse or review your commission.'] }, + two: { eyebrow: 'The referral side, exactly as coded', h: 'Two buyers open level two.', lead: 'Every direct buyer pays you 50 percent from their first package. Two qualifying buyers open level two, five open level three. Written as constants in a verified contract.', + points: ['Every direct buyer pays you 50 percent from their very first package.', 'Two qualifying buyers open level two at 20 percent. Five open level three at 10 percent. Constants in a verified contract.', 'Until a level opens, its share climbs to the next qualified member above, so the plan rewards the people who build.'] } }; const v = new URLSearchParams(location.search).get('v'); const a = v && ANGLES[v]; - if (a) { $('jnEyebrow').textContent = '· ' + a.eyebrow; $('jnHead').innerHTML = a.h; $('jnLead').textContent = a.lead; } + if (a) { + $('jnEyebrow').textContent = '· ' + a.eyebrow; $('jnHead').innerHTML = a.h; $('jnLead').textContent = a.lead; + // the matching hook video + this angle's three points replace the worked example + const VID = 'https://coolify-saasytop.nyc3.digitaloceanspaces.com/promo/'; + const vid = $('jnVideo'); vid.src = VID + v + '.mp4'; vid.poster = VID + v + '.jpg'; + $('jnPoints').innerHTML = (a.points || []).map(t => '
  • ' + t.replace(/[&<>]/g, c => ({ '&': '&', '<': '<', '>': '>' }[c])) + '
  • ').join(''); + $('jnMock').hidden = true; $('jnAngle').hidden = false; + } async function api(path, body) { const r = await (await fetch(path, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body || {}) })).json(); diff --git a/public/join.html b/public/join.html index 1a59171..84ba045 100644 --- a/public/join.html +++ b/public/join.html @@ -19,6 +19,10 @@ .jn-hero h1 em{font-style:normal;color:var(--mint)} .jn-hero p.lead{margin:0 0 12px;text-align:left;max-width:620px;font-size:15.5px} .jn-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:22px;align-items:start;margin-top:4px} + #jnVideo{width:100%;aspect-ratio:16/9;display:block;border-radius:16px;border:1px solid var(--line-strong);background:#000} + .jn-points{list-style:none;margin:14px 0 0;padding:0;display:flex;flex-direction:column;gap:10px} + .jn-points li{position:relative;padding-left:26px;font-size:15px;line-height:1.45} + .jn-points li::before{content:"✓";position:absolute;left:0;top:0;color:var(--mint);font-weight:800} @media(max-width:860px){.jn-grid{grid-template-columns:1fr}} .jn-cap{border-color:var(--mint);box-shadow:0 0 60px rgba(67,232,195,.12);position:sticky;top:18px} @media(max-width:860px){.jn-cap{position:static}} @@ -68,6 +72,11 @@
    + +
    instantadpay.com/ledger · worked example
    @@ -79,6 +88,7 @@
    ⭐ member #3 now has 2 qualifying buyerslevel 2 ✓
    +

    One purchase, one transaction, four payments. Open the real ledger →

    @@ -129,6 +139,6 @@
    - +