diff --git a/public/chat.js b/public/chat.js index ead72e2..f3423bd 100644 --- a/public/chat.js +++ b/public/chat.js @@ -80,7 +80,7 @@ {k:['seed phrase','secret recovery','recovery phrase','private key','12 words','passphrase'], a:()=>`Never share your Secret Recovery Phrase or private keys with anyone — not this site, not a sponsor, not "support". Anyone asking for it is trying to steal your funds. MetaMask will never ask for it either, except when you restore a wallet yourself.`}, {k:['promote','promo','promo tools','tools','swipe','swipes','email swipe','banners','banner','graphics','marketing','share this','invite people','video clips','how do i share','social post','facebook post','twitter','my voice','branded voice'], - a:()=>`Grab share-ready promo tools at rmcircle.team/tools — best way in is the gold Promo Tools button on your dashboard: arriving from there, every post and swipe is automatically personalized with YOUR invite link, so you copy and share as-is. You get promo videos (tap Copy link to share), copy-paste social posts for X & Facebook, email & message swipes (short and long), a downloadable banner kit in every standard size, a library of official RM Circle videos and graphics from the creators (vertical clips ready for Reels/TikTok/Shorts), and a builder for your personal invite link. Want it all in your own words? Learn to train an AI on your writing at mybrandedvoice.com. Keep it honest — point people to the videos and the contract review, never promise income.`}, + a:()=>`Grab share-ready promo tools at rmcircle.team/tools — best way in is the gold Promo Tools button on your dashboard: arriving from there, every post and swipe is automatically personalized with YOUR invite link, so you copy and share as-is. You get promo videos (tap Copy link to share), a Promote-on-Telegram section (your Telegram-native Mini App invite links that open the whole tour inside Telegram, paste-ready group posts and DMs, and the connect-your-team message to forward), copy-paste social posts for X & Facebook, email & message swipes (short and long), a downloadable banner kit in every standard size, a library of official RM Circle videos and graphics from the creators (vertical clips ready for Reels/TikTok/Shorts), and a builder for your personal invite link. Want it all in your own words? Learn to train an AI on your writing at mybrandedvoice.com. Keep it honest — point people to the videos and the contract review, never promise income.`}, {k:['telegram','group','chat','human','support','contact','talk','someone','admin','help me'], a:()=>`For live help from the team, join the Telegram group: ${tgLink()}. Tell them where you're stuck and someone will walk you through it.`}, {k:['after join','next','what happens','confirmed','joined','i bought','i am in'], diff --git a/public/tools.html b/public/tools.html index f218292..5b0d62c 100644 --- a/public/tools.html +++ b/public/tools.html @@ -41,6 +41,77 @@ https://rmcircle.team?v=pocket
https://rmcircle.team/join/…Tip: always confirm the current sponsor on the Getting Started page before someone buys — placements rotate.
Our team has a Telegram Mini App: tap a special t.me link and the whole tour — your invite page, the videos, the join flow — opens instantly inside Telegram. No browser, no typing a website. It's the best link to use anywhere on Telegram: groups, channels, DMs, forwards. Enter your ID above and everything below is personalized with your links.
+ +📱 NEW: our team's Mini App — your dashboard right inside Telegram + +One-time setup (2 minutes): +1. Open your dashboard: https://rmcircle.team/my → enter your member ID +2. Scroll to Messages → sign in with your wallet (a free signature — it can't move funds) +3. Tap "Connect Telegram" → it opens our team bot → tap START + +From then on: +💰 Instant DM the moment your position catches a payment +📊 Tap the ☰ menu button in the bot → your live dashboard opens, no login ever +🔗 Type "links" → all your invite links, including your Telegram-native one that opens the whole tour INSIDE Telegram +🧭 Type "coach" → who in your team needs a hand this week + +Set yours up now, then forward this message to your two so they can do the same. 🔁
This is the message to drop in your team chat — it teaches your people to connect AND to pass it on. Note: the message above stays generic on purpose (everyone's dashboard link is the same; the bot knows who they are once linked).
Moving invite (routes to whoever needs help next in your leg): +https://t.me/RMCircleBot/join?startapp=YOURID + +Angle-matched — the landing page continues that video's hook: +💸 Pocket Change: https://t.me/RMCircleBot/join?startapp=YOURID_pocket +📱 Your Phone: https://t.me/RMCircleBot/join?startapp=YOURID_phone +🙋 I Don't Know Anyone: https://t.me/RMCircleBot/join?startapp=YOURID_two +🪦 Side Hustle Graveyard: https://t.me/RMCircleBot/join?startapp=YOURID_graveyard
💡 Tap your own link to preview exactly what your prospect sees — because you're a linked member, the app shows you the prospect view instead of your dashboard. Pair each angle link with its matching video from the clips above.
Ever tapped a link in Telegram and had the whole thing just… open? No website, no sign-up form, no app store? + +Our team build runs on a public smart contract — every payment goes person-to-person, and you can verify all of it on-chain. The tour takes 2 minutes and opens right here in Telegram: + +👉 https://t.me/RMCircleBot/join?startapp=YOURID + +Questions? Ask me — I'm building in this team myself.
Hey — quick one. You know that crypto team project I've been building? The whole thing opens right inside Telegram now. Tap this and you'll see exactly how it works in about 2 minutes: + +https://t.me/RMCircleBot/join?startapp=YOURID + +Nothing to install, no sign-up. If it's not for you, zero worries — I just wanted you to actually see it instead of me explaining badly. 🙂
Copy-paste ready for X/Twitter, Facebook, or anywhere. Tap Copy, tweak a word or two so it sounds like you, and post. Swap in your personal invite link where it fits.
diff --git a/public/tools.js b/public/tools.js index aafe5c3..7fdd570 100644 --- a/public/tools.js +++ b/public/tools.js @@ -18,16 +18,23 @@ // in both the copy payloads and the visible previews. ID comes from ?id= // (dashboard hand-off), then localStorage, then the "Your link" box. const BARE=/https:\/\/rmcircle\.team(?![\w./-])/g; + // YOURID marks Telegram Mini App links (t.me/...?startapp=YOURID[_angle]). + function fill(text,mine,id){ + let out=text; + if(mine)out=out.replace(BARE,mine); + if(id)out=out.replace(/YOURID/g,id); + return out; + } function personalize(){ const id=(idIn&&idIn.value||'').replace(/\D/g,'').slice(0,15); const mine=id?`https://rmcircle.team/join/${id}`:null; document.querySelectorAll('.copy-btn').forEach(b=>{ if(b.dataset.orig===undefined)b.dataset.orig=b.getAttribute('data-copy')||''; - b.setAttribute('data-copy', mine?b.dataset.orig.replace(BARE,mine):b.dataset.orig); + b.setAttribute('data-copy', fill(b.dataset.orig,mine,id)); }); document.querySelectorAll('pre.swipe').forEach(p=>{ if(p.dataset.orig===undefined)p.dataset.orig=p.textContent; - p.textContent= mine?p.dataset.orig.replace(BARE,mine):p.dataset.orig; + p.textContent=fill(p.dataset.orig,mine,id); }); const note=document.getElementById('personalNote'); if(note){ diff --git a/server.js b/server.js index 99d7696..428dc29 100644 --- a/server.js +++ b/server.js @@ -48,7 +48,7 @@ FACTS: - MEMBER DASHBOARD & ALERTS: each member has a live dashboard at https://rmcircle.team/my (enter your ID) showing position, team, payments, pipeline (incoming money forming below), a team-depth summary (members per generation below you and which level's upgrade each generation pays you at), a "Coach Your Team" panel (who in YOUR leg needs a nudge — qualified-but-not-upgraded members sitting on entry rewards, members about to miss forming payments, members one direct from qualifying), spillover tags, and qualification badges. Members can turn on opt-in EMAIL ALERTS there (notified when paid, and when they need to upgrade to catch incoming pay). A member's personal invite page to share is https://rmcircle.team/join/