// 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
Biotina

Biotina

S/.89.00 Precio
S/.85.00Precio de oferta

  Marca: Xtralife  

  Biotina Perú  

  Contenido: 60 Tabletas  

  Reg. Sanitario: DE-2469  

 

La biotina es una vitamina soluble en agua que forma parte de la familia de la vitamina B. También se conoce como vitamina H. Tu cuerpo necesita biotina para ayudar a convertir ciertos nutrientes en energía. También desempeña un papel importante en la salud del cabello, la piel y las uñas.

Cantidad
  • BENEFICIOS

    • Previene la caída del cabello y acelera su crecimiento.

     

    • Brinda volumen y sedosidad.

     

    • Favorece la hidratación de la piel, evitando las enfermedades del cuero cabelludo.

     

    • Fortalece las cutículas de las uñas.

     

    • Alivia los dolores musculares, el eczema y la dermatitis.
  • IDEAL EN CASOS DE:

    • Caída del cabello.

     

    • Daños visibles en la salud de la piel.

     

    • Cabello débil y quebradizo.

     

    • Uñas quebradizas.

     

    • Dermatitis y resequedad de la piel.
  • DOSIS SUGERIDA:

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

    • No causa efectos secundarios.
bottom of page