<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Redirecionando para o app Rede Comuna...</title>
<script>
window.onload = function () {
const userAgent = navigator.userAgent || navigator.vendor || window.opera;
if (/android/i.test(userAgent)) {
// Redireciona para Android
window.location.href = "https://play.google.com/store/apps/details?id=br.com.inchurch.redecomuna&hl=pt_BR";
} else if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) {
// Redireciona para iOS
window.location.href = "https://apps.apple.com/br/app/rede-comuna/id1514256918";
} else {
// Caso não detecte, redireciona para o site oficial
window.location.href = "https://redecomuna.com.br";
}
};
</script>
<style>
body {
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
background-color: #f5f5f5;
}
</style>
</head>
<body>
<p>Redirecionando para o app da Igreja Mundial do Poder de Deus...</p>
</body>
</html>