/* global React, Eyebrow, Icon */ const { useState: useStateFaq } = React; const QA = [ { q: "How much can I actually make?", a: "Pays $1.00 per 1,000 views on the Rizz campaign. A clip that lands 50K views = $50. A clip that goes viral at 500K = $500. We've had clippers make over $1,200 in a single month — but most realistically clear $80–$300 their first month while they figure out the format.", }, { q: "When do I actually get paid?", a: "Payouts go out every Friday at 12:00 UTC. PayPal usually lands within minutes; bank transfers within 24 hours. Once your balance hits the $20 floor, you can request payout — or just let it auto-pay every Friday.", }, { q: "Why is there a minimum view threshold?", a: "Each clip needs to pass 1,000 views before it counts toward your earnings. This stops people view-botting tiny clips for fractions of a cent. Once a clip clears 1K it pays at the full $1.00/1K rate from view zero.", }, { q: "What if my clip gets taken down by TikTok?", a: "If it was taken down for copyright or community guidelines, the views before takedown still count — as long as the clip was live for at least 6 hours. Send us the URL in Discord and we'll verify the snapshot.", }, { q: "Can I post the same clip to multiple accounts?", a: "Up to 2 accounts per clip is fine. Posting the exact same edit to 5+ accounts triggers our duplicate filter and only the highest-view version will count. Better strategy: re-edit with a different hook for each account.", }, { q: "Do I need to show my face on camera?", a: "No. The whole point of the Rizz format is screen-recording the app + text overlays. Most of our top clippers never show their face. You can use a stock voiceover, AI voice, or just text + sound.", }, { q: "I'm new with 0 followers. Can I still join?", a: "Yes. Most of our clippers started from 0. The TikTok algorithm doesn't care about your follower count — it cares about hook strength and watch-through. A new account can hit 100K views on its third post if the hook lands.", }, { q: "How do you verify view counts?", a: "Our system polls each submitted URL every 30 minutes against TikTok / Instagram / YouTube's public APIs and stores the snapshot. You can see your view-count history live in the dashboard. We pay on platform-reported views, not estimates.", }, { q: "What if my English isn't perfect?", a: "Doesn't matter. Most viral Rizz clips have zero spoken dialogue — just text overlays and a trending sound. We have clippers in Lagos, Manila, Mumbai, Karachi, and Cairo crushing it. The brief, sounds, and caption templates are all provided.", }, { q: "What if I have a question that's not here?", a: "Drop it in the campaign Discord. Kevis or one of the campaign managers replies within 1–2 hours during business hours, usually faster. We'd rather you ask a 'dumb' question than waste effort posting wrong.", }, ]; function Faq(){ const [open, setOpen] = useStateFaq(0); return (
FAQ

Everything you'll wonder
before you start.

{QA.map((item,i) => { const isOpen = open === i; return (
{isOpen && (
{item.a}
)}
); })}
Still have questions?
The campaign Discord is the fastest way — replies within 1–2 hours.
Join Discord
); } window.Faq = Faq;