// Yomee — Push Notifications Screen // Fourth onboarding step. Value-prop screen with 3 feature cards + native dialog. // Uses OnboardingHeader from OnboardingShared.jsx; PrimaryButton from Shared.jsx /* global React, OnboardingHeader, PrimaryButton */ function PushNotificationsScreen({ onActivate, onSkip, dimmed }) { return (

No pierdas ni un
peso más

Activa las notificaciones y deja que Yomee te avise antes de que los intereses te cobren.

} title="Fechas de pago a tiempo" body="Te avisamos antes del corte para que nunca pagues de más." /> } title="Alertas de intereses y cargos" body="Conoce exactamente cuánto te cuesta esperar un día más." /> } title="Insights personalizados" body="Recomendaciones basadas en tu perfil financiero real." />
Activar notificaciones
); } function FeatureCard({ icon, title, body }) { return (
{icon}
{title}
{body}
); } function CheckIcon() { return ( ); } function ClockIcon() { return ( ); } function DiamondIcon() { return ( ); } function NativePushDialog({ onAllow, onDeny }) { return (
“Yomee” quiere enviarte notificaciones
Las notificaciones pueden incluir alertas, sonidos e iconos. Puedes configurarlas en Ajustes.
); } window.PushNotificationsScreen = PushNotificationsScreen; window.NativePushDialog = NativePushDialog; window.FeatureCard = FeatureCard; window.CheckIcon = CheckIcon; window.ClockIcon = ClockIcon; window.DiamondIcon = DiamondIcon;