Shopping Cart (0)

Black Hoodie

Price:
$36.99
Select Sizes:
Select Size
Select Color:
Black
{{variant.name}}:
{{opt.name}}
{{opt.value ? '' : opt.name}}
{{opt.value ? '' : opt.name}}
Description

Clean, cozy, and effortlessly stylish, this classic Black hoodie is a must-have for any wardrobe.

  • Made from soft, high-quality fabric, it offers warmth and comfort for all-day wear.
  • Featuring a relaxed fit, a spacious front pocket, and an adjustable drawstring hood, this hoodie is perfect for layering or wearing on its own.
  • Ideal for casual outings, lounging, or adding a fresh touch to any outfit. Available in multiple sizes for the perfect fit!

Get in Touch

require 'stripe' require 'sinatra' # This is your test secret API key. Stripe.api_key = 'sk_test_51OmTRJL0LKp5ppAml1NQLiPHtLg128HMK5TZr85biCVYXloIH9AdCA5vMpVble0MpZKCanEIJBHAZmjMdtrnaQSN00JkJvIWsy' set :static, true set :port, 4242 YOUR_DOMAIN = 'http://localhost:4242' post '/create-checkout-session' do content_type 'application/json' session = Stripe::Checkout::Session.create({ line_items: [{ # Provide the exact Price ID (e.g. pr_1234) of the product you want to sell price: '{{PRICE_ID}}', quantity: 1, }], mode: 'payment', success_url: ceneprinters.com + '/success', cancel_url: ceneprinters.com + '/cancel', }) redirect session.url, 303 end