Thanks for subscribing!
We’re sending you to the product page…
If you’re not redirected, click here.
const params = new URLSearchParams(window.location.search);
const redirect = params.get(“redirect”);
const fallbackLink = document.getElementById(“fallbackLink”);
if (redirect) {
fallbackLink.href = redirect;
setTimeout(() => {
window.location.href = redirect;
}, 1500);
} else {
document.querySelector(“h2”).textContent = “Oops!”;
document.querySelector(“p”).textContent = “We couldn’t find where to send you.”;
fallbackLink.style.display = “none”;
}