top of page

AcuSalt with Linda D'Agostino

341614117_1927090830989785_5949041157765477977_n.jpg

AcuSalt is a combined relaxation session of a Himalayan salt infusion while receiving gentle acupuncture. An AcuSalt session helps one manage stress better but it also helps alleviate one from annoying respiratory/sinus/ allergy symptoms. Linda D'Agostino, L.Ac, (licensed acupuncturist) is the practitioner for this modality.

​

Linda D'Agostino has been a devoted healthcare professional for nearly five decades. As a registered nurse, she worked in virtually every nursing capacity, from home care nurse to nursing supervisor to case management. A licensed acupuncturist in the state of PA , Linda treated patients for 20 years in her private practice and was a qigong teacher for 15 years. She has been awarded a B.S. degree in Professional Arts by St. Joseph's College, Standish Maine and a Master of Oriental Medicine degree by International Institute of Chinese Medicine, Albuquerque, New Mexico. Linda continues her dedication in healthcare by now providing acupuncture in a salt room setting which is combining a halotherapy session while receiving acupuncture. She also offers self-care techniques to others by the use of ancient Chinese medicine modalities through nutrition, lifestyle and qigong.

bottom of page
import wixBookings from 'wix-bookings'; import wixData from 'wix-data'; // Define the Service ID and Staff IDs const SERVICE_ID = '18ee7e14-9cfd-49e6-893a-7ca836189db6'; const STAFF_IDS = [ '9cdb283a-05af-4d79-b402-d8a32c0299ea', 'c0bb665a-c801-41fd-8762-ac9bf45f59ac', '089ab480-1f9c-4eed-b2f2-9519cceb80f0' ]; // Function to block time for staff export async function blockTimeForStaff(booking) { const { startTime } = booking; const endTime = new Date(startTime.getTime() + 2 * 60 * 60 * 1000); // 2 hours later // Loop through each staff ID and create a blocked time slot for (const staffId of STAFF_IDS) { try { await wixBookings.createTimeSlot({ staffId: staffId, startTime: startTime, endTime: endTime, status: 'blocked', // Ensure the status is 'blocked' title: 'Blocked due to Detox Day Pass booking' }); } catch (error) { console.error(`Failed to block time for staff ID ${staffId}:`, error); } } }