// United Pakete Page — alles kostenlos & open function UnitedPaketePage() { const [t, setTweak] = window.useTweaks(window.SHARED_DEFAULTS); const theme = window.useTheme(t); const { c, orange, glow, pad } = theme; const [, , tl] = window.useLang(); const packages = [ { name: 'Starter', tag: tl('EINSTIEG', 'ENTRY'), desc: tl('Für Gemeinden, die United kennenlernen wollen — eine Altersgruppe deiner Wahl.', 'For churches that want to discover United — one age group of your choice.'), features: [ tl('Curriculum Sample (4 Wochen)', 'Curriculum Sample (4 Weeks)'), tl('Eine Altersgruppe', 'One age group'), tl('Community Forum Zugang', 'Community Forum Access'), tl('Quartals-Update per E-Mail', 'Quarterly update by email'), ], cta: tl('Starter anfragen', 'Inquire Starter'), }, { name: 'Church', tag: tl('EMPFOHLEN', 'RECOMMENDED'), featured: true, desc: tl('Volles Paket für Gemeinden, die alle vier Altersgruppen aktiv begleiten.', 'Full package for churches actively accompanying all four age groups.'), features: [ tl('Alle Altersgruppen (Minis–Youth)', 'All age groups (Minis–Youth)'), tl('Komplette Curricula (52 Wochen)', 'Complete curricula (52 weeks)'), tl('Leiter-Trainings (4× pro Jahr)', 'Leader trainings (4× per year)'), tl('Direkter Coaching-Kanal', 'Direct coaching channel'), tl('Regio-Treffen', 'Regional meetings'), tl('Custom Adaption Support', 'Custom adaptation support'), ], cta: tl('Church Paket anfragen', 'Inquire Church Package'), }, { name: 'Network', tag: tl('PARTNER', 'PARTNER'), desc: tl('Für Verbünde, Bewegungen und Multi-Site-Gemeinden.', 'For networks, movements and multi-site churches.'), features: [ tl('Alles aus Church', 'Everything from Church'), tl('Multi-Standort-Support', 'Multi-location support'), tl('White-Label Option', 'White-label option'), tl('Strategie-Workshops', 'Strategy workshops'), tl('Quartals-Visite', 'Quarterly visit'), tl('Co-Development Resourcen', 'Co-development resources'), ], cta: tl('Partner-Gespräch buchen', 'Book partner call'), }, ]; const comparisonRows = [ [tl('Curriculum (Wochen)', 'Curriculum (weeks)'), '4', '52', '52'], [tl('Altersgruppen', 'Age groups'), '1', '4', '4'], [tl('Leiter-Trainings', 'Leader trainings'), '—', tl('4× / Jahr', '4× / year'), tl('4× + Workshops', '4× + Workshops')], [tl('Coaching', 'Coaching'), 'Forum', tl('Direkt', 'Direct'), tl('Quartalsbesuch', 'Quarterly visit')], [tl('Multi-Site Support', 'Multi-site support'), '—', '—', '✓'], [tl('White-Label', 'White-label'), '—', '—', '✓'], ]; return (
setTweak('darkMode', v)} /> {/* PROMISE BANNER */}
{tl('UNSER VERSPRECHEN', 'OUR PROMISE')}

United {tl('ist und bleibt', 'is and remains')} {tl('kostenlos.', 'free.')}

{tl('Keine Lizenzkosten. Keine versteckten Gebühren. Kein Lock-in. Nur Resourcen, die wirken.', 'No licensing costs. No hidden fees. No lock-in. Just resources that work.')}

{/* PACKAGES */}
{packages.map((p, i) => (
{p.tag} 0{i + 1} / 03

{p.name}

{tl('Kostenlos', 'Free')}

{p.desc}

{p.features.map((f) => (
+ {f}
))}
{p.cta} →
))}
{/* COMPARISON */}

{tl('Wofür entscheidest du dich?', 'What will you choose?')}

{tl('Feature', 'Feature')} Starter Church Network
{comparisonRows.map((row, i) => (
{row[0]} {row[1]} {row[2]} {row[3]}
))}
{/* CTA */}

{tl('Unsicher, was passt?', 'Not sure what fits?')}

{tl('15 Minuten Gespräch — wir finden gemeinsam das richtige Paket für deine Gemeinde.', '15-minute call — we\'ll find the right package for your church together.')}

{tl('Beratungstermin buchen', 'Book a consultation')} →
); } window.UnitedPaketePage = UnitedPaketePage;