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; } }
top of page
New logo png_edited.png
Pink Peony Blossoms

Groups

Artistic plates

About Me

Hi I'm Hannah Wilson. I am the founder of The Holistic Mother.  Mom of three, and the hands behind all the one‑of‑a‑kind pieces here. I’ve always believed that creativity is a kind of healing, and I’m happiest when I’m turning something overlooked into something loved again. My work blends cottagecore and fairy‑heirloom vibes with timeless vintage energy. My pieces start their lives as vintage plates I rescue from thrift shops, second hand, and antique stores. I hand‑cut each piece, sand and grind the edges smooth, and then set it in a new home made of clay, silver, or stainless steel. Adding tiny details and crystals until it feels like a miniature portal you can wear. My goal is to create jewelry that feels like it could have been passed down from a beloved relative or found in a tiny shop on a trip you never forgot: magical, familiar, and completely unique.

  • Facebook - White Circle
  • Instagram - White Circle
  • YouTube - White Circle
  • Pinterest - White Circle
  • Facebook Social Icon
  • YouTube Social  Icon
  • Instagram

Newsletter Sign Up

Never miss an important update! Dont worry I wont spam! I generally send 1-2 Emails per month.

Name

Email

bottom of page