-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (68 loc) · 3.92 KB
/
index.html
File metadata and controls
76 lines (68 loc) · 3.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Envíos Relámpagos</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 font-sans text-gray-800">
<!-- Header con logo horizontal integrado -->
<header class="bg-[#0b1d33] text-white py-6">
<div class="container mx-auto px-4 flex justify-center">
<img src="./img/logo.png" alt="Envíos Relámpagos Logo" class="h-32 md:h-80">
</div>
</header>
<main class="container mx-auto px-4 py-6">
<section class="bg-white rounded-lg shadow-lg p-6 mb-6">
<h2 class="text-xl md:text-2xl font-semibold mb-4">¿Enviar dinero a tu familia de forma rápida, barata y privada?</h2>
<p class="text-base md:text-lg mb-4">¡Ahora es posible! Con nuestro servicio:</p>
<ul class="list-disc pl-6 mb-4 text-sm md:text-base">
<li>Depositas en <strong>Bitcoin Lightning</strong> (velocidad y costos mínimos).</li>
<li>Tu familia recibe al instante en <strong>MLC o CUP</strong> sin complicaciones.</li>
</ul>
</section>
<section class="bg-white rounded-lg shadow-lg p-6 mb-6">
<h2 class="text-xl md:text-2xl font-semibold mb-4">Beneficios</h2>
<ul class="space-y-2 text-sm md:text-base">
<li>✅ Transacciones en minutos, sin esperas.</li>
<li>✅ Comisiones ultra bajas, ideal para envíos frecuentes.</li>
<li>✅ Máxima privacidad.</li>
<li>✅ ¡Interés por el Servicio solo el 1,5%!.</li>
</ul>
<p class="mt-4 text-base md:text-lg font-medium">¡Financia el futuro de los tuyos con la seguridad de blockchain y la facilidad local!</p>
<p class="text-base md:text-lg font-semibold">Rapidez sin límites, costos que no pesan, privacidad intacta.</p>
</section>
<section class="bg-white rounded-lg shadow-lg p-6 mb-6">
<h2 class="text-xl md:text-2xl font-semibold mb-4">Aplicaciones para comprar Bitcoin Lightning</h2>
<p class="text-sm md:text-base"><strong>EUA:</strong> <a href="https://play.google.com/store/apps/details?id=zapsolutions.strike" class="text-blue-600 underline" target="_blank">STRIKE</a></p>
<p class="text-sm md:text-base"><strong>Europa:</strong> <a href="https://relai.app/" class="text-blue-600 underline" target="_blank">RELAI</a></p>
</section>
<section class="text-center mb-8">
<h2 class="text-2xl md:text-3xl font-bold mb-6 text-gray-800">Realiza tu envío ahora</h2>
<div class="bg-red-100 border-l-4 border-red-500 p-4 mb-6 max-w-md mx-auto text-left text-sm md:text-base text-red-800">
<p class="font-bold">⚠️ ¡Importante!</p>
<ul class="list-disc pl-6 mt-2">
<li><strong>SI ELIGES MLC PAGAMOS UN 15% ADICIONAL.</strong></li>
</ul>
</div>
<div class="space-y-4 max-w-md mx-auto">
<a href="https://btcpay.cubabitcoin.org/apps/4B52fEEYSLiQ3pAwFSDLMhFqY3wf/pos"
class="block bg-green-600 text-white px-6 py-3 rounded-lg hover:bg-green-700 transition text-lg font-semibold">Enviar CUP</a>
<a href="https://btcpay.cubabitcoin.org/apps/3aEXnH2kg9GBAzSEoDig6Q6PAsZz/pos"
class="block bg-blue-600 text-white px-6 py-3 rounded-lg hover:bg-blue-700 transition text-lg font-semibold">Enviar MLC +15%</a>
</div>
</section>
<section class="bg-white rounded-lg shadow-lg p-6">
<h2 class="text-xl md:text-2xl font-semibold mb-4">Contacto</h2>
<p class="text-sm md:text-base">Para cualquier consulta del servicio, contáctanos en:</p>
<p><a href="mailto:enviorelampago21@gmail.com" class="text-blue-600 underline">enviorelampago21@gmail.com</a></p>
</section>
</main>
<footer class="bg-[#0b1d33] text-white py-4">
<div class="container mx-auto px-4 text-center">
<p class="text-sm md:text-base">© 2025 Envíos Relámpagos. Todos los derechos reservados.</p>
</div>
</footer>
</body>
</html>