File size: 21,102 Bytes
0655086 |
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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NeuroVPN - Le VPN Intelligent</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, #6e8efb 0%, #a777e3 100%);
}
.server-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.connection-animation {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.7; }
50% { opacity: 1; }
100% { opacity: 0.7; }
}
.glow {
box-shadow: 0 0 15px rgba(167, 119, 227, 0.7);
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<div class="min-h-screen flex flex-col">
<!-- Header -->
<header class="gradient-bg text-white py-6 px-4 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-shield-alt text-3xl"></i>
<h1 class="text-2xl font-bold">Neuro<span class="font-light">VPN</span></h1>
</div>
<div class="flex items-center space-x-4">
<div class="hidden md:flex items-center space-x-2 bg-white bg-opacity-20 px-4 py-2 rounded-full">
<i class="fas fa-bolt"></i>
<span>Mode IA Actif</span>
</div>
<button class="bg-white text-purple-700 px-4 py-2 rounded-full font-semibold hover:bg-gray-100 transition">
<i class="fas fa-user mr-2"></i>Mon Compte
</button>
</div>
</div>
</header>
<!-- Main Content -->
<main class="flex-grow container mx-auto px-4 py-8">
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
<!-- Left Panel - Connection Status -->
<div class="lg:col-span-2 space-y-6">
<!-- Connection Card -->
<div class="bg-white rounded-xl shadow-lg p-6">
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold text-gray-800">Statut de Connexion</h2>
<div class="flex items-center space-x-2">
<span class="text-sm text-gray-500">IA #487 en charge</span>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
</div>
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="flex items-center mb-4 md:mb-0">
<div class="relative">
<div id="connectionCircle" class="w-24 h-24 rounded-full gradient-bg flex items-center justify-center connection-animation">
<i class="fas fa-lock text-white text-4xl"></i>
</div>
<div class="absolute -bottom-2 -right-2 bg-green-500 text-white rounded-full w-8 h-8 flex items-center justify-center">
<i class="fas fa-check text-xs"></i>
</div>
</div>
<div class="ml-6">
<h3 class="text-2xl font-bold text-gray-800">Connecté</h3>
<p class="text-gray-600">Protection maximale activée</p>
</div>
</div>
<div class="text-center md:text-right">
<div class="text-gray-600 mb-2">Serveur actuel</div>
<div class="text-xl font-bold text-purple-700">Tokyo #17</div>
<div class="text-sm text-gray-500">Changement dans 8:32</div>
<button id="toggleConnection" class="mt-4 bg-red-500 hover:bg-red-600 text-white px-6 py-2 rounded-full font-semibold transition">
Déconnecter
</button>
</div>
</div>
</div>
<!-- Server Rotation -->
<div class="bg-white rounded-xl shadow-lg p-6">
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold text-gray-800">Rotation Automatique des Serveurs</h2>
<div class="flex items-center space-x-2">
<div class="relative">
<div class="w-3 h-3 rounded-full bg-green-500"></div>
<div class="absolute -top-1 -right-1 w-2 h-2 rounded-full bg-green-500 animate-ping"></div>
</div>
<span class="text-sm text-gray-500">Actif</span>
</div>
</div>
<div class="space-y-4">
<div class="flex items-center justify-between">
<div>
<h3 class="font-semibold">Fréquence de rotation</h3>
<p class="text-sm text-gray-500">Optimisée par l'IA pour la meilleure performance</p>
</div>
<div class="bg-gray-100 px-4 py-2 rounded-full">
<span class="font-semibold">10 minutes</span>
</div>
</div>
<div class="flex items-center justify-between">
<div>
<h3 class="font-semibold">Prochain serveur</h3>
<p class="text-sm text-gray-500">Sélectionné parmi 500 serveurs disponibles</p>
</div>
<div class="bg-purple-100 text-purple-700 px-4 py-2 rounded-full">
<span class="font-semibold">Singapour #42</span>
</div>
</div>
<div class="pt-4">
<div class="h-2 bg-gray-200 rounded-full overflow-hidden">
<div id="rotationProgress" class="h-full gradient-bg rounded-full" style="width: 65%"></div>
</div>
<div class="flex justify-between text-xs text-gray-500 mt-1">
<span>Dernier changement: 5:28</span>
<span>Prochain: 4:32</span>
</div>
</div>
</div>
</div>
<!-- Security Dashboard -->
<div class="bg-white rounded-xl shadow-lg p-6">
<h2 class="text-xl font-bold text-gray-800 mb-6">Tableau de Bord Sécurité</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="bg-gray-50 p-4 rounded-lg">
<div class="flex items-center justify-between mb-2">
<h3 class="font-semibold text-gray-700">Protection DNS</h3>
<i class="fas fa-check-circle text-green-500"></i>
</div>
<p class="text-sm text-gray-500">Aucune fuite détectée</p>
</div>
<div class="bg-gray-50 p-4 rounded-lg">
<div class="flex items-center justify-between mb-2">
<h3 class="font-semibold text-gray-700">Anti-traçage</h3>
<i class="fas fa-shield-alt text-blue-500"></i>
</div>
<p class="text-sm text-gray-500">Actif - Niveau maximum</p>
</div>
<div class="bg-gray-50 p-4 rounded-lg">
<div class="flex items-center justify-between mb-2">
<h3 class="font-semibold text-gray-700">Chiffrement</h3>
<i class="fas fa-lock text-purple-500"></i>
</div>
<p class="text-sm text-gray-500">AES-256-GCM</p>
</div>
</div>
</div>
</div>
<!-- Right Panel - Quick Actions -->
<div class="space-y-6">
<!-- Quick Connect -->
<div class="bg-white rounded-xl shadow-lg p-6">
<h2 class="text-xl font-bold text-gray-800 mb-6">Actions Rapides</h2>
<div class="space-y-4">
<button class="w-full flex items-center justify-between bg-gray-100 hover:bg-gray-200 p-4 rounded-lg transition">
<div class="flex items-center">
<i class="fas fa-random text-purple-500 mr-3"></i>
<span>Forcer la rotation du serveur</span>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</button>
<button class="w-full flex items-center justify-between bg-gray-100 hover:bg-gray-200 p-4 rounded-lg transition">
<div class="flex items-center">
<i class="fas fa-user-secret text-blue-500 mr-3"></i>
<span>Mode furtif activé</span>
</div>
<i class="fas fa-toggle-on text-green-500"></i>
</button>
<button class="w-full flex items-center justify-between bg-gray-100 hover:bg-gray-200 p-4 rounded-lg transition">
<div class="flex items-center">
<i class="fas fa-rocket text-orange-500 mr-3"></i>
<span>Boost de vitesse</span>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</button>
</div>
</div>
<!-- App Download -->
<div class="bg-white rounded-xl shadow-lg p-6">
<h2 class="text-xl font-bold text-gray-800 mb-4">Télécharger l'application</h2>
<p class="text-gray-600 mb-6">Scannez le QR code pour installer NeuroVPN sur votre mobile</p>
<div class="flex flex-col items-center">
<div id="qrcode" class="p-4 bg-white rounded-lg border border-gray-200 mb-4"></div>
<p class="text-sm text-gray-500 text-center">Disponible sur iOS et Android</p>
</div>
</div>
<!-- AI Settings -->
<div class="bg-white rounded-xl shadow-lg p-6">
<h2 class="text-xl font-bold text-gray-800 mb-4">Paramètres IA</h2>
<div class="space-y-4">
<div>
<label class="flex items-center justify-between cursor-pointer">
<span class="text-gray-700">Optimisation automatique</span>
<div class="relative">
<input type="checkbox" class="sr-only" checked>
<div class="block bg-purple-500 w-12 h-6 rounded-full"></div>
<div class="dot absolute left-1 top-1 bg-white w-4 h-4 rounded-full transition"></div>
</div>
</label>
<p class="text-xs text-gray-500 mt-1">L'IA ajuste les paramètres en temps réel</p>
</div>
<div>
<label class="flex items-center justify-between cursor-pointer">
<span class="text-gray-700">Rotation intelligente</span>
<div class="relative">
<input type="checkbox" class="sr-only" checked>
<div class="block bg-purple-500 w-12 h-6 rounded-full"></div>
<div class="dot absolute left-1 top-1 bg-white w-4 h-4 rounded-full transition"></div>
</div>
</label>
<p class="text-xs text-gray-500 mt-1">Changement de serveur toutes les 10 min</p>
</div>
<div>
<label class="flex items-center justify-between cursor-pointer">
<span class="text-gray-700">Protection avancée</span>
<div class="relative">
<input type="checkbox" class="sr-only" checked>
<div class="block bg-purple-500 w-12 h-6 rounded-full"></div>
<div class="dot absolute left-1 top-1 bg-white w-4 h-4 rounded-full transition"></div>
</div>
</label>
<p class="text-xs text-gray-500 mt-1">Double chiffrement des données</p>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8 px-4">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-semibold mb-4">NeuroVPN</h3>
<p class="text-gray-400">Le VPN le plus intelligent au monde, protégé par 500 IA spécialisées.</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Fonctionnalités</h3>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white">Rotation automatique</a></li>
<li><a href="#" class="hover:text-white">Protection IA</a></li>
<li><a href="#" class="hover:text-white">Mode furtif</a></li>
<li><a href="#" class="hover:text-white">Double VPN</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Support</h3>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white">Centre d'aide</a></li>
<li><a href="#" class="hover:text-white">Contact IA</a></li>
<li><a href="#" class="hover:text-white">FAQ</a></li>
<li><a href="#" class="hover:text-white">Statut</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Legal</h3>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white">Politique de confidentialité</a></li>
<li><a href="#" class="hover:text-white">Conditions d'utilisation</a></li>
<li><a href="#" class="hover:text-white">Transparence</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 NeuroVPN. Tous droits réservés.</p>
</div>
</div>
</footer>
</div>
<script>
// QR Code Generation
document.addEventListener('DOMContentLoaded', function() {
// Generate QR Code
const qrcodeElement = document.getElementById('qrcode');
QRCode.toCanvas(qrcodeElement, 'https://neurovpn.example.com/download', {
width: 160,
margin: 1,
color: {
dark: '#6e8efb',
light: '#ffffff'
}
}, function(error) {
if (error) console.error(error);
});
// Connection toggle
const toggleConnection = document.getElementById('toggleConnection');
const connectionCircle = document.getElementById('connectionCircle');
toggleConnection.addEventListener('click', function() {
if (toggleConnection.textContent.includes('Déconnecter')) {
toggleConnection.textContent = 'Connecter';
toggleConnection.classList.remove('bg-red-500', 'hover:bg-red-600');
toggleConnection.classList.add('bg-green-500', 'hover:bg-green-600');
connectionCircle.classList.remove('gradient-bg', 'connection-animation');
connectionCircle.classList.add('bg-gray-300');
connectionCircle.innerHTML = '<i class="fas fa-unlock text-gray-600 text-4xl"></i>';
} else {
toggleConnection.textContent = 'Déconnecter';
toggleConnection.classList.remove('bg-green-500', 'hover:bg-green-600');
toggleConnection.classList.add('bg-red-500', 'hover:bg-red-600');
connectionCircle.classList.remove('bg-gray-300');
connectionCircle.classList.add('gradient-bg', 'connection-animation');
connectionCircle.innerHTML = '<i class="fas fa-lock text-white text-4xl"></i>';
}
});
// Simulate rotation progress
let progress = 65;
const rotationProgress = document.getElementById('rotationProgress');
setInterval(() => {
progress -= 1;
if (progress <= 0) progress = 100;
rotationProgress.style.width = `${progress}%`;
// Update time display
const minutes = Math.floor(progress / 10);
const seconds = (progress % 10) * 6;
document.querySelector('#rotationProgress + div > span:last-child').textContent = `Prochain: ${minutes}:${seconds < 10 ? '0' + seconds : seconds}`;
}, 1000);
});
</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/neurovpn" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |