CONTACTO

Ponte en contacto con nosotros

En Pueblo en Conexión valoramos tus comentarios, dudas y sugerencias. Si tienes alguna pregunta sobre nuestro contenido, deseas reportar algún error o estás interesado en colaborar con nosotros, no dudes en escribirnos.

Correo Electrónico: Para atención general y redacción: contacto@puebloenconexionmx.com (Tratamos de responder en un plazo de 24 a 48 horas hábiles). 

Horario de Atención: Lunes a Viernes: 9:00 AM – 6:00 PM (Hora Ciudad de México)

 

const bannerText = 'Este sitio utiliza cookies. ¿Aceptas el uso de cookies?'; const confirmationButtonText = 'Aceptar'; const declineButtonText = 'Rechazar'; // URLs de redirección (modifica según lo que necesites) const acceptRedirectUrl = ''; // URL si acepta const rejectRedirectUrl = 'https://puebloenconexionmx.com/home/sobre-nosotros/'; // URL si rechaza if (!localStorage.getItem('cookiesDecision')) { const mainDiv = document.createElement('div'); mainDiv.style.position = 'fixed'; mainDiv.style.top = '0'; mainDiv.style.left = '0'; mainDiv.style.width = '100vw'; mainDiv.style.height = '100vh'; mainDiv.style.background = 'rgba(0,0,0,0.8)'; mainDiv.style.display = 'flex'; mainDiv.style.flexDirection = 'column'; mainDiv.style.justifyContent = 'center'; mainDiv.style.alignItems = 'center'; mainDiv.style.zIndex = '9999'; const banner = document.createElement('div'); banner.style.background = '#fff'; banner.style.padding = '30px'; banner.style.borderRadius = '10px'; banner.style.textAlign = 'center'; banner.style.maxWidth = '350px'; const text = document.createElement('p'); text.textContent = bannerText; banner.appendChild(text); const buttonsDiv = document.createElement('div'); buttonsDiv.style.marginTop = '20px'; const acceptBtn = document.createElement('button'); acceptBtn.textContent = confirmationButtonText; acceptBtn.style.marginRight = '10px'; acceptBtn.onclick = () => { localStorage.setItem('cookiesDecision', 'accepted'); window.location.href = acceptRedirectUrl; // Redirige si acepta }; const rejectBtn = document.createElement('button'); rejectBtn.textContent = declineButtonText; rejectBtn.onclick = () => { localStorage.setItem('cookiesDecision', 'rejected'); window.location.href = rejectRedirectUrl; // Redirige si rechaza }; buttonsDiv.appendChild(acceptBtn); buttonsDiv.appendChild(rejectBtn); banner.appendChild(buttonsDiv); mainDiv.appendChild(banner); document.body.appendChild(mainDiv); }
Scroll al inicio
Logo WhatsApp