// 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
COMO TENER UN CUERPO SANO BY DR JORGE PAMPLONA ROGER

COMO TENER UN CUERPO SANO BY DR JORGE PAMPLONA ROGER

S/.270.00Precio

UNA UNIDAD FUNCIONAL COMPLETA

"En esta obra (libro 'Cómo tener un cuerpo sano') se presenta el cuidado de la manifestación física del ser humano, es decir de su cuerpo, pero sin ignorar que está íntimamente interrelacionado con la mente, de la que no se puede separar.

Cuerpo y mente no son dos entidades independientes, sino dos manifestaciones de la actividad vital del ser humano. Ambas forman una unidad funcional completa, que impulsada por el espíritu o aliento de vida, resulta en un alma viviente.

Lo que se come, el ejercicio físico que se practica, la forma en que se descansa, todo influye directamente sobre la mente.Y de la misma forma, lo que se piensa, lo que se habla, lo que se ve y hasta lo que se cree, influyen sobre el cuerpo.

Por ello, para tener un cuerpo sano hay que tener también una mente sana, y viceversa."

(Libro 'Cómo tener un cuerpo sano', pág. 11)

Cantidad
bottom of page