let deferredPrompt; // Create button const installBtn = document.createElement('button'); installBtn.innerHTML = '???? Install App'; installBtn.id = 'pwaInstallBtn'; installBtn.style.position = 'fixed'; installBtn.style.bottom = '20px'; installBtn.style.right = '20px'; installBtn.style.zIndex = '999999'; installBtn.style.padding = '12px 18px'; installBtn.style.borderRadius = '30px'; installBtn.style.cursor = 'pointer'; installBtn.style.display = 'block'; document.body.appendChild(installBtn); window.addEventListener('beforeinstallprompt', (e) => { e.preventDefault(); deferredPrompt = e; }); installBtn.addEventListener('click', async () => { if (!deferredPrompt) { alert('Use Chrome Menu (⋮) → Install App'); return; } deferredPrompt.prompt(); await deferredPrompt.userChoice; deferredPrompt = null; }); Back to homepage

Dont have an account yet?

Sign Up

Welcome back! Sign in to access your account, track your orders, and explore exclusive deals.

Login

Enter your credentials to access your account

Welcome back! Sign in to access your account, track your orders, and explore exclusive deals.