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

Hello!

My name is Hannah Wilson.

Picture Of Hannah Wilson. The Holistic Mother

I was born and raised in Austin, TX.  I founded The Holistic Mother back in 2014.  I am now a 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. 

Follow me on instagram for more @TheHolisticMother

Lets Stay Connected!

  • Instagram
  • Facebook Social Icon
  • YouTube Social  Icon
  • 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