Aller au contenu
← Documentation

Customizer Examples

Exemples complets

T-Shirt

// T-Shirt Customizer
<ProductCustomizer
  productId="tshirt_001"
  productImage="/products/tshirt-white.png"
  config={{
    canvas: { width: 400, height: 500 },
    printArea: { x: 50, y: 100, width: 300, height: 300 }
  }}
/>

Mug

// Mug Customizer
<ProductCustomizer
  productId="mug_001"
  productImage="/products/mug-white.png"
  config={{
    canvas: { width: 800, height: 400 },
    cylindrical: true,
    wrapAround: 180
  }}
/>