import wixLocation from 'wix-location'; import {fetch} from 'wix-fetch'; $w.onReady(function () { // Países bloqueados (códigos ISO 3166-1 alpha-2) const blockedCountries = ['CN', 'SG', 'PK', 'IN', 'PH']; // Busca a localização do visitante fetch('https://extreme-ip-lookup.com/json', { method: 'get' }) .then((httpResponse) => { if (httpResponse.ok) { return httpResponse.json(); } }) .then((json) => { const loc = json.countryCode; // Verifica se o país está na lista de bloqueio if (blockedCountries.includes(loc) && wixLocation.path !== 'not-available') { // Redireciona para a página "não disponível" wixLocation.to('/not-available'); } }); });
top of page
Core Fitness

Your Fitness Journey Starts at 40

Premium Workouts, Nutrition & Wellness Designed for Your Life Stage
 

Join thousands who discovered that 40+ is when real transformation begins. Expert-backed content for sustainable results.

Premium content designed for your life stage

2

💪 Strength Training

bottom of page