(function () { const androidPlayStoreLink = "https://play.google.com/store/apps/details?id=us.soulverse"; const iosAppStoreLink = "https://apps.apple.com/in/app/soul-super-wallet/id6630387888"; const fallbackLink = "/?fallback=true"; const ua = navigator.userAgent.toLowerCase(); setTimeout(() => { if (ua.includes("android")) { window.location.href = androidPlayStoreLink; } else if ( ua.includes("iphone") || ua.includes("ipad") || ua.includes("ipod") ) { window.location.href = iosAppStoreLink; } else { window.location.href = fallbackLink; } }, 300); })();