Xynqax11 commited on
Commit
2622c32
·
verified ·
1 Parent(s): 26aee3d

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +470 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Zeekamu
3
- emoji: 🔥
4
- colorFrom: blue
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: zeekamu
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: blue
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,470 @@
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>SecureTrack - Social Security Research Platform</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
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
12
+ }
13
+ .card-hover:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
16
+ }
17
+ .sidebar {
18
+ transition: all 0.3s ease;
19
+ }
20
+ .sidebar.collapsed {
21
+ width: 70px;
22
+ }
23
+ .sidebar.collapsed .sidebar-text {
24
+ display: none;
25
+ }
26
+ .sidebar.collapsed .logo-text {
27
+ display: none;
28
+ }
29
+ .sidebar.collapsed .nav-item {
30
+ justify-content: center;
31
+ }
32
+ .chart-container {
33
+ height: 300px;
34
+ }
35
+ .data-table {
36
+ max-height: 400px;
37
+ overflow-y: auto;
38
+ }
39
+ </style>
40
+ </head>
41
+ <body class="bg-gray-50 font-sans">
42
+ <div class="flex h-screen overflow-hidden">
43
+ <!-- Sidebar -->
44
+ <div class="sidebar bg-white w-64 shadow-lg flex flex-col">
45
+ <div class="p-4 flex items-center border-b">
46
+ <div class="bg-blue-600 p-2 rounded-lg">
47
+ <i class="fas fa-shield-alt text-white text-xl"></i>
48
+ </div>
49
+ <h1 class="logo-text text-xl font-bold ml-3 text-blue-800">SecureTrack</h1>
50
+ </div>
51
+
52
+ <div class="flex-1 overflow-y-auto py-4">
53
+ <div class="px-4 mb-6">
54
+ <div class="relative">
55
+ <input type="text" placeholder="Search..." class="w-full pl-10 pr-4 py-2 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
56
+ <i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
57
+ </div>
58
+ </div>
59
+
60
+ <nav class="px-2">
61
+ <a href="#" class="nav-item flex items-center px-4 py-3 text-blue-700 bg-blue-50 rounded-lg mb-1">
62
+ <i class="fas fa-home mr-3 text-blue-600"></i>
63
+ <span class="sidebar-text">Dashboard</span>
64
+ </a>
65
+ <a href="#" class="nav-item flex items-center px-4 py-3 text-gray-600 hover:bg-gray-100 rounded-lg mb-1">
66
+ <i class="fas fa-database mr-3"></i>
67
+ <span class="sidebar-text">Research Data</span>
68
+ </a>
69
+ <a href="#" class="nav-item flex items-center px-4 py-3 text-gray-600 hover:bg-gray-100 rounded-lg mb-1">
70
+ <i class="fas fa-chart-line mr-3"></i>
71
+ <span class="sidebar-text">Analytics</span>
72
+ </a>
73
+ <a href="#" class="nav-item flex items-center px-4 py-3 text-gray-600 hover:bg-gray-100 rounded-lg mb-1">
74
+ <i class="fas fa-user-shield mr-3"></i>
75
+ <span class="sidebar-text">Vulnerabilities</span>
76
+ </a>
77
+ <a href="#" class="nav-item flex items-center px-4 py-3 text-gray-600 hover:bg-gray-100 rounded-lg mb-1">
78
+ <i class="fas fa-file-alt mr-3"></i>
79
+ <span class="sidebar-text">Reports</span>
80
+ </a>
81
+ <a href="#" class="nav-item flex items-center px-4 py-3 text-gray-600 hover:bg-gray-100 rounded-lg mb-1">
82
+ <i class="fas fa-users mr-3"></i>
83
+ <span class="sidebar-text">Collaboration</span>
84
+ </a>
85
+ </nav>
86
+
87
+ <div class="px-4 mt-8">
88
+ <h3 class="text-xs uppercase font-semibold text-gray-500 mb-2 sidebar-text">Tools</h3>
89
+ <a href="#" class="nav-item flex items-center px-4 py-3 text-gray-600 hover:bg-gray-100 rounded-lg mb-1">
90
+ <i class="fas fa-search-dollar mr-3"></i>
91
+ <span class="sidebar-text">Benefit Calculator</span>
92
+ </a>
93
+ <a href="#" class="nav-item flex items-center px-4 py-3 text-gray-600 hover:bg-gray-100 rounded-lg mb-1">
94
+ <i class="fas fa-project-diagram mr-3"></i>
95
+ <span class="sidebar-text">Policy Simulator</span>
96
+ </a>
97
+ </div>
98
+ </div>
99
+
100
+ <div class="p-4 border-t">
101
+ <div class="flex items-center">
102
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-10 h-10 rounded-full">
103
+ <div class="ml-3 sidebar-text">
104
+ <p class="font-medium">Dr. Sarah Johnson</p>
105
+ <p class="text-sm text-gray-500">Senior Researcher</p>
106
+ </div>
107
+ </div>
108
+ </div>
109
+ </div>
110
+
111
+ <!-- Main Content -->
112
+ <div class="flex-1 overflow-auto">
113
+ <!-- Header -->
114
+ <header class="bg-white shadow-sm">
115
+ <div class="flex items-center justify-between px-6 py-4">
116
+ <div class="flex items-center">
117
+ <button id="sidebarToggle" class="mr-4 text-gray-500 hover:text-gray-700">
118
+ <i class="fas fa-bars text-xl"></i>
119
+ </button>
120
+ <h1 class="text-xl font-semibold text-gray-800">Social Security Research Dashboard</h1>
121
+ </div>
122
+ <div class="flex items-center space-x-4">
123
+ <button class="p-2 rounded-full hover:bg-gray-100 text-gray-600">
124
+ <i class="fas fa-bell"></i>
125
+ <span class="sr-only">Notifications</span>
126
+ </button>
127
+ <button class="p-2 rounded-full hover:bg-gray-100 text-gray-600">
128
+ <i class="fas fa-question-circle"></i>
129
+ <span class="sr-only">Help</span>
130
+ </button>
131
+ <div class="relative">
132
+ <button id="userMenuButton" class="flex items-center space-x-2 focus:outline-none">
133
+ <span class="text-sm font-medium">Dr. Johnson</span>
134
+ <i class="fas fa-chevron-down text-xs"></i>
135
+ </button>
136
+ <div id="userMenu" class="hidden absolute right-0 mt-2 w-48 bg-white rounded-md shadow-lg py-1 z-10">
137
+ <a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Profile</a>
138
+ <a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Settings</a>
139
+ <a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Sign out</a>
140
+ </div>
141
+ </div>
142
+ </div>
143
+ </div>
144
+ </header>
145
+
146
+ <!-- Dashboard Content -->
147
+ <main class="p-6">
148
+ <!-- Stats Cards -->
149
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-6">
150
+ <div class="bg-white rounded-lg shadow p-6 card-hover">
151
+ <div class="flex items-center">
152
+ <div class="p-3 rounded-full bg-blue-100 text-blue-600 mr-4">
153
+ <i class="fas fa-users text-xl"></i>
154
+ </div>
155
+ <div>
156
+ <p class="text-sm text-gray-500">Beneficiaries</p>
157
+ <h3 class="text-2xl font-bold">62.4M</h3>
158
+ <p class="text-sm text-green-500">+2.1% from last year</p>
159
+ </div>
160
+ </div>
161
+ </div>
162
+
163
+ <div class="bg-white rounded-lg shadow p-6 card-hover">
164
+ <div class="flex items-center">
165
+ <div class="p-3 rounded-full bg-green-100 text-green-600 mr-4">
166
+ <i class="fas fa-dollar-sign text-xl"></i>
167
+ </div>
168
+ <div>
169
+ <p class="text-sm text-gray-500">Annual Payments</p>
170
+ <h3 class="text-2xl font-bold">$1.2T</h3>
171
+ <p class="text-sm text-red-500">+4.3% from last year</p>
172
+ </div>
173
+ </div>
174
+ </div>
175
+
176
+ <div class="bg-white rounded-lg shadow p-6 card-hover">
177
+ <div class="flex items-center">
178
+ <div class="p-3 rounded-full bg-purple-100 text-purple-600 mr-4">
179
+ <i class="fas fa-exclamation-triangle text-xl"></i>
180
+ </div>
181
+ <div>
182
+ <p class="text-sm text-gray-500">Vulnerabilities</p>
183
+ <h3 class="text-2xl font-bold">1,248</h3>
184
+ <p class="text-sm text-yellow-500">+12 this month</p>
185
+ </div>
186
+ </div>
187
+ </div>
188
+
189
+ <div class="bg-white rounded-lg shadow p-6 card-hover">
190
+ <div class="flex items-center">
191
+ <div class="p-3 rounded-full bg-orange-100 text-orange-600 mr-4">
192
+ <i class="fas fa-file-alt text-xl"></i>
193
+ </div>
194
+ <div>
195
+ <p class="text-sm text-gray-500">Active Research</p>
196
+ <h3 class="text-2xl font-bold">87</h3>
197
+ <p class="text-sm text-blue-500">5 new this week</p>
198
+ </div>
199
+ </div>
200
+ </div>
201
+ </div>
202
+
203
+ <!-- Charts Row -->
204
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-6 mb-6">
205
+ <div class="bg-white rounded-lg shadow p-6">
206
+ <div class="flex justify-between items-center mb-4">
207
+ <h2 class="text-lg font-semibold">Benefit Distribution by Age</h2>
208
+ <div class="flex space-x-2">
209
+ <button class="px-3 py-1 text-sm bg-blue-50 text-blue-600 rounded">Year</button>
210
+ <button class="px-3 py-1 text-sm text-gray-600 hover:bg-gray-100 rounded">Quarter</button>
211
+ <button class="px-3 py-1 text-sm text-gray-600 hover:bg-gray-100 rounded">Month</button>
212
+ </div>
213
+ </div>
214
+ <div class="chart-container">
215
+ <canvas id="benefitChart"></canvas>
216
+ </div>
217
+ </div>
218
+
219
+ <div class="bg-white rounded-lg shadow p-6">
220
+ <div class="flex justify-between items-center mb-4">
221
+ <h2 class="text-lg font-semibold">Fraud Cases by Type</h2>
222
+ <button class="text-blue-600 text-sm font-medium">View All</button>
223
+ </div>
224
+ <div class="chart-container">
225
+ <canvas id="fraudChart"></canvas>
226
+ </div>
227
+ </div>
228
+ </div>
229
+
230
+ <!-- Recent Research & Quick Actions -->
231
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
232
+ <!-- Recent Research -->
233
+ <div class="lg:col-span-2 bg-white rounded-lg shadow">
234
+ <div class="p-6 border-b">
235
+ <h2 class="text-lg font-semibold">Recent Research Projects</h2>
236
+ </div>
237
+ <div class="data-table">
238
+ <table class="min-w-full divide-y divide-gray-200">
239
+ <thead class="bg-gray-50">
240
+ <tr>
241
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Project</th>
242
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th>
243
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Team</th>
244
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Due Date</th>
245
+ </tr>
246
+ </thead>
247
+ <tbody class="bg-white divide-y divide-gray-200">
248
+ <tr class="hover:bg-gray-50">
249
+ <td class="px-6 py-4 whitespace-nowrap">
250
+ <div class="font-medium text-blue-600">SSI Fraud Patterns</div>
251
+ <div class="text-sm text-gray-500">Analyzing emerging fraud techniques</div>
252
+ </td>
253
+ <td class="px-6 py-4 whitespace-nowrap">
254
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">Active</span>
255
+ </td>
256
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">5 members</td>
257
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Jun 15, 2023</td>
258
+ </tr>
259
+ <tr class="hover:bg-gray-50">
260
+ <td class="px-6 py-4 whitespace-nowrap">
261
+ <div class="font-medium text-blue-600">Disability Claim Analysis</div>
262
+ <div class="text-sm text-gray-500">Regional variations in approval rates</div>
263
+ </td>
264
+ <td class="px-6 py-4 whitespace-nowrap">
265
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-100 text-yellow-800">Pending</span>
266
+ </td>
267
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">3 members</td>
268
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">May 30, 2023</td>
269
+ </tr>
270
+ <tr class="hover:bg-gray-50">
271
+ <td class="px-6 py-4 whitespace-nowrap">
272
+ <div class="font-medium text-blue-600">Retirement Age Impact</div>
273
+ <div class="text-sm text-gray-500">Effects of raising retirement age</div>
274
+ </td>
275
+ <td class="px-6 py-4 whitespace-nowrap">
276
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-blue-100 text-blue-800">Review</span>
277
+ </td>
278
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">7 members</td>
279
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Apr 28, 2023</td>
280
+ </tr>
281
+ <tr class="hover:bg-gray-50">
282
+ <td class="px-6 py-4 whitespace-nowrap">
283
+ <div class="font-medium text-blue-600">System Vulnerabilities</div>
284
+ <div class="text-sm text-gray-500">IT security assessment</div>
285
+ </td>
286
+ <td class="px-6 py-4 whitespace-nowrap">
287
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-purple-100 text-purple-800">Completed</span>
288
+ </td>
289
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">4 members</td>
290
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Mar 15, 2023</td>
291
+ </tr>
292
+ </tbody>
293
+ </table>
294
+ </div>
295
+ <div class="p-4 border-t text-center">
296
+ <button class="text-blue-600 font-medium">View All Projects</button>
297
+ </div>
298
+ </div>
299
+
300
+ <!-- Quick Actions -->
301
+ <div class="bg-white rounded-lg shadow">
302
+ <div class="p-6 border-b">
303
+ <h2 class="text-lg font-semibold">Quick Actions</h2>
304
+ </div>
305
+ <div class="p-6">
306
+ <button class="w-full flex items-center justify-between p-4 mb-4 bg-blue-50 text-blue-700 rounded-lg hover:bg-blue-100">
307
+ <div class="flex items-center">
308
+ <i class="fas fa-plus-circle mr-3 text-xl"></i>
309
+ <span>New Research Project</span>
310
+ </div>
311
+ <i class="fas fa-chevron-right"></i>
312
+ </button>
313
+
314
+ <button class="w-full flex items-center justify-between p-4 mb-4 bg-green-50 text-green-700 rounded-lg hover:bg-green-100">
315
+ <div class="flex items-center">
316
+ <i class="fas fa-chart-pie mr-3 text-xl"></i>
317
+ <span>Generate Report</span>
318
+ </div>
319
+ <i class="fas fa-chevron-right"></i>
320
+ </button>
321
+
322
+ <button class="w-full flex items-center justify-between p-4 mb-4 bg-purple-50 text-purple-700 rounded-lg hover:bg-purple-100">
323
+ <div class="flex items-center">
324
+ <i class="fas fa-bug mr-3 text-xl"></i>
325
+ <span>Report Vulnerability</span>
326
+ </div>
327
+ <i class="fas fa-chevron-right"></i>
328
+ </button>
329
+
330
+ <button class="w-full flex items-center justify-between p-4 bg-orange-50 text-orange-700 rounded-lg hover:bg-orange-100">
331
+ <div class="flex items-center">
332
+ <i class="fas fa-users mr-3 text-xl"></i>
333
+ <span>Request Collaboration</span>
334
+ </div>
335
+ <i class="fas fa-chevron-right"></i>
336
+ </button>
337
+ </div>
338
+
339
+ <div class="p-6 border-t">
340
+ <h3 class="text-sm font-medium text-gray-500 mb-3">Upcoming Events</h3>
341
+ <div class="space-y-4">
342
+ <div class="flex">
343
+ <div class="flex-shrink-0 mr-3">
344
+ <div class="flex items-center justify-center w-10 h-10 rounded-full bg-blue-100 text-blue-600">
345
+ <i class="fas fa-calendar-alt"></i>
346
+ </div>
347
+ </div>
348
+ <div>
349
+ <p class="font-medium">Policy Review Meeting</p>
350
+ <p class="text-sm text-gray-500">Tomorrow, 10:00 AM</p>
351
+ </div>
352
+ </div>
353
+ <div class="flex">
354
+ <div class="flex-shrink-0 mr-3">
355
+ <div class="flex items-center justify-center w-10 h-10 rounded-full bg-green-100 text-green-600">
356
+ <i class="fas fa-graduation-cap"></i>
357
+ </div>
358
+ </div>
359
+ <div>
360
+ <p class="font-medium">Research Symposium</p>
361
+ <p class="text-sm text-gray-500">May 15, 1:30 PM</p>
362
+ </div>
363
+ </div>
364
+ </div>
365
+ </div>
366
+ </div>
367
+ </div>
368
+ </main>
369
+ </div>
370
+ </div>
371
+
372
+ <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
373
+ <script>
374
+ // Toggle sidebar
375
+ document.getElementById('sidebarToggle').addEventListener('click', function() {
376
+ document.querySelector('.sidebar').classList.toggle('collapsed');
377
+ });
378
+
379
+ // Toggle user menu
380
+ document.getElementById('userMenuButton').addEventListener('click', function() {
381
+ document.getElementById('userMenu').classList.toggle('hidden');
382
+ });
383
+
384
+ // Close user menu when clicking outside
385
+ document.addEventListener('click', function(event) {
386
+ if (!event.target.closest('#userMenuButton') && !event.target.closest('#userMenu')) {
387
+ document.getElementById('userMenu').classList.add('hidden');
388
+ }
389
+ });
390
+
391
+ // Charts
392
+ const benefitCtx = document.getElementById('benefitChart').getContext('2d');
393
+ const benefitChart = new Chart(benefitCtx, {
394
+ type: 'bar',
395
+ data: {
396
+ labels: ['Under 18', '18-25', '26-35', '36-45', '46-55', '56-65', '66-75', '76+'],
397
+ datasets: [{
398
+ label: 'Beneficiaries (millions)',
399
+ data: [4.3, 5.1, 7.8, 9.2, 12.4, 15.7, 18.2, 9.7],
400
+ backgroundColor: [
401
+ 'rgba(59, 130, 246, 0.7)',
402
+ 'rgba(59, 130, 246, 0.7)',
403
+ 'rgba(59, 130, 246, 0.7)',
404
+ 'rgba(59, 130, 246, 0.7)',
405
+ 'rgba(59, 130, 246, 0.7)',
406
+ 'rgba(59, 130, 246, 0.7)',
407
+ 'rgba(59, 130, 246, 0.7)',
408
+ 'rgba(59, 130, 246, 0.7)'
409
+ ],
410
+ borderColor: [
411
+ 'rgba(59, 130, 246, 1)',
412
+ 'rgba(59, 130, 246, 1)',
413
+ 'rgba(59, 130, 246, 1)',
414
+ 'rgba(59, 130, 246, 1)',
415
+ 'rgba(59, 130, 246, 1)',
416
+ 'rgba(59, 130, 246, 1)',
417
+ 'rgba(59, 130, 246, 1)',
418
+ 'rgba(59, 130, 246, 1)'
419
+ ],
420
+ borderWidth: 1
421
+ }]
422
+ },
423
+ options: {
424
+ responsive: true,
425
+ maintainAspectRatio: false,
426
+ scales: {
427
+ y: {
428
+ beginAtZero: true
429
+ }
430
+ }
431
+ }
432
+ });
433
+
434
+ const fraudCtx = document.getElementById('fraudChart').getContext('2d');
435
+ const fraudChart = new Chart(fraudCtx, {
436
+ type: 'doughnut',
437
+ data: {
438
+ labels: ['Identity Theft', 'False Claims', 'Payment Diversion', 'Document Fraud', 'Other'],
439
+ datasets: [{
440
+ data: [35, 25, 20, 15, 5],
441
+ backgroundColor: [
442
+ 'rgba(239, 68, 68, 0.7)',
443
+ 'rgba(249, 115, 22, 0.7)',
444
+ 'rgba(234, 179, 8, 0.7)',
445
+ 'rgba(20, 184, 166, 0.7)',
446
+ 'rgba(139, 92, 246, 0.7)'
447
+ ],
448
+ borderColor: [
449
+ 'rgba(239, 68, 68, 1)',
450
+ 'rgba(249, 115, 22, 1)',
451
+ 'rgba(234, 179, 8, 1)',
452
+ 'rgba(20, 184, 166, 1)',
453
+ 'rgba(139, 92, 246, 1)'
454
+ ],
455
+ borderWidth: 1
456
+ }]
457
+ },
458
+ options: {
459
+ responsive: true,
460
+ maintainAspectRatio: false,
461
+ plugins: {
462
+ legend: {
463
+ position: 'right',
464
+ }
465
+ }
466
+ }
467
+ });
468
+ </script>
469
+ <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=Xynqax11/zeekamu" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
470
+ </html>
prompts.txt ADDED
File without changes