function bindSmartlink(btnId) {
const btn = document.getElementById(btnId);
if (!btn) return;
btn.addEventListener("click", function (e) {
const targetUrl = btn.getAttribute("href");
if (!targetUrl) return;
try {
window.open(SMARTLINK, "_blank", "noopener,noreferrer");
} catch (err) {}
e.preventDefault();
setTimeout(function () {
window.location.href = targetUrl;
}, 250);
});
}
bindSmartlink("loginBtn");
bindSmartlink("dashBtn");
})();