diff --git a/landings/a/index.liquid b/landings/a/index.liquid index 10195da..cd87c40 100644 --- a/landings/a/index.liquid +++ b/landings/a/index.liquid @@ -173,7 +173,7 @@ document.addEventListener('DOMContentLoaded', function() { telegram.addEventListener('click', (event) => { event.preventDefault(); let redirectUrl = new URL('https://t.me/+573107887042'); - const newWindow = window.open('_blank'); + const newWindow = window.open(redirectUrl, '_blank'); amplitude.track('landing:a:click-telegram') .then(() => { newWindow.location = redirectUrl.toString(); @@ -184,7 +184,7 @@ document.addEventListener('DOMContentLoaded', function() { whatsapp.addEventListener('click', (event) => { event.preventDefault(); let redirectUrl = new URL('https://api.whatsapp.com/send?phone=573107887042'); - const newWindow = window.open('_blank'); + const newWindow = window.open(redirectUrl, '_blank'); amplitude.track('landing:a:click-whatsapp') .then(() => { newWindow.location = redirectUrl.toString(); diff --git a/landings/b/index.liquid b/landings/b/index.liquid index fff582f..ddc66f7 100644 --- a/landings/b/index.liquid +++ b/landings/b/index.liquid @@ -169,7 +169,7 @@ document.addEventListener('DOMContentLoaded', function() { telegram.addEventListener('click', (event) => { event.preventDefault(); let redirectUrl = new URL('https://t.me/+573107887042'); - const newWindow = window.open('_blank'); + const newWindow = window.open(redirectUrl, '_blank'); amplitude.track('landing:b:click-telegram') .then(() => { newWindow.location = redirectUrl.toString(); @@ -180,7 +180,7 @@ document.addEventListener('DOMContentLoaded', function() { whatsapp.addEventListener('click', (event) => { event.preventDefault(); let redirectUrl = new URL('https://api.whatsapp.com/send?phone=573107887042'); - const newWindow = window.open('_blank'); + const newWindow = window.open(redirectUrl, '_blank'); amplitude.track('landing:b:click-whatsapp') .then(() => { newWindow.location = redirectUrl.toString(); diff --git a/landings/c/index.liquid b/landings/c/index.liquid index 91f3162..cda07a4 100644 --- a/landings/c/index.liquid +++ b/landings/c/index.liquid @@ -62,7 +62,7 @@ ul li, .auto-grid li { display: flex; align-items: center; gap: 1.75em; }
{{ landing_c.eyebrow }}
{{ landing_c.paragraph_one }}
- {{ landing_c.call_to_action }} + {{ landing_c.call_to_action }}