const SubscribeBar = () => { const [montant, setMontant] = React.useState(1000); const fmt = (n) => new Intl.NumberFormat('fr-FR').format(n); return (
{/* Left */}

Investissez
dans Bridge Crédit.

Réservez votre allocation avant l'ouverture officielle de la collecte.

📅 Prendre rendez-vous avec l'équipe → 30 min · gratuit · sans engagement
{/* Right — subscription card */}
Collecte recherchée ● À venir
2 000 000 €
{/* Countdown */}
{[['06', 'jours'], ['23', 'heures'], ['49', 'min']].map(([v, l]) => (
{v}
{l}
))}
setMontant(Number(e.target.value) || 0)} style={{ flex: 1, background: 'transparent', border: 'none', outline: 'none', color: '#fff', fontSize: 18, fontWeight: 600, padding: '14px 0', fontFamily: 'inherit' }} />
Pré-souscrire maintenant → Tout investissement comporte un risque de perte en capital.
); }; window.SubscribeBar = SubscribeBar;