top of page
Search

Journey to yourself

  • Mar 28, 2024
  • 1 min read

This workshop will be a journey to yourself! Yoga, Pilates, meditation, silence, entertaining conversations, massages and a stomach wellness program are all tools for healing. Medical Ayurvedic consultations can also be booked with me.


The peace and quiet of nature, the old trees and the gentle landscape help us to concentrate fully on ourselves and our inner center.


4x days, 3x overnight stays, full board, 5-6 training sessions

Reservations only after a deposit of € 300. The remaining amount is due 6 weeks before the start of the trip. Please take out travel cancellation insurance if necessary, as the deposit is non-refundable.


Caroline Castner


You can find more information about the event on my website under Retreats .

You can contact me at info@pilatesarea.com or 0049(0)1773238083!

Registration via my website: www.pilatesarea.com






 
 
 

Comments


bottom of page
import wixData from 'wix-data'; let allProducts = []; let categories = []; $w.onReady(async function () { console.log("Loading products..."); await loadProducts(); console.log("✓ Products loaded:", allProducts.length); console.log("✓ Categories:", categories); // Wait for custom element to be ready $w('#quoteCalculator').onReady(() => { console.log("Custom element ready, building calculator..."); buildCalculator(); }); }); async function loadProducts() { try { const results = await wixData.query("Prices") .limit(1000) .find(); allProducts = results.items.map(item => ({ _id: item._id, category: item.Category, title: item.Product, price: item.Price, vat: item.VAT, factor: item.Factor })); categories = [...new Set(allProducts.map(p => p.category))]; } catch (error) { console.error("✗ Error:", error); } } function buildCalculator() { const customElement = $w('#quoteCalculator'); // Set HTML content customElement.setAttribute('innerHTML', `
Subtotal (Net): 0.00 €
VAT 7%: 0.00 €
VAT 19%: 0.00 €
Total VAT: 0.00 €
TOTAL (Gross): 0.00 €
`); }