top of page

CUPCAKES NOT INCLUDED :)

Imagine the delight on your loved one's face when they see their own edible photo cutouts adorning their birthday cake! Inspired by the joy of celebrating special moments with family, our Magical Family Faces - Edible Custom Cutouts are the perfect addition to any family gathering. Crafted with care, these personalized cutouts are made from high-quality, food-safe materials that are easy to apply to cakes, cupcakes, or other party treats.

☆ Shelf Life ☆
The toppers last 3 months inside the bag. Keep them in the original packaging and avoid extreme temperatures (avoid refrigeration, pantry storage is recommended).

☆Size☆

LARGE: Each QTY 1= 12 pcs of 2.5" each
SMALL: Each QTY 1= 24 pcs of 1.5" each

☆Description☆
The toppers are made with hypoallergenic ingredients (gluten-free, nut-free, peanut-free, dairy-free, soy-free), vegan, and kosher.

Custom Edible Photo Face Cupcake Toppers: Birthday Party Decor

$17.00Price
0/500
Quantity
Choose File
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; } }