// Telas hi-fi 11-15: Bíblia Cinematográfica, Talentos, Afiliados, Planos, Botão Viral const T9 = window.TOKENS; // ─────────── 11. BÍBLIA CINEMATOGRÁFICA function ScreenCinema({ go }) { return ( go('home')} />
Êxodo 14 · Cena 3 de 8
{Array.from({ length: 14 }).map((_, i) => (
))}
"O Senhor pelejará por vós, e vós vos calareis."
1:243:42
{[1, 2, 3, 4, 5, 6, 7, 8].map(n => (
{n}
))}
); } // ─────────── 12. TALENTOS function ScreenTalents({ go }) { return ( go('home')} />
Saldo
4.500
+250 esta semana
Como ganhar
{[ { t: 'Oração diária', v: '+5', done: true }, { t: 'Etapa de promessa', v: '+10', done: false }, { t: 'Convidar amigo', v: '+25', done: false }, ].map((it, i, arr) => (
{it.done ? '✓' : ''}
{it.t}
{it.v}
))}
Trocar por
{[ { t: 'Créditos IA', c: '50 talentos' }, { t: 'Voz premium', c: '120 talentos' }, ].map((p, i) => (
{p.t}
{p.c}
))}
); } // ─────────── 13. AFILIADOS function ScreenAffiliate({ go }) { return ( go('home')} />
Saldo
Nível Ouro
R$ 4.500,00
Meta 500 / 1.000
Ganhos mensais
Seu link
divineai.app/r/mariana
Kit de Guerra
Posts, vídeos e cupom personalizado PASTORANDRE
); } // ─────────── 14. PLANOS function ScreenPlans({ go }) { const plans = [ { n: 'Caminho', s: 'Grátis', p: 'R$ 0', current: true }, { n: 'Aliança', s: 'Premium', p: 'R$ 29', highlight: true }, { n: 'Mensageiro', s: 'Creator Pro', p: 'R$ 79' }, { n: 'Reino', s: 'Church Pro', p: 'R$ 199' }, ]; return ( go('home')} />
{plans.map((p, i) => (
{p.s}
{p.highlight &&
★ recomendado
} {p.current &&
atual
}
{p.n}
{p.p}/mês
))}
7 dias de garantia · cancele quando quiser
); } // ─────────── 15. BOTÃO VIRAL function ScreenViral({ go }) { return ( go('home')} />
{Array.from({ length: 22 }).map((_, i) => (
))}
Provérbios 3:5
"Confia no Senhor de todo o teu coração."
divineai · para mariana
Nova palavra Compartilhar
{['stories', 'whats', 'feed', 'baixar'].map(s => (
{s}
))}
); } Object.assign(window, { ScreenCinema, ScreenTalents, ScreenAffiliate, ScreenPlans, ScreenViral });