import wixWindow from 'wix-window'; // Function to toggle the lightbox export function toggleLightbox() { const lightboxId = "lightbox1"; // Your lightbox ID const lightboxElement = $w(`#${lightboxId}`); if (lightboxElement.isVisible) { lightboxElement.hide("slide", {direction: "left"}); } else { wixWindow.openLightbox(lightboxId, {effect: {name: "slideIn", options: {direction: "left"}}}); } }
top of page

Huge Title

bottom of page