Auto commit: 2026-02-01T20:04:21.150Z

This commit is contained in:
Flatlogic Bot 2026-02-01 20:04:21 +00:00
parent 976c9d2604
commit 06d6a40687

View File

@ -21,6 +21,7 @@ $projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
$streamUrl = "https://play.radioking.io/lili-record-s-radio";
$whatsappNumber = "5359177041";
$whatsappLink = "https://wa.me/" . $whatsappNumber;
$whatsappGroupLink = "https://chat.whatsapp.com/G4l9N2i7J8L5K6M7N8O9P0"; // Placeholder for the group link
$youtubeUrl = "https://www.youtube.com/@lilirecords";
$promoImage = "assets/pasted-20260130-234122-115a4b49.png";
$qrImage = "assets/pasted-20260131-000858-4fff58f0.jpg";
@ -443,6 +444,36 @@ try {
padding: 2.5rem;
text-align: center;
}
.community-box {
background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
border-radius: 35px;
padding: 2rem;
color: #fff;
display: flex;
align-items: center;
gap: 1.5rem;
box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
text-decoration: none;
transition: all 0.3s ease;
border: 1px solid rgba(255,255,255,0.2);
}
.community-box:hover {
transform: scale(1.02);
color: #fff;
box-shadow: 0 25px 50px rgba(37, 211, 102, 0.4);
}
.community-icon {
width: 60px;
height: 60px;
background: rgba(255,255,255,0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
flex-shrink: 0;
}
</style>
</head>
<body>
@ -502,6 +533,20 @@ try {
<div class="right-content">
<img src="<?= $promoImage ?>" alt="Lili Records Promo" class="promo-image">
<!-- WhatsApp Group Community -->
<a href="<?= $whatsappGroupLink ?>" target="_blank" class="community-box">
<div class="community-icon">
<i class="fab fa-whatsapp"></i>
</div>
<div>
<h5 class="fw-bold mb-1">Comunidad "Lili Records Radio"</h5>
<p class="small mb-0 opacity-90">¡Únete para recibir noticias, anuncios y el enlace de transmisión directamente!</p>
</div>
<div class="ms-auto d-none d-sm-block">
<i class="fas fa-chevron-right opacity-50"></i>
</div>
</a>
<!-- Messages Window -->
<div class="comments-window">
<div class="comments-header border-0 mb-3">
@ -771,4 +816,4 @@ try {
fetchMetadata();
</script>
</body>
</html>
</html>