| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>HeartSync Telegram Cupid</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script> |
| <script> |
| tailwind.config = { |
| theme: { |
| extend: { |
| colors: { |
| primary: '#FF6B6B', |
| secondary: '#4ECDC4', |
| accent: '#FFE66D', |
| dark: '#292F36', |
| light: '#F7FFF7' |
| } |
| } |
| } |
| } |
| </script> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap'); |
| body { |
| font-family: 'Poppins', sans-serif; |
| } |
| #vanta-bg { |
| position: fixed; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| z-index: -1; |
| } |
| </style> |
| </head> |
| <body class="bg-light text-dark min-h-screen"> |
| <div id="vanta-bg"></div> |
| |
| <div class="container mx-auto px-4 py-12"> |
| |
| <header class="flex flex-col items-center mb-12"> |
| <div class="w-24 h-24 bg-primary rounded-full flex items-center justify-center mb-4 shadow-lg"> |
| <i data-feather="heart" class="text-white w-12 h-12"></i> |
| </div> |
| <h1 class="text-4xl font-bold text-center text-primary mb-2">HeartSync</h1> |
| <p class="text-xl text-center text-secondary font-medium">Telegram Cupid 🤖💘</p> |
| </header> |
|
|
| |
| <section class="mb-16"> |
| <h2 class="text-3xl font-bold text-center text-dark mb-8">Your Perfect Dating Bot</h2> |
| |
| <div class="grid md:grid-cols-3 gap-8"> |
| |
| <div class="bg-white p-6 rounded-xl shadow-lg transform hover:scale-105 transition duration-300"> |
| <div class="w-16 h-16 bg-accent rounded-full flex items-center justify-center mb-4 mx-auto"> |
| <i data-feather="user" class="text-dark w-8 h-8"></i> |
| </div> |
| <h3 class="text-xl font-bold text-center mb-2">Smart Profiles</h3> |
| <p class="text-center">Create your perfect dating profile with photos and details.</p> |
| </div> |
|
|
| |
| <div class="bg-white p-6 rounded-xl shadow-lg transform hover:scale-105 transition duration-300"> |
| <div class="w-16 h-16 bg-secondary rounded-full flex items-center justify-center mb-4 mx-auto"> |
| <i data-feather="search" class="text-white w-8 h-8"></i> |
| </div> |
| <h3 class="text-xl font-bold text-center mb-2">Smart Matching</h3> |
| <p class="text-center">Find people nearby with our intelligent matching system.</p> |
| </div> |
|
|
| |
| <div class="bg-white p-6 rounded-xl shadow-lg transform hover:scale-105 transition duration-300"> |
| <div class="w-16 h-16 bg-primary rounded-full flex items-center justify-center mb-4 mx-auto"> |
| <i data-feather="message-square" class="text-white w-8 h-8"></i> |
| </div> |
| <h3 class="text-xl font-bold text-center mb-2">Instant Chat</h3> |
| <p class="text-center">Chat instantly when you match with someone special.</p> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="text-center mb-12"> |
| <h2 class="text-2xl font-bold mb-4">Ready to find your match?</h2> |
| <p class="mb-6">Join HeartSync today and start meeting amazing people!</p> |
| <a href="#" class="bg-primary hover:bg-opacity-90 text-white font-bold py-3 px-8 rounded-full inline-flex items-center transition duration-300 shadow-lg"> |
| <i data-feather="telegram" class="mr-2"></i> Start in Telegram |
| </a> |
| </section> |
|
|
| |
| <footer class="text-center text-sm text-gray-600"> |
| <p>© 2023 HeartSync | Made with <i data-feather="heart" class="inline text-primary w-4 h-4"></i> for love seekers</p> |
| </footer> |
| </div> |
|
|
| <script> |
| VANTA.NET({ |
| el: "#vanta-bg", |
| color: 0xFF6B6B, |
| backgroundColor: 0xF7FFF7, |
| points: 10, |
| maxDistance: 20, |
| spacing: 16 |
| }); |
| feather.replace(); |
| </script> |
| </body> |
| </html> |
|
|