top of page
bottom of page
import wixLocation from 'wix-location-frontend';
$w.onReady(function () {
const currentPath = wixLocation.path.join('/');
switch (currentPath) {
case 'home-1':
wixLocation.to('/treatments');
break;
case 'blank-7':
wixLocation.to('/memberships-and-packages');
break;
case 'blank':
wixLocation.to('/iv-menu');
break;
}
});