top of page
bottom of page
import {local} from 'wix-storage'; import wixWindow from 'wix-window'; $w.onReady(function () { if(!local.getItem("firstTimePopupShown")) { wixWindow.openLightbox("agreement"); local.setItem("firstTimePopupShown", "yes"); } } );