top of page
hompage
SOAP - Edited.png

Homemade Soy Wax Tin Candles for Relaxation, Aromatherapy Candles, Home Decor

$22.35Price
Scents
Vanilla Bean
Comfort Spice
Sea Breeze
Honeysuckle
Eucalyptus Lavender Herb
Spiced Pumpkin Ginger
Fresh Balsam
Pink Grapefruit
Unscented
Quantity

Experience a cozy atmosphere with our beautifully crafted tin candles. Perfect for creating warmth and serenity in your home, each candle features delightful fragrances that elevate your space. Whether it's the invigorating Spa Retreat scent or the nostalgic Fresh Coffee aroma, these candles are ideal for relaxation after a long day or to set the mood for social gatherings. Perfect gifts for friends and family during the holiday season, housewarmings, or simply to treat yourself. Each candle fits seamlessly into your daily life, enhancing any occasion with their unique scents. Ideal for candle lovers and sustainability enthusiasts alike, they bring charm and a touch of nature into your home.



Product features


- Eco-friendly and non-toxic coconut soy wax blend


- Reusable tin vessel for decor


- Diverse scents including Evergreen and Mango Coconut


- Hand-poured in the USA with a cotton wick


- Multiple sizes and colors available



Care instructions


- Keep the burning candle within sight, and keep away from children and pets. Never burn the candle near flammable items. For best results, burn the candle for 3 - 4 hours in each lighting and trim the wick to 1/4" before lighting. Discontinue use with 1/2" of wax remaining.

    bottom of page
    import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.*; @RestController public class CheckoutController { @GetMapping("/checkout") public Map checkout( @RequestParam String products, @RequestParam(required = false) String coupon) { // Parse products Map productQuantities = new HashMap<>(); for (String productEntry : products.split(",")) { String[] parts = productEntry.split(":"); productQuantities.put( parts[0], // Product ID Integer.parseInt(parts[1]) // Quantity ); } // Build result Map result = new HashMap<>(); result.put("products", productQuantities); result.put("coupon", coupon != null ? coupon : "No coupon applied"); return result; } }