voizex commited on
Commit
8c25757
·
verified ·
1 Parent(s): 85b13af

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +548 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Pickmenow
3
- emoji: 🌍
4
- colorFrom: red
5
- colorTo: green
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: pickmenow
3
+ emoji: 🐳
4
+ colorFrom: blue
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,548 @@
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>ACCQUEST Management Portal</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>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#3B82F6',
15
+ secondary: '#10B981',
16
+ dark: '#1F2937',
17
+ light: '#F9FAFB',
18
+ accent: '#6366F1',
19
+ }
20
+ }
21
+ }
22
+ }
23
+ </script>
24
+ <style>
25
+ .sidebar {
26
+ transition: all 0.3s ease;
27
+ }
28
+ .chart-container {
29
+ position: relative;
30
+ height: 300px;
31
+ }
32
+ .dropdown-content {
33
+ display: none;
34
+ position: absolute;
35
+ right: 0;
36
+ min-width: 160px;
37
+ z-index: 1;
38
+ }
39
+ .dropdown:hover .dropdown-content {
40
+ display: block;
41
+ }
42
+ #main-content {
43
+ transition: margin-left 0.3s ease;
44
+ }
45
+ </style>
46
+ </head>
47
+ <body class="bg-gray-100 font-sans">
48
+ <div class="flex h-screen overflow-hidden">
49
+ <!-- Sidebar -->
50
+ <div class="sidebar bg-white w-64 md:w-72 shadow-lg fixed h-full">
51
+ <div class="p-4 border-b border-gray-200">
52
+ <div class="flex items-center">
53
+ <i class="fas fa-shield-alt text-primary text-2xl mr-3"></i>
54
+ <h1 class="text-xl font-bold text-dark">ACCQUEST Portal</h1>
55
+ </div>
56
+ </div>
57
+ <div class="p-4">
58
+ <div class="mb-8">
59
+ <h2 class="text-xs uppercase font-semibold text-gray-500 mb-3">Main</h2>
60
+ <ul>
61
+ <li class="mb-2">
62
+ <a href="#" class="flex items-center p-2 text-primary bg-blue-50 rounded-lg">
63
+ <i class="fas fa-tachometer-alt mr-3"></i>
64
+ <span>Dashboard</span>
65
+ </a>
66
+ </li>
67
+ </ul>
68
+ </div>
69
+ <div class="mb-8">
70
+ <h2 class="text-xs uppercase font-semibold text-gray-500 mb-3">Analysis</h2>
71
+ <ul>
72
+ <li class="mb-2">
73
+ <a href="#" class="flex items-center p-2 text-gray-700 hover:bg-gray-100 rounded-lg">
74
+ <i class="fas fa-network-wired mr-3"></i>
75
+ <span>IPDR Analysis</span>
76
+ </a>
77
+ </li>
78
+ <li class="mb-2">
79
+ <a href="#" class="flex items-center p-2 text-gray-700 hover:bg-gray-100 rounded-lg">
80
+ <i class="fas fa-phone-alt mr-3"></i>
81
+ <span>CDR Analysis</span>
82
+ </a>
83
+ </li>
84
+ <li class="mb-2">
85
+ <a href="#" class="flex items-center p-2 text-gray-700 hover:bg-gray-100 rounded-lg">
86
+ <i class="fas fa-chart-bar mr-3"></i>
87
+ <span>Traffic Analytics</span>
88
+ </a>
89
+ </li>
90
+ </ul>
91
+ </div>
92
+ <div class="mb-8">
93
+ <h2 class="text-xs uppercase font-semibold text-gray-500 mb-3">Management</h2>
94
+ <ul>
95
+ <li class="mb-2">
96
+ <a href="#" class="flex items-center p-2 text-gray-700 hover:bg-gray-100 rounded-lg">
97
+ <i class="fas fa-users mr-3"></i>
98
+ <span>User Management</span>
99
+ </a>
100
+ </li>
101
+ <li class="mb-2">
102
+ <a href="#" class="flex items-center p-2 text-gray-700 hover:bg-gray-100 rounded-lg">
103
+ <i class="fas fa-key mr-3"></i>
104
+ <span>Access Control</span>
105
+ </a>
106
+ </li>
107
+ <li class="mb-2">
108
+ <a href="#" class="flex items-center p-2 text-gray-700 hover:bg-gray-100 rounded-lg">
109
+ <i class="fas fa-cog mr-3"></i>
110
+ <span>Settings</span>
111
+ </a>
112
+ </li>
113
+ </ul>
114
+ </div>
115
+ <div class="mb-8">
116
+ <h2 class="text-xs uppercase font-semibold text-gray-500 mb-3">Reports</h2>
117
+ <ul>
118
+ <li class="mb-2">
119
+ <a href="#" class="flex items-center p-2 text-gray-700 hover:bg-gray-100 rounded-lg">
120
+ <i class="fas fa-file-alt mr-3"></i>
121
+ <span>Generate Reports</span>
122
+ </a>
123
+ </li>
124
+ <li class="mb-2">
125
+ <a href="#" class="flex items-center p-2 text-gray-700 hover:bg-gray-100 rounded-lg">
126
+ <i class="fas fa-history mr-3"></i>
127
+ <span>Audit Logs</span>
128
+ </a>
129
+ </li>
130
+ </ul>
131
+ </div>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Main Content -->
136
+ <div id="main-content" class="flex-1 overflow-auto ml-64 md:ml-72">
137
+ <!-- Top Navigation -->
138
+ <header class="bg-white shadow-sm">
139
+ <div class="flex justify-between items-center p-4">
140
+ <div class="flex items-center">
141
+ <button id="sidebar-toggle" class="text-gray-600 mr-4 md:hidden">
142
+ <i class="fas fa-bars text-xl"></i>
143
+ </button>
144
+ <h2 class="text-lg font-semibold text-dark">Dashboard Overview</h2>
145
+ </div>
146
+ <div class="flex items-center space-x-4">
147
+ <div class="relative">
148
+ <button class="text-gray-600 hover:text-gray-900">
149
+ <i class="fas fa-bell text-xl"></i>
150
+ <span class="absolute top-0 right-0 h-2 w-2 rounded-full bg-red-500"></span>
151
+ </button>
152
+ </div>
153
+ <div class="dropdown relative">
154
+ <button class="flex items-center space-x-2">
155
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="User" class="w-8 h-8 rounded-full">
156
+ <span class="hidden md:inline text-gray-700">Admin User</span>
157
+ <i class="fas fa-chevron-down text-xs text-gray-500"></i>
158
+ </button>
159
+ <div class="dropdown-content mt-2 bg-white shadow-lg rounded-md py-2">
160
+ <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100">Profile</a>
161
+ <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100">Settings</a>
162
+ <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100">Logout</a>
163
+ </div>
164
+ </div>
165
+ </div>
166
+ </div>
167
+ </header>
168
+
169
+ <!-- Main Content Area -->
170
+ <main class="p-4">
171
+ <!-- Stats Cards -->
172
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 mb-6">
173
+ <div class="bg-white p-4 rounded-lg shadow">
174
+ <div class="flex justify-between items-center">
175
+ <div>
176
+ <p class="text-gray-500 text-sm">Total Sessions</p>
177
+ <h3 class="text-2xl font-bold text-dark">12,456</h3>
178
+ <p class="text-green-500 text-sm flex items-center">
179
+ <i class="fas fa-arrow-up mr-1"></i> 12% from last week
180
+ </p>
181
+ </div>
182
+ <div class="bg-blue-50 p-3 rounded-full">
183
+ <i class="fas fa-network-wired text-primary text-xl"></i>
184
+ </div>
185
+ </div>
186
+ </div>
187
+ <div class="bg-white p-4 rounded-lg shadow">
188
+ <div class="flex justify-between items-center">
189
+ <div>
190
+ <p class="text-gray-500 text-sm">Total Calls</p>
191
+ <h3 class="text-2xl font-bold text-dark">3,789</h3>
192
+ <p class="text-red-500 text-sm flex items-center">
193
+ <i class="fas fa-arrow-down mr-1"></i> 5% from last week
194
+ </p>
195
+ </div>
196
+ <div class="bg-green-50 p-3 rounded-full">
197
+ <i class="fas fa-phone-alt text-secondary text-xl"></i>
198
+ </div>
199
+ </div>
200
+ </div>
201
+ <div class="bg-white p-4 rounded-lg shadow">
202
+ <div class="flex justify-between items-center">
203
+ <div>
204
+ <p class="text-gray-500 text-sm">Active Users</p>
205
+ <h3 class="text-2xl font-bold text-dark">1,234</h3>
206
+ <p class="text-green-500 text-sm flex items-center">
207
+ <i class="fas fa-arrow-up mr-1"></i> 8% from last week
208
+ </p>
209
+ </div>
210
+ <div class="bg-purple-50 p-3 rounded-full">
211
+ <i class="fas fa-users text-accent text-xl"></i>
212
+ </div>
213
+ </div>
214
+ </div>
215
+ <div class="bg-white p-4 rounded-lg shadow">
216
+ <div class="flex justify-between items-center">
217
+ <div>
218
+ <p class="text-gray-500 text-sm">Alerts</p>
219
+ <h3 class="text-2xl font-bold text-dark">24</h3>
220
+ <p class="text-gray-500 text-sm">Need attention</p>
221
+ </div>
222
+ <div class="bg-red-50 p-3 rounded-full">
223
+ <i class="fas fa-exclamation-triangle text-red-500 text-xl"></i>
224
+ </div>
225
+ </div>
226
+ </div>
227
+ </div>
228
+
229
+ <!-- IPDR and CDR Analysis Section -->
230
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-6 mb-6">
231
+ <!-- IPDR Analysis Card -->
232
+ <div class="bg-white p-4 rounded-lg shadow">
233
+ <div class="flex justify-between items-center mb-4">
234
+ <h3 class="text-lg font-semibold text-dark">
235
+ <i class="fas fa-network-wired text-primary mr-2"></i> IPDR Analysis
236
+ </h3>
237
+ <div class="relative">
238
+ <select class="bg-gray-100 border-0 text-sm rounded px-3 py-1 focus:outline-none">
239
+ <option>Last 24 Hours</option>
240
+ <option>Last 7 Days</option>
241
+ <option>Last 30 Days</option>
242
+ </select>
243
+ </div>
244
+ </div>
245
+ <div class="chart-container">
246
+ <canvas id="ipdrChart"></canvas>
247
+ </div>
248
+ <div class="mt-4 grid grid-cols-3 gap-2 text-center">
249
+ <div class="p-2">
250
+ <p class="text-gray-500 text-sm">Avg. Duration</p>
251
+ <p class="font-semibold">12.4 min</p>
252
+ </div>
253
+ <div class="p-2">
254
+ <p class="text-gray-500 text-sm">Data Volume</p>
255
+ <p class="font-semibold">1.2 TB</p>
256
+ </div>
257
+ <div class="p-2">
258
+ <p class="text-gray-500 text-sm">Peak Time</p>
259
+ <p class="font-semibold">14:00-16:00</p>
260
+ </div>
261
+ </div>
262
+ <div class="mt-4">
263
+ <button class="w-full bg-primary hover:bg-blue-700 text-white py-2 px-4 rounded-lg transition">
264
+ View Detailed Analysis
265
+ </button>
266
+ </div>
267
+ </div>
268
+
269
+ <!-- CDR Analysis Card -->
270
+ <div class="bg-white p-4 rounded-lg shadow">
271
+ <div class="flex justify-between items-center mb-4">
272
+ <h3 class="text-lg font-semibold text-dark">
273
+ <i class="fas fa-phone-alt text-secondary mr-2"></i> CDR Analysis
274
+ </h3>
275
+ <div class="relative">
276
+ <select class="bg-gray-100 border-0 text-sm rounded px-3 py-1 focus:outline-none">
277
+ <option>Last 24 Hours</option>
278
+ <option>Last 7 Days</option>
279
+ <option>Last 30 Days</option>
280
+ </select>
281
+ </div>
282
+ </div>
283
+ <div class="chart-container">
284
+ <canvas id="cdrChart"></canvas>
285
+ </div>
286
+ <div class="mt-4 grid grid-cols-3 gap-2 text-center">
287
+ <div class="p-2">
288
+ <p class="text-gray-500 text-sm">Avg. Duration</p>
289
+ <p class="font-semibold">4.2 min</p>
290
+ </div>
291
+ <div class="p-2">
292
+ <p class="text-gray-500 text-sm">Call Volume</p>
293
+ <p class="font-semibold">3,789</p>
294
+ </div>
295
+ <div class="p-2">
296
+ <p class="text-gray-500 text-sm">Peak Time</p>
297
+ <p class="font-semibold">10:00-12:00</p>
298
+ </div>
299
+ </div>
300
+ <div class="mt-4">
301
+ <button class="w-full bg-secondary hover:bg-green-700 text-white py-2 px-4 rounded-lg transition">
302
+ View Detailed Analysis
303
+ </button>
304
+ </div>
305
+ </div>
306
+ </div>
307
+
308
+ <!-- Recent Activities and Top Users -->
309
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6">
310
+ <!-- Recent Activities -->
311
+ <div class="bg-white p-4 rounded-lg shadow lg:col-span-2">
312
+ <div class="flex justify-between items-center mb-4">
313
+ <h3 class="text-lg font-semibold text-dark">
314
+ <i class="fas fa-history text-accent mr-2"></i> Recent Activities
315
+ </h3>
316
+ <button class="text-primary text-sm">View All</button>
317
+ </div>
318
+ <div class="space-y-4">
319
+ <div class="flex items-start">
320
+ <div class="bg-blue-50 p-2 rounded-full mr-3">
321
+ <i class="fas fa-user-plus text-primary"></i>
322
+ </div>
323
+ <div>
324
+ <p class="text-sm font-medium">New user registered</p>
325
+ <p class="text-xs text-gray-500">John Doe registered at 10:30 AM</p>
326
+ </div>
327
+ <span class="ml-auto text-xs text-gray-500">10 min ago</span>
328
+ </div>
329
+ <div class="flex items-start">
330
+ <div class="bg-red-50 p-2 rounded-full mr-3">
331
+ <i class="fas fa-exclamation-triangle text-red-500"></i>
332
+ </div>
333
+ <div>
334
+ <p class="text-sm font-medium">Security alert</p>
335
+ <p class="text-xs text-gray-500">Multiple failed login attempts detected</p>
336
+ </div>
337
+ <span class="ml-auto text-xs text-gray-500">25 min ago</span>
338
+ </div>
339
+ <div class="flex items-start">
340
+ <div class="bg-green-50 p-2 rounded-full mr-3">
341
+ <i class="fas fa-file-export text-secondary"></i>
342
+ </div>
343
+ <div>
344
+ <p class="text-sm font-medium">Report generated</p>
345
+ <p class="text-xs text-gray-500">CDR analysis report for last week</p>
346
+ </div>
347
+ <span class="ml-auto text-xs text-gray-500">1 hour ago</span>
348
+ </div>
349
+ <div class="flex items-start">
350
+ <div class="bg-purple-50 p-2 rounded-full mr-3">
351
+ <i class="fas fa-cog text-accent"></i>
352
+ </div>
353
+ <div>
354
+ <p class="text-sm font-medium">System update</p>
355
+ <p class="text-xs text-gray-500">System updated to version 2.3.1</p>
356
+ </div>
357
+ <span class="ml-auto text-xs text-gray-500">2 hours ago</span>
358
+ </div>
359
+ </div>
360
+ </div>
361
+
362
+ <!-- Top Users -->
363
+ <div class="bg-white p-4 rounded-lg shadow">
364
+ <div class="flex justify-between items-center mb-4">
365
+ <h3 class="text-lg font-semibold text-dark">
366
+ <i class="fas fa-users text-accent mr-2"></i> Top Users
367
+ </h3>
368
+ <button class="text-primary text-sm">View All</button>
369
+ </div>
370
+ <div class="space-y-4">
371
+ <div class="flex items-center">
372
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-10 h-10 rounded-full mr-3">
373
+ <div>
374
+ <p class="text-sm font-medium">Sarah Johnson</p>
375
+ <p class="text-xs text-gray-500">1.2 TB data usage</p>
376
+ </div>
377
+ <span class="ml-auto bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">IPDR</span>
378
+ </div>
379
+ <div class="flex items-center">
380
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="User" class="w-10 h-10 rounded-full mr-3">
381
+ <div>
382
+ <p class="text-sm font-medium">Michael Brown</p>
383
+ <p class="text-xs text-gray-500">342 calls</p>
384
+ </div>
385
+ <span class="ml-auto bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">CDR</span>
386
+ </div>
387
+ <div class="flex items-center">
388
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="User" class="w-10 h-10 rounded-full mr-3">
389
+ <div>
390
+ <p class="text-sm font-medium">Emily Davis</p>
391
+ <p class="text-xs text-gray-500">980 MB data usage</p>
392
+ </div>
393
+ <span class="ml-auto bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">IPDR</span>
394
+ </div>
395
+ <div class="flex items-center">
396
+ <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="User" class="w-10 h-10 rounded-full mr-3">
397
+ <div>
398
+ <p class="text-sm font-medium">Robert Wilson</p>
399
+ <p class="text-xs text-gray-500">256 calls</p>
400
+ </div>
401
+ <span class="ml-auto bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">CDR</span>
402
+ </div>
403
+ </div>
404
+ </div>
405
+ </div>
406
+
407
+ <!-- Quick Actions -->
408
+ <div class="bg-white p-4 rounded-lg shadow mb-6">
409
+ <h3 class="text-lg font-semibold text-dark mb-4">
410
+ <i class="fas fa-bolt text-yellow-500 mr-2"></i> Quick Actions
411
+ </h3>
412
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
413
+ <button class="flex flex-col items-center justify-center p-4 bg-blue-50 rounded-lg hover:bg-blue-100 transition">
414
+ <i class="fas fa-search text-primary text-xl mb-2"></i>
415
+ <span class="text-sm">Search Records</span>
416
+ </button>
417
+ <button class="flex flex-col items-center justify-center p-4 bg-green-50 rounded-lg hover:bg-green-100 transition">
418
+ <i class="fas fa-file-export text-secondary text-xl mb-2"></i>
419
+ <span class="text-sm">Export Data</span>
420
+ </button>
421
+ <button class="flex flex-col items-center justify-center p-4 bg-purple-50 rounded-lg hover:bg-purple-100 transition">
422
+ <i class="fas fa-chart-pie text-accent text-xl mb-2"></i>
423
+ <span class="text-sm">Create Report</span>
424
+ </button>
425
+ <button class="flex flex-col items-center justify-center p-4 bg-red-50 rounded-lg hover:bg-red-100 transition">
426
+ <i class="fas fa-bell text-red-500 text-xl mb-2"></i>
427
+ <span class="text-sm">Set Alert</span>
428
+ </button>
429
+ </div>
430
+ </div>
431
+ </main>
432
+ </div>
433
+ </div>
434
+
435
+ <!-- Chart.js -->
436
+ <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
437
+ <script>
438
+ // Toggle sidebar on mobile
439
+ document.getElementById('sidebar-toggle').addEventListener('click', function() {
440
+ const sidebar = document.querySelector('.sidebar');
441
+ const mainContent = document.getElementById('main-content');
442
+
443
+ if (sidebar.style.transform === 'translateX(-100%)') {
444
+ sidebar.style.transform = 'translateX(0)';
445
+ mainContent.style.marginLeft = '16rem';
446
+ } else {
447
+ sidebar.style.transform = 'translateX(-100%)';
448
+ mainContent.style.marginLeft = '0';
449
+ }
450
+ });
451
+
452
+ // IPDR Chart
453
+ const ipdrCtx = document.getElementById('ipdrChart').getContext('2d');
454
+ const ipdrChart = new Chart(ipdrCtx, {
455
+ type: 'line',
456
+ data: {
457
+ labels: ['00:00', '04:00', '08:00', '12:00', '16:00', '20:00'],
458
+ datasets: [{
459
+ label: 'Data Volume (GB)',
460
+ data: [120, 80, 200, 350, 280, 180],
461
+ borderColor: '#3B82F6',
462
+ backgroundColor: 'rgba(59, 130, 246, 0.1)',
463
+ borderWidth: 2,
464
+ fill: true,
465
+ tension: 0.4
466
+ }]
467
+ },
468
+ options: {
469
+ responsive: true,
470
+ maintainAspectRatio: false,
471
+ plugins: {
472
+ legend: {
473
+ display: false
474
+ }
475
+ },
476
+ scales: {
477
+ y: {
478
+ beginAtZero: true,
479
+ grid: {
480
+ drawBorder: false
481
+ }
482
+ },
483
+ x: {
484
+ grid: {
485
+ display: false
486
+ }
487
+ }
488
+ }
489
+ }
490
+ });
491
+
492
+ // CDR Chart
493
+ const cdrCtx = document.getElementById('cdrChart').getContext('2d');
494
+ const cdrChart = new Chart(cdrCtx, {
495
+ type: 'bar',
496
+ data: {
497
+ labels: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
498
+ datasets: [{
499
+ label: 'Call Volume',
500
+ data: [450, 520, 480, 600, 550, 300, 200],
501
+ backgroundColor: '#10B981',
502
+ borderColor: '#10B981',
503
+ borderWidth: 1
504
+ }]
505
+ },
506
+ options: {
507
+ responsive: true,
508
+ maintainAspectRatio: false,
509
+ plugins: {
510
+ legend: {
511
+ display: false
512
+ }
513
+ },
514
+ scales: {
515
+ y: {
516
+ beginAtZero: true,
517
+ grid: {
518
+ drawBorder: false
519
+ }
520
+ },
521
+ x: {
522
+ grid: {
523
+ display: false
524
+ }
525
+ }
526
+ }
527
+ }
528
+ });
529
+
530
+ // Responsive adjustments
531
+ function handleResize() {
532
+ const sidebar = document.querySelector('.sidebar');
533
+ const mainContent = document.getElementById('main-content');
534
+
535
+ if (window.innerWidth < 768) {
536
+ sidebar.style.transform = 'translateX(-100%)';
537
+ mainContent.style.marginLeft = '0';
538
+ } else {
539
+ sidebar.style.transform = 'translateX(0)';
540
+ mainContent.style.marginLeft = '16rem';
541
+ }
542
+ }
543
+
544
+ window.addEventListener('resize', handleResize);
545
+ handleResize(); // Initial call
546
+ </script>
547
+ <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=voizex/pickmenow" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
548
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Build a ACCQUEST MANAGEMENT PORTAL WITH IPDR ANALYSIS AND CDR ANALYSIS MAIN PAGE INCLUDING ALL FEATURES