| <!DOCTYPE html> |
| <html lang="fr"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Système de Brouillage et d'Écoute Avancé</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <script src="https://cdn.jsdelivr.net/npm/qrcode@1.5.1/build/qrcode.min.js"></script> |
| <style> |
| .gradient-bg { |
| background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%); |
| } |
| .signal-wave { |
| position: relative; |
| overflow: hidden; |
| } |
| .signal-wave::before { |
| content: ""; |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%); |
| animation: pulse 3s infinite; |
| } |
| @keyframes pulse { |
| 0% { transform: scale(0.95); opacity: 0.7; } |
| 50% { transform: scale(1.05); opacity: 0.3; } |
| 100% { transform: scale(0.95); opacity: 0.7; } |
| } |
| .glow-effect { |
| box-shadow: 0 0 15px rgba(59, 130, 246, 0.7); |
| } |
| .glow-effect-red { |
| box-shadow: 0 0 15px rgba(239, 68, 68, 0.7); |
| } |
| .frequency-meter { |
| background: linear-gradient(90deg, #10b981 0%, #f59e0b 50%, #ef4444 100%); |
| } |
| .active-jammer { |
| animation: jammer-pulse 1.5s infinite; |
| } |
| @keyframes jammer-pulse { |
| 0% { box-shadow: 0 0 5px rgba(239, 68, 68, 0.7); } |
| 50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.9); } |
| 100% { box-shadow: 0 0 5px rgba(239, 68, 68, 0.7); } |
| } |
| .active-listener { |
| animation: listener-pulse 1.5s infinite; |
| } |
| @keyframes listener-pulse { |
| 0% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.7); } |
| 50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.9); } |
| 100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.7); } |
| } |
| #qr-code { |
| cursor: pointer; |
| transition: transform 0.3s; |
| } |
| #qr-code:hover { |
| transform: scale(1.05); |
| } |
| .qr-container { |
| position: relative; |
| display: inline-block; |
| } |
| .qr-download-text { |
| position: absolute; |
| bottom: 10px; |
| left: 0; |
| right: 0; |
| background: rgba(0, 0, 0, 0.7); |
| color: white; |
| padding: 5px; |
| font-size: 14px; |
| border-radius: 0 0 8px 8px; |
| } |
| </style> |
| </head> |
| <body class="gradient-bg text-gray-100 min-h-screen"> |
| <div class="container mx-auto px-4 py-8"> |
| |
| <header class="mb-10 text-center"> |
| <h1 class="text-4xl md:text-5xl font-bold mb-2 bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-blue-600"> |
| Système Sigma Pro |
| </h1> |
| <p class="text-lg text-blue-200">Brouillage d'ondes avancé et écoute longue distance</p> |
| </header> |
|
|
| |
| <div class="mt-12 bg-gray-800/50 backdrop-blur-md rounded-xl p-6 border border-gray-700 max-w-md mx-auto"> |
| <div class="text-center"> |
| <h3 class="text-xl font-semibold mb-4 text-blue-300"> |
| <i class="fas fa-mobile-alt mr-2"></i> Application Mobile |
| </h3> |
| <p class="text-gray-300 mb-4">Scannez ce QR code pour installer l'application de contrôle sur votre téléphone</p> |
| |
| |
| <div class="qr-container"> |
| <div id="qr-code" class="bg-white p-4 rounded-lg inline-block mb-4" title="Cliquez pour télécharger"> |
| <canvas id="qr-canvas" class="w-48 h-48"></canvas> |
| <div class="qr-download-text">Cliquez pour télécharger</div> |
| </div> |
| </div> |
| |
| <p class="text-sm text-gray-400">Ou téléchargez via: <span class="text-blue-300">sigma-pro.com/dl</span></p> |
| </div> |
| </div> |
|
|
| |
| <footer class="mt-12 text-center text-gray-400 text-sm"> |
| <p>Système Sigma Pro v3.2.1 - Technologie brevetée</p> |
| <p class="mt-1">© 2023 Sigma Security Systems. Usage réglementé.</p> |
| </footer> |
| </div> |
|
|
| <script> |
| |
| function generateQRCode() { |
| const downloadUrl = "https://sigma-pro.com/dl/app.apk"; |
| const canvas = document.getElementById('qr-canvas'); |
| |
| QRCode.toCanvas(canvas, downloadUrl, { |
| width: 200, |
| margin: 2, |
| color: { |
| dark: '#000000', |
| light: '#ffffff' |
| } |
| }, function(error) { |
| if (error) console.error(error); |
| }); |
| |
| |
| document.getElementById('qr-code').addEventListener('click', function() { |
| const link = document.createElement('a'); |
| link.href = downloadUrl; |
| link.download = 'sigma-pro-app.apk'; |
| document.body.appendChild(link); |
| link.click(); |
| document.body.removeChild(link); |
| |
| |
| const qrContainer = document.querySelector('.qr-container'); |
| qrContainer.innerHTML = '<div class="bg-green-500 text-white p-4 rounded-lg w-48 h-48 flex items-center justify-center text-center"><i class="fas fa-check-circle text-4xl mb-2"></i><div>Téléchargement démarré</div></div>'; |
| |
| |
| setTimeout(() => { |
| qrContainer.innerHTML = ` |
| <div id="qr-code" class="bg-white p-4 rounded-lg inline-block mb-4" title="Cliquez pour télécharger"> |
| <canvas id="qr-canvas" class="w-48 h-48"></canvas> |
| <div class="qr-download-text">Cliquez pour télécharger</div> |
| </div> |
| `; |
| generateQRCode(); |
| }, 3000); |
| }); |
| } |
| |
| |
| window.addEventListener('DOMContentLoaded', () => { |
| generateQRCode(); |
| }); |
| </script> |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=docto41/vop" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |