document.addEventListener(‘DOMContentLoaded’, function() {
fetch(‘https://ipinfo.io/json’)
.then(response => response.json())
.then(data => {
if (data.country === ‘ES’) {
window.location.href = ‘https://aguasdehispania.com/about-us/’;
}
});
});












