RENEW 500HR - Single Month Option

Want to explore RENEW without full commitment? Learn one specific month's curriculum with professional-grade, immediately applicable training.


✓ Base Cost: $687.50 (one month of 8-month program)
✓ Interest (10%): $68.75
✓ Total Payment: $756.25 (lump sum only)
✓ Cost per hour: $8.46/hour
✓ Certification: Does not include full 500-hour credential

Stripe::Checkout::Session.create({ mode: 'payment', payment_method_types: ['card'], payment_method_types: ['card', 'affirm'], line_items: [{ price_data: { currency: 'usd', product_data: { name: 'T-shirt', }, # Make sure the total amount fits within Affirm's transaction amount limits unit_amount: 5000, }, quantity: 1, }], shipping_address_collection: { # Shipping address is optional but recommended to pass in # Specify which shipping countries Checkout should provide as options for shipping locations allowed_countries: ['US'], }, # If you already have the shipping address, provide it in payment_intent_data: # payment_intent_data: { # shipping: { # name: 'Jenny Rosen', # address: { # line1: '1234 Main Street', # city: 'San Francisco', # state: 'CA', # country: 'US', # postal_code: '94111', # }, # }, # }, success_url: 'https://example.com/success', cancel_url: 'https://example.com/cancel', })