// Código para personalizar la tienda de productos en Wix con Velo import wixData from 'wix-data'; import wixLocation from 'wix-location'; $w.onReady(function () { loadCategories(); $w("#categoryDropdown").onChange((event) => { filterProducts(event.target.value); }); }); function loadCategories() { wixData.query("Categories") .find() .then((results) => { let options = [{ label: "Todas", value: "" }]; results.items.forEach(category => { options.push({ label: category.title, value: category._id }); }); $w("#categoryDropdown").options = options; }); } function filterProducts(categoryId) { let filter = wixData.filter(); if (categoryId) { filter = filter.eq("category", categoryId); } $w("#productsRepeater").data = []; wixData.query("Products") .filter(filter) .find() .then((results) => { $w("#productsRepeater").data = results.items; }); } // Agregar botón de carrito a cada producto $w("#productsRepeater").onItemReady(($item, itemData) => { $item("#addToCartButton").onClick(() => { // Lógica para agregar al carrito console.log(`Producto agregado: ${itemData.title}`); }); // Mostrar cinta de oferta si el producto tiene descuento if (itemData.discount) { $item("#offerRibbon").show(); } else { $item("#offerRibbon").hide(); } });
top of page
Curma-Vid

Curma-Vid

S/.60.00Precio

PRESENTACIÓN Pote x 120 g

USO TRADICIONAL RECOMENDADO:
• La Curcumina que contiene la Cúrcuma favorece al organismo frente a los procesos inflamatorios.
• La Vitamina C y Bioflavonoides que contiene el Camu Camu reforzando las defensas del organismo.
• Ayuda al organismo a regular su nivel de pH o balance ácido-alcalino.

Cantidad
  • BENEFICIOS

    BENEFICIOS:
    Producto en polvo a base de cúrcuma atomizada, camu camu atomizado y bicarbonato de sodio. La curcumina es un polifenol natural con acción antioxidante, el camu camu es fuente natural de vitamina C y bioflavonoides, que apoyan el funcionamiento normal del sistema inmune.

  • Uso Sugerido

    USO SUGERIDO:
    01 cucharadita de dos a tres veces al día.

  • DETALLES DEL PRODUCTO

    CONDICIONES DE ALMACENAMIENTO:
    Conservar en un lugar fresco y seco. Mantener lejos de las fuentes de calor y luz.

bottom of page