// 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
Vitamina C

Vitamina C

S/.66.00 Precio
S/.59.00Precio de oferta

 Marca: Xtralife  

  Vitamina C Perú  

  Conteido: 100 Tabletas  

  Reg. Sanitario: DE-1230  

 

La vitamina C (ácido ascórbico) es un nutriente que el cuerpo necesita para formar vasos sanguíneos, cartílagos, músculos y colágeno en los huesos. La vitamina C también es vital para el proceso de curación del cuerpo.

Cantidad
  • BENEFICIOS

    • Fortalece el sistema inmunológico.

     

    • Interviene en la síntesis del colágeno.

     

    • Previene la aparición de enfermedades cardiovasculares.

     

    • Retarda el envejecimiento.

     

    • Mejora la absorción de hierro.
  • IDEAL EN CASOS DE:

    • Escorbuto.

     

    • Resfrió común.

     

    • Hipertensión y arterosclerosis ya que promueve la vasodilatación y evita la coagulación.

     

    • Estrés oxidativo.

     

    • Recuperar la salud de huesos, dientes y encías.
  • DOSIS SUGERIDA:

    • 1 tableta al día, luego de ingerir algún alimento.
  • PRECAUCIONES / CONTRAINDICACIONES:

    • La vitamina C puede interferir en la prueba de glucemia, aunque no tiene ningún efecto sobre los niveles de azúcar en la sangre.
bottom of page