Pnkj01 commited on
Commit
e1557e8
·
verified ·
1 Parent(s): b2af8d5

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +394 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Test
3
- emoji: 🏆
4
- colorFrom: purple
5
- colorTo: indigo
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: test
3
+ emoji: 🐳
4
+ colorFrom: gray
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,394 @@
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="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Free Fire MAX - Headshot Pro Panel</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
+ <style>
10
+ .glow-effect {
11
+ box-shadow: 0 0 15px rgba(59, 130, 246, 0.7);
12
+ }
13
+ .progress-bar {
14
+ height: 8px;
15
+ border-radius: 4px;
16
+ background-color: #1e293b;
17
+ }
18
+ .progress-fill {
19
+ height: 100%;
20
+ border-radius: 4px;
21
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
22
+ transition: width 0.3s ease;
23
+ }
24
+ .switch {
25
+ position: relative;
26
+ display: inline-block;
27
+ width: 60px;
28
+ height: 30px;
29
+ }
30
+ .switch input {
31
+ opacity: 0;
32
+ width: 0;
33
+ height: 0;
34
+ }
35
+ .slider {
36
+ position: absolute;
37
+ cursor: pointer;
38
+ top: 0;
39
+ left: 0;
40
+ right: 0;
41
+ bottom: 0;
42
+ background-color: #1e293b;
43
+ transition: .4s;
44
+ border-radius: 34px;
45
+ }
46
+ .slider:before {
47
+ position: absolute;
48
+ content: "";
49
+ height: 22px;
50
+ width: 22px;
51
+ left: 4px;
52
+ bottom: 4px;
53
+ background-color: white;
54
+ transition: .4s;
55
+ border-radius: 50%;
56
+ }
57
+ input:checked + .slider {
58
+ background-color: #3b82f6;
59
+ }
60
+ input:checked + .slider:before {
61
+ transform: translateX(30px);
62
+ }
63
+ .headshot-target {
64
+ animation: pulse 1.5s infinite;
65
+ }
66
+ @keyframes pulse {
67
+ 0% { transform: scale(1); opacity: 0.8; }
68
+ 50% { transform: scale(1.1); opacity: 1; }
69
+ 100% { transform: scale(1); opacity: 0.8; }
70
+ }
71
+ </style>
72
+ </head>
73
+ <body class="bg-gray-900 text-white min-h-screen">
74
+ <div class="container mx-auto px-4 py-8">
75
+ <!-- Header -->
76
+ <header class="flex justify-between items-center mb-8">
77
+ <div class="flex items-center">
78
+ <img src="https://via.placeholder.com/50" alt="Free Fire MAX Logo" class="w-12 h-12 rounded-full mr-3">
79
+ <div>
80
+ <h1 class="text-2xl font-bold bg-gradient-to-r from-blue-500 to-purple-600 bg-clip-text text-transparent">Headshot Pro Panel</h1>
81
+ <p class="text-gray-400 text-sm">Optimize your Free Fire MAX experience</p>
82
+ </div>
83
+ </div>
84
+ <div class="relative">
85
+ <div class="headshot-target bg-red-600 w-10 h-10 rounded-full flex items-center justify-center">
86
+ <i class="fas fa-crosshairs text-white"></i>
87
+ </div>
88
+ <div class="absolute -top-2 -right-2 bg-red-500 text-xs px-2 py-1 rounded-full">PRO</div>
89
+ </div>
90
+ </header>
91
+
92
+ <!-- Permission Request -->
93
+ <div id="permissionSection" class="bg-gray-800 rounded-xl p-6 mb-8 glow-effect">
94
+ <div class="flex items-start">
95
+ <div class="bg-blue-500/20 p-3 rounded-full mr-4">
96
+ <i class="fas fa-shield-alt text-blue-400 text-xl"></i>
97
+ </div>
98
+ <div class="flex-1">
99
+ <h2 class="text-lg font-semibold mb-2">Storage Permission Required</h2>
100
+ <p class="text-gray-300 mb-4">To optimize your Free Fire MAX settings for maximum headshot accuracy, we need storage access to save configuration files and apply optimizations.</p>
101
+ <button id="grantPermissionBtn" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-lg font-medium transition-all">
102
+ Grant Permission
103
+ </button>
104
+ </div>
105
+ </div>
106
+ </div>
107
+
108
+ <!-- Main Panel (hidden until permission granted) -->
109
+ <div id="mainPanel" class="hidden">
110
+ <!-- Sensitivity Controls -->
111
+ <div class="bg-gray-800 rounded-xl p-6 mb-6">
112
+ <div class="flex items-center mb-4">
113
+ <div class="bg-purple-500/20 p-2 rounded-full mr-3">
114
+ <i class="fas fa-bullseye text-purple-400"></i>
115
+ </div>
116
+ <h2 class="text-xl font-semibold">Sensitivity Optimization</h2>
117
+ </div>
118
+
119
+ <div class="space-y-5">
120
+ <!-- General Sensitivity -->
121
+ <div>
122
+ <div class="flex justify-between mb-1">
123
+ <span class="font-medium">General Sensitivity</span>
124
+ <span id="generalValue" class="font-mono">75%</span>
125
+ </div>
126
+ <div class="progress-bar">
127
+ <div id="generalFill" class="progress-fill" style="width: 75%"></div>
128
+ </div>
129
+ <input type="range" min="0" max="100" value="75" class="w-full mt-2 accent-blue-500" id="generalSensitivity">
130
+ </div>
131
+
132
+ <!-- ADS Sensitivity -->
133
+ <div>
134
+ <div class="flex justify-between mb-1">
135
+ <span class="font-medium">ADS Sensitivity</span>
136
+ <span id="adsValue" class="font-mono">68%</span>
137
+ </div>
138
+ <div class="progress-bar">
139
+ <div id="adsFill" class="progress-fill" style="width: 68%"></div>
140
+ </div>
141
+ <input type="range" min="0" max="100" value="68" class="w-full mt-2 accent-blue-500" id="adsSensitivity">
142
+ </div>
143
+
144
+ <!-- Scope Sensitivity -->
145
+ <div>
146
+ <div class="flex justify-between mb-1">
147
+ <span class="font-medium">Scope Sensitivity</span>
148
+ <span id="scopeValue" class="font-mono">72%</span>
149
+ </div>
150
+ <div class="progress-bar">
151
+ <div id="scopeFill" class="progress-fill" style="width: 72%"></div>
152
+ </div>
153
+ <input type="range" min="0" max="100" value="72" class="w-full mt-2 accent-blue-500" id="scopeSensitivity">
154
+ </div>
155
+ </div>
156
+ </div>
157
+
158
+ <!-- Headshot Aim Assist -->
159
+ <div class="bg-gray-800 rounded-xl p-6 mb-6">
160
+ <div class="flex items-center mb-4">
161
+ <div class="bg-red-500/20 p-2 rounded-full mr-3">
162
+ <i class="fas fa-skull text-red-400"></i>
163
+ </div>
164
+ <h2 class="text-xl font-semibold">Headshot Aim Assist</h2>
165
+ </div>
166
+
167
+ <div class="space-y-5">
168
+ <!-- Headshot Priority -->
169
+ <div class="flex items-center justify-between">
170
+ <div>
171
+ <h3 class="font-medium">Headshot Priority Mode</h3>
172
+ <p class="text-sm text-gray-400">Focus aim assist exclusively on head area</p>
173
+ </div>
174
+ <label class="switch">
175
+ <input type="checkbox" id="headshotPriority" checked>
176
+ <span class="slider"></span>
177
+ </label>
178
+ </div>
179
+
180
+ <!-- Aggressiveness -->
181
+ <div>
182
+ <div class="flex justify-between mb-1">
183
+ <span class="font-medium">Aim Aggressiveness</span>
184
+ <span id="aggressiveValue" class="font-mono">85%</span>
185
+ </div>
186
+ <div class="progress-bar">
187
+ <div id="aggressiveFill" class="progress-fill" style="width: 85%"></div>
188
+ </div>
189
+ <input type="range" min="0" max="100" value="85" class="w-full mt-2 accent-red-500" id="aggressiveSlider">
190
+ </div>
191
+
192
+ <!-- Auto Headshot -->
193
+ <div class="flex items-center justify-between">
194
+ <div>
195
+ <h3 class="font-medium">Auto Headshot Assist</h3>
196
+ <p class="text-sm text-gray-400">Automatically adjust crosshair when near head</p>
197
+ </div>
198
+ <label class="switch">
199
+ <input type="checkbox" id="autoHeadshot" checked>
200
+ <span class="slider"></span>
201
+ </label>
202
+ </div>
203
+ </div>
204
+ </div>
205
+
206
+ <!-- Advanced Settings -->
207
+ <div class="bg-gray-800 rounded-xl p-6 mb-6">
208
+ <div class="flex items-center mb-4">
209
+ <div class="bg-yellow-500/20 p-2 rounded-full mr-3">
210
+ <i class="fas fa-cog text-yellow-400"></i>
211
+ </div>
212
+ <h2 class="text-xl font-semibold">Advanced Settings</h2>
213
+ </div>
214
+
215
+ <div class="space-y-4">
216
+ <!-- Recoil Control -->
217
+ <div class="flex items-center justify-between">
218
+ <div>
219
+ <h3 class="font-medium">Enhanced Recoil Control</h3>
220
+ <p class="text-sm text-gray-400">Reduce weapon recoil for better headshot accuracy</p>
221
+ </div>
222
+ <label class="switch">
223
+ <input type="checkbox" id="recoilControl" checked>
224
+ <span class="slider"></span>
225
+ </label>
226
+ </div>
227
+
228
+ <!-- Quick Scope -->
229
+ <div class="flex items-center justify-between">
230
+ <div>
231
+ <h3 class="font-medium">Quick Scope Assist</h3>
232
+ <p class="text-sm text-gray-400">Faster scope-in for sniper headshots</p>
233
+ </div>
234
+ <label class="switch">
235
+ <input type="checkbox" id="quickScope" checked>
236
+ <span class="slider"></span>
237
+ </label>
238
+ </div>
239
+
240
+ <!-- Movement Prediction -->
241
+ <div class="flex items-center justify-between">
242
+ <div>
243
+ <h3 class="font-medium">Movement Prediction</h3>
244
+ <p class="text-sm text-gray-400">Predict enemy movement for headshots</p>
245
+ </div>
246
+ <label class="switch">
247
+ <input type="checkbox" id="movementPrediction">
248
+ <span class="slider"></span>
249
+ </label>
250
+ </div>
251
+ </div>
252
+ </div>
253
+
254
+ <!-- Apply Button -->
255
+ <div class="text-center">
256
+ <button id="applySettings" class="bg-gradient-to-r from-blue-600 to-purple-600 hover:from-blue-700 hover:to-purple-700 text-white px-8 py-3 rounded-full font-bold text-lg transition-all transform hover:scale-105 shadow-lg">
257
+ <i class="fas fa-bolt mr-2"></i> Apply Optimized Settings
258
+ </button>
259
+ <p class="text-gray-400 text-sm mt-2">Settings will be applied to Free Fire MAX configuration</p>
260
+ </div>
261
+ </div>
262
+
263
+ <!-- Status Message -->
264
+ <div id="statusMessage" class="hidden fixed bottom-4 left-1/2 transform -translate-x-1/2 bg-green-600 text-white px-6 py-3 rounded-lg shadow-lg">
265
+ <i class="fas fa-check-circle mr-2"></i>
266
+ <span>Settings applied successfully!</span>
267
+ </div>
268
+ </div>
269
+
270
+ <script>
271
+ // DOM Elements
272
+ const permissionSection = document.getElementById('permissionSection');
273
+ const mainPanel = document.getElementById('mainPanel');
274
+ const grantPermissionBtn = document.getElementById('grantPermissionBtn');
275
+ const statusMessage = document.getElementById('statusMessage');
276
+ const applySettingsBtn = document.getElementById('applySettings');
277
+
278
+ // Slider elements
279
+ const generalSensitivity = document.getElementById('generalSensitivity');
280
+ const adsSensitivity = document.getElementById('adsSensitivity');
281
+ const scopeSensitivity = document.getElementById('scopeSensitivity');
282
+ const aggressiveSlider = document.getElementById('aggressiveSlider');
283
+
284
+ // Value displays
285
+ const generalValue = document.getElementById('generalValue');
286
+ const adsValue = document.getElementById('adsValue');
287
+ const scopeValue = document.getElementById('scopeValue');
288
+ const aggressiveValue = document.getElementById('aggressiveValue');
289
+
290
+ // Progress fills
291
+ const generalFill = document.getElementById('generalFill');
292
+ const adsFill = document.getElementById('adsFill');
293
+ const scopeFill = document.getElementById('scopeFill');
294
+ const aggressiveFill = document.getElementById('aggressiveFill');
295
+
296
+ // Toggle switches
297
+ const headshotPriority = document.getElementById('headshotPriority');
298
+ const autoHeadshot = document.getElementById('autoHeadshot');
299
+ const recoilControl = document.getElementById('recoilControl');
300
+ const quickScope = document.getElementById('quickScope');
301
+ const movementPrediction = document.getElementById('movementPrediction');
302
+
303
+ // Grant permission button click
304
+ grantPermissionBtn.addEventListener('click', function() {
305
+ // Simulate permission granted
306
+ permissionSection.classList.add('hidden');
307
+ mainPanel.classList.remove('hidden');
308
+
309
+ // Show brief loading effect
310
+ grantPermissionBtn.innerHTML = '<i class="fas fa-spinner fa-spin mr-2"></i> Processing...';
311
+ setTimeout(() => {
312
+ grantPermissionBtn.innerHTML = 'Permission Granted';
313
+ grantPermissionBtn.classList.remove('bg-blue-600', 'hover:bg-blue-700');
314
+ grantPermissionBtn.classList.add('bg-green-600', 'hover:bg-green-700');
315
+ }, 1500);
316
+ });
317
+
318
+ // Update slider values in real-time
319
+ generalSensitivity.addEventListener('input', function() {
320
+ generalValue.textContent = this.value + '%';
321
+ generalFill.style.width = this.value + '%';
322
+ });
323
+
324
+ adsSensitivity.addEventListener('input', function() {
325
+ adsValue.textContent = this.value + '%';
326
+ adsFill.style.width = this.value + '%';
327
+ });
328
+
329
+ scopeSensitivity.addEventListener('input', function() {
330
+ scopeValue.textContent = this.value + '%';
331
+ scopeFill.style.width = this.value + '%';
332
+ });
333
+
334
+ aggressiveSlider.addEventListener('input', function() {
335
+ aggressiveValue.textContent = this.value + '%';
336
+ aggressiveFill.style.width = this.value + '%';
337
+ });
338
+
339
+ // Apply settings button click
340
+ applySettingsBtn.addEventListener('click', function() {
341
+ // Show loading state
342
+ applySettingsBtn.innerHTML = '<i class="fas fa-spinner fa-spin mr-2"></i> Applying...';
343
+ applySettingsBtn.disabled = true;
344
+
345
+ // Simulate applying settings
346
+ setTimeout(() => {
347
+ // Show success message
348
+ statusMessage.classList.remove('hidden');
349
+ statusMessage.classList.add('flex', 'items-center');
350
+
351
+ // Reset button
352
+ applySettingsBtn.innerHTML = '<i class="fas fa-bolt mr-2"></i> Apply Optimized Settings';
353
+ applySettingsBtn.disabled = false;
354
+
355
+ // Hide message after 3 seconds
356
+ setTimeout(() => {
357
+ statusMessage.classList.add('hidden');
358
+ }, 3000);
359
+
360
+ // Log applied settings (for demo)
361
+ console.log('Settings Applied:');
362
+ console.log('General Sensitivity:', generalSensitivity.value);
363
+ console.log('ADS Sensitivity:', adsSensitivity.value);
364
+ console.log('Scope Sensitivity:', scopeSensitivity.value);
365
+ console.log('Aim Aggressiveness:', aggressiveSlider.value);
366
+ console.log('Headshot Priority:', headshotPriority.checked);
367
+ console.log('Auto Headshot:', autoHeadshot.checked);
368
+ console.log('Recoil Control:', recoilControl.checked);
369
+ console.log('Quick Scope:', quickScope.checked);
370
+ console.log('Movement Prediction:', movementPrediction.checked);
371
+
372
+ // Optimize for headshots (simulated)
373
+ if (headshotPriority.checked) {
374
+ console.log('Optimizing all settings for maximum headshot accuracy...');
375
+ // In a real app, this would modify game configuration files
376
+ }
377
+ }, 2000);
378
+ });
379
+
380
+ // Initialize tooltips for all info icons
381
+ document.querySelectorAll('.info-icon').forEach(icon => {
382
+ icon.addEventListener('mouseover', function() {
383
+ const tooltip = this.nextElementSibling;
384
+ tooltip.classList.remove('hidden');
385
+ });
386
+
387
+ icon.addEventListener('mouseout', function() {
388
+ const tooltip = this.nextElementSibling;
389
+ tooltip.classList.add('hidden');
390
+ });
391
+ });
392
+ </script>
393
+ <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=Pnkj01/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
394
+ </html>
prompts.txt ADDED
File without changes