docto41 commited on
Commit
9c71b8b
·
verified ·
1 Parent(s): 6a0c488

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +168 -19
  3. prompts.txt +4 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Vop
3
- emoji: 📊
4
- colorFrom: indigo
5
- colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: vop
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: red
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,168 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Système de Brouillage et d'Écoute Avancé</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script src="https://cdn.jsdelivr.net/npm/qrcode@1.5.1/build/qrcode.min.js"></script>
10
+ <style>
11
+ .gradient-bg {
12
+ background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
13
+ }
14
+ .signal-wave {
15
+ position: relative;
16
+ overflow: hidden;
17
+ }
18
+ .signal-wave::before {
19
+ content: "";
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ right: 0;
24
+ bottom: 0;
25
+ background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
26
+ animation: pulse 3s infinite;
27
+ }
28
+ @keyframes pulse {
29
+ 0% { transform: scale(0.95); opacity: 0.7; }
30
+ 50% { transform: scale(1.05); opacity: 0.3; }
31
+ 100% { transform: scale(0.95); opacity: 0.7; }
32
+ }
33
+ .glow-effect {
34
+ box-shadow: 0 0 15px rgba(59, 130, 246, 0.7);
35
+ }
36
+ .glow-effect-red {
37
+ box-shadow: 0 0 15px rgba(239, 68, 68, 0.7);
38
+ }
39
+ .frequency-meter {
40
+ background: linear-gradient(90deg, #10b981 0%, #f59e0b 50%, #ef4444 100%);
41
+ }
42
+ .active-jammer {
43
+ animation: jammer-pulse 1.5s infinite;
44
+ }
45
+ @keyframes jammer-pulse {
46
+ 0% { box-shadow: 0 0 5px rgba(239, 68, 68, 0.7); }
47
+ 50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.9); }
48
+ 100% { box-shadow: 0 0 5px rgba(239, 68, 68, 0.7); }
49
+ }
50
+ .active-listener {
51
+ animation: listener-pulse 1.5s infinite;
52
+ }
53
+ @keyframes listener-pulse {
54
+ 0% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.7); }
55
+ 50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.9); }
56
+ 100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.7); }
57
+ }
58
+ #qr-code {
59
+ cursor: pointer;
60
+ transition: transform 0.3s;
61
+ }
62
+ #qr-code:hover {
63
+ transform: scale(1.05);
64
+ }
65
+ .qr-container {
66
+ position: relative;
67
+ display: inline-block;
68
+ }
69
+ .qr-download-text {
70
+ position: absolute;
71
+ bottom: 10px;
72
+ left: 0;
73
+ right: 0;
74
+ background: rgba(0, 0, 0, 0.7);
75
+ color: white;
76
+ padding: 5px;
77
+ font-size: 14px;
78
+ border-radius: 0 0 8px 8px;
79
+ }
80
+ </style>
81
+ </head>
82
+ <body class="gradient-bg text-gray-100 min-h-screen">
83
+ <div class="container mx-auto px-4 py-8">
84
+ <!-- Header -->
85
+ <header class="mb-10 text-center">
86
+ <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">
87
+ Système Sigma Pro
88
+ </h1>
89
+ <p class="text-lg text-blue-200">Brouillage d'ondes avancé et écoute longue distance</p>
90
+ </header>
91
+
92
+ <!-- QR Code Section Centered -->
93
+ <div class="mt-12 bg-gray-800/50 backdrop-blur-md rounded-xl p-6 border border-gray-700 max-w-md mx-auto">
94
+ <div class="text-center">
95
+ <h3 class="text-xl font-semibold mb-4 text-blue-300">
96
+ <i class="fas fa-mobile-alt mr-2"></i> Application Mobile
97
+ </h3>
98
+ <p class="text-gray-300 mb-4">Scannez ce QR code pour installer l'application de contrôle sur votre téléphone</p>
99
+
100
+ <!-- QR Code with Download Functionality -->
101
+ <div class="qr-container">
102
+ <div id="qr-code" class="bg-white p-4 rounded-lg inline-block mb-4" title="Cliquez pour télécharger">
103
+ <canvas id="qr-canvas" class="w-48 h-48"></canvas>
104
+ <div class="qr-download-text">Cliquez pour télécharger</div>
105
+ </div>
106
+ </div>
107
+
108
+ <p class="text-sm text-gray-400">Ou téléchargez via: <span class="text-blue-300">sigma-pro.com/dl</span></p>
109
+ </div>
110
+ </div>
111
+
112
+ <!-- Footer -->
113
+ <footer class="mt-12 text-center text-gray-400 text-sm">
114
+ <p>Système Sigma Pro v3.2.1 - Technologie brevetée</p>
115
+ <p class="mt-1">© 2023 Sigma Security Systems. Usage réglementé.</p>
116
+ </footer>
117
+ </div>
118
+
119
+ <script>
120
+ // Générer un QR code fonctionnel avec téléchargement
121
+ function generateQRCode() {
122
+ const downloadUrl = "https://sigma-pro.com/dl/app.apk"; // URL de téléchargement fictive
123
+ const canvas = document.getElementById('qr-canvas');
124
+
125
+ QRCode.toCanvas(canvas, downloadUrl, {
126
+ width: 200,
127
+ margin: 2,
128
+ color: {
129
+ dark: '#000000',
130
+ light: '#ffffff'
131
+ }
132
+ }, function(error) {
133
+ if (error) console.error(error);
134
+ });
135
+
136
+ // Ajouter un événement de clic pour télécharger
137
+ document.getElementById('qr-code').addEventListener('click', function() {
138
+ const link = document.createElement('a');
139
+ link.href = downloadUrl;
140
+ link.download = 'sigma-pro-app.apk';
141
+ document.body.appendChild(link);
142
+ link.click();
143
+ document.body.removeChild(link);
144
+
145
+ // Animation de confirmation
146
+ const qrContainer = document.querySelector('.qr-container');
147
+ 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>';
148
+
149
+ // Revert after 3 seconds
150
+ setTimeout(() => {
151
+ qrContainer.innerHTML = `
152
+ <div id="qr-code" class="bg-white p-4 rounded-lg inline-block mb-4" title="Cliquez pour télécharger">
153
+ <canvas id="qr-canvas" class="w-48 h-48"></canvas>
154
+ <div class="qr-download-text">Cliquez pour télécharger</div>
155
+ </div>
156
+ `;
157
+ generateQRCode(); // Regenerate QR code
158
+ }, 3000);
159
+ });
160
+ }
161
+
162
+ // Activer au chargement
163
+ window.addEventListener('DOMContentLoaded', () => {
164
+ generateQRCode();
165
+ });
166
+ </script>
167
+ <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>
168
+ </html>
prompts.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ creer le plus puissant de brouilleur d'onde et d'ecoute sur systeme automatique , creer aussi un ecouteur tres puissant a les long distences avec sont qr code pour etre télécharger sur mon tel
2
+ activer toutes les boutons
3
+ activer le qr code pour etre tléchargeable
4
+ je veux le qr code