MakiAi commited on
Commit
0a52206
·
verified ·
1 Parent(s): 961a17f

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +509 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Nekoneko Dash1
3
- emoji: 🏃
4
- colorFrom: green
5
- colorTo: purple
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: nekoneko-dash1
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: pink
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,509 @@
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>NekoNeko Dashboard</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
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
15
+ min-height: 100vh;
16
+ overflow-x: hidden;
17
+ }
18
+
19
+ .glass-card {
20
+ background: rgba(255, 255, 255, 0.25);
21
+ backdrop-filter: blur(10px);
22
+ -webkit-backdrop-filter: blur(10px);
23
+ border-radius: 20px;
24
+ border: 1px solid rgba(255, 255, 255, 0.18);
25
+ box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
26
+ transition: all 0.3s ease;
27
+ }
28
+
29
+ .glass-card:hover {
30
+ transform: translateY(-5px);
31
+ box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
32
+ }
33
+
34
+ .neko-gradient {
35
+ background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
36
+ }
37
+
38
+ .neko-text-gradient {
39
+ background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
40
+ -webkit-background-clip: text;
41
+ background-clip: text;
42
+ color: transparent;
43
+ }
44
+
45
+ .cat-ear {
46
+ width: 0;
47
+ height: 0;
48
+ border-left: 15px solid transparent;
49
+ border-right: 15px solid transparent;
50
+ border-bottom: 30px solid rgba(255, 255, 255, 0.25);
51
+ position: relative;
52
+ filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
53
+ }
54
+
55
+ .cat-ear::before {
56
+ content: '';
57
+ position: absolute;
58
+ top: 5px;
59
+ left: -10px;
60
+ width: 0;
61
+ height: 0;
62
+ border-left: 10px solid transparent;
63
+ border-right: 10px solid transparent;
64
+ border-bottom: 20px solid #ff9a9e;
65
+ }
66
+
67
+ .cat-paw {
68
+ width: 40px;
69
+ height: 30px;
70
+ background: rgba(255, 255, 255, 0.7);
71
+ border-radius: 50%;
72
+ position: relative;
73
+ }
74
+
75
+ .cat-paw::before, .cat-paw::after {
76
+ content: '';
77
+ position: absolute;
78
+ background: rgba(255, 255, 255, 0.7);
79
+ border-radius: 50%;
80
+ }
81
+
82
+ .cat-paw::before {
83
+ width: 15px;
84
+ height: 20px;
85
+ top: -8px;
86
+ left: 5px;
87
+ }
88
+
89
+ .cat-paw::after {
90
+ width: 15px;
91
+ height: 20px;
92
+ top: -8px;
93
+ right: 5px;
94
+ }
95
+
96
+ .neko-scrollbar::-webkit-scrollbar {
97
+ width: 6px;
98
+ height: 6px;
99
+ }
100
+
101
+ .neko-scrollbar::-webkit-scrollbar-track {
102
+ background: rgba(255, 255, 255, 0.2);
103
+ border-radius: 10px;
104
+ }
105
+
106
+ .neko-scrollbar::-webkit-scrollbar-thumb {
107
+ background: rgba(255, 154, 158, 0.5);
108
+ border-radius: 10px;
109
+ }
110
+
111
+ .neko-scrollbar::-webkit-scrollbar-thumb:hover {
112
+ background: rgba(255, 154, 158, 0.8);
113
+ }
114
+
115
+ .cat-nose {
116
+ width: 15px;
117
+ height: 10px;
118
+ background: #ff9a9e;
119
+ border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
120
+ position: relative;
121
+ }
122
+
123
+ .cat-nose::before {
124
+ content: '';
125
+ position: absolute;
126
+ width: 4px;
127
+ height: 8px;
128
+ background: #ff9a9e;
129
+ top: 10px;
130
+ left: 50%;
131
+ transform: translateX(-50%);
132
+ border-radius: 0 0 4px 4px;
133
+ }
134
+
135
+ .whisker {
136
+ position: absolute;
137
+ width: 30px;
138
+ height: 1px;
139
+ background: rgba(0, 0, 0, 0.3);
140
+ }
141
+
142
+ .whisker.left {
143
+ transform: rotate(-20deg);
144
+ left: -25px;
145
+ top: 5px;
146
+ }
147
+
148
+ .whisker.right {
149
+ transform: rotate(20deg);
150
+ right: -25px;
151
+ top: 5px;
152
+ }
153
+
154
+ @keyframes float {
155
+ 0% { transform: translateY(0px); }
156
+ 50% { transform: translateY(-10px); }
157
+ 100% { transform: translateY(0px); }
158
+ }
159
+
160
+ .floating {
161
+ animation: float 3s ease-in-out infinite;
162
+ }
163
+ </style>
164
+ </head>
165
+ <body class="p-4 md:p-8">
166
+ <!-- Cat Ears Header -->
167
+ <div class="flex justify-center mb-2">
168
+ <div class="cat-ear mr-8"></div>
169
+ <div class="cat-ear ml-8"></div>
170
+ </div>
171
+
172
+ <!-- Main Dashboard Container -->
173
+ <div class="max-w-7xl mx-auto">
174
+ <!-- Header -->
175
+ <header class="glass-card p-6 mb-8 flex flex-col md:flex-row justify-between items-center">
176
+ <div class="flex items-center mb-4 md:mb-0">
177
+ <div class="relative mr-4">
178
+ <div class="w-16 h-16 rounded-full bg-white flex items-center justify-center">
179
+ <div class="cat-nose"></div>
180
+ <div class="whisker left"></div>
181
+ <div class="whisker right"></div>
182
+ </div>
183
+ <div class="absolute -bottom-1 -right-1 w-6 h-6 bg-pink-300 rounded-full flex items-center justify-center">
184
+ <i class="fas fa-paw text-white text-xs"></i>
185
+ </div>
186
+ </div>
187
+ <div>
188
+ <h1 class="text-3xl font-bold neko-text-gradient">NekoNeko Dashboard</h1>
189
+ <p class="text-gray-600">Meow~ Welcome back, Neko-chan!</p>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="flex items-center space-x-4">
194
+ <div class="relative">
195
+ <i class="fas fa-bell text-gray-600 text-xl"></i>
196
+ <span class="absolute -top-1 -right-1 w-4 h-4 bg-red-400 rounded-full flex items-center justify-center text-white text-xs">3</span>
197
+ </div>
198
+ <div class="w-10 h-10 rounded-full bg-white flex items-center justify-center overflow-hidden">
199
+ <img src="https://placekitten.com/200/200" alt="Profile" class="w-full h-full object-cover">
200
+ </div>
201
+ </div>
202
+ </header>
203
+
204
+ <!-- Main Content -->
205
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
206
+ <!-- Left Column -->
207
+ <div class="lg:col-span-2 space-y-8">
208
+ <!-- Stats Cards -->
209
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
210
+ <div class="glass-card p-6 rounded-2xl">
211
+ <div class="flex justify-between items-start">
212
+ <div>
213
+ <p class="text-gray-600">Total Nekos</p>
214
+ <h3 class="text-3xl font-bold text-gray-800">1,234</h3>
215
+ </div>
216
+ <div class="p-3 rounded-full bg-white bg-opacity-50">
217
+ <i class="fas fa-cat text-pink-400 text-xl"></i>
218
+ </div>
219
+ </div>
220
+ <div class="mt-4 flex items-center">
221
+ <span class="text-green-500 text-sm font-medium flex items-center">
222
+ <i class="fas fa-arrow-up mr-1"></i> 12%
223
+ </span>
224
+ <span class="text-gray-500 text-sm ml-2">vs last month</span>
225
+ </div>
226
+ </div>
227
+
228
+ <div class="glass-card p-6 rounded-2xl">
229
+ <div class="flex justify-between items-start">
230
+ <div>
231
+ <p class="text-gray-600">Neko Points</p>
232
+ <h3 class="text-3xl font-bold text-gray-800">5,678</h3>
233
+ </div>
234
+ <div class="p-3 rounded-full bg-white bg-opacity-50">
235
+ <i class="fas fa-paw text-purple-400 text-xl"></i>
236
+ </div>
237
+ </div>
238
+ <div class="mt-4 flex items-center">
239
+ <span class="text-green-500 text-sm font-medium flex items-center">
240
+ <i class="fas fa-arrow-up mr-1"></i> 8%
241
+ </span>
242
+ <span class="text-gray-500 text-sm ml-2">vs last month</span>
243
+ </div>
244
+ </div>
245
+
246
+ <div class="glass-card p-6 rounded-2xl">
247
+ <div class="flex justify-between items-start">
248
+ <div>
249
+ <p class="text-gray-600">Treats Given</p>
250
+ <h3 class="text-3xl font-bold text-gray-800">892</h3>
251
+ </div>
252
+ <div class="p-3 rounded-full bg-white bg-opacity-50">
253
+ <i class="fas fa-fish text-yellow-400 text-xl"></i>
254
+ </div>
255
+ </div>
256
+ <div class="mt-4 flex items-center">
257
+ <span class="text-red-500 text-sm font-medium flex items-center">
258
+ <i class="fas fa-arrow-down mr-1"></i> 3%
259
+ </span>
260
+ <span class="text-gray-500 text-sm ml-2">vs last month</span>
261
+ </div>
262
+ </div>
263
+ </div>
264
+
265
+ <!-- Activity Chart -->
266
+ <div class="glass-card p-6 rounded-2xl">
267
+ <div class="flex justify-between items-center mb-6">
268
+ <h2 class="text-xl font-bold text-gray-800">Neko Activity</h2>
269
+ <div class="flex space-x-2">
270
+ <button class="px-3 py-1 text-sm bg-white bg-opacity-50 rounded-full">Daily</button>
271
+ <button class="px-3 py-1 text-sm text-gray-600">Weekly</button>
272
+ <button class="px-3 py-1 text-sm text-gray-600">Monthly</button>
273
+ </div>
274
+ </div>
275
+ <div class="h-64">
276
+ <canvas id="activityChart"></canvas>
277
+ </div>
278
+ </div>
279
+
280
+ <!-- Recent Nekos -->
281
+ <div class="glass-card p-6 rounded-2xl">
282
+ <div class="flex justify-between items-center mb-6">
283
+ <h2 class="text-xl font-bold text-gray-800">Recent Nekos</h2>
284
+ <button class="text-pink-400 text-sm font-medium">View All</button>
285
+ </div>
286
+ <div class="overflow-x-auto neko-scrollbar">
287
+ <table class="w-full">
288
+ <thead>
289
+ <tr class="text-left text-gray-600 border-b border-gray-200 border-opacity-30">
290
+ <th class="pb-3">Name</th>
291
+ <th class="pb-3">Type</th>
292
+ <th class="pb-3">Points</th>
293
+ <th class="pb-3">Status</th>
294
+ <th class="pb-3">Actions</th>
295
+ </tr>
296
+ </thead>
297
+ <tbody class="divide-y divide-gray-200 divide-opacity-30">
298
+ <tr>
299
+ <td class="py-4 flex items-center">
300
+ <div class="w-10 h-10 rounded-full bg-white mr-3 overflow-hidden">
301
+ <img src="https://placekitten.com/100/100" alt="Neko" class="w-full h-full object-cover">
302
+ </div>
303
+ <span class="font-medium">Mochi</span>
304
+ </td>
305
+ <td class="py-4 text-gray-600">Calico</td>
306
+ <td class="py-4 font-medium">1,234</td>
307
+ <td class="py-4">
308
+ <span class="px-2 py-1 bg-green-100 bg-opacity-50 text-green-600 rounded-full text-xs">Active</span>
309
+ </td>
310
+ <td class="py-4">
311
+ <button class="text-pink-400 hover:text-pink-500">
312
+ <i class="fas fa-ellipsis-h"></i>
313
+ </button>
314
+ </td>
315
+ </tr>
316
+ <tr>
317
+ <td class="py-4 flex items-center">
318
+ <div class="w-10 h-10 rounded-full bg-white mr-3 overflow-hidden">
319
+ <img src="https://placekitten.com/101/101" alt="Neko" class="w-full h-full object-cover">
320
+ </div>
321
+ <span class="font-medium">Tama</span>
322
+ </td>
323
+ <td class="py-4 text-gray-600">Tabby</td>
324
+ <td class="py-4 font-medium">987</td>
325
+ <td class="py-4">
326
+ <span class="px-2 py-1 bg-yellow-100 bg-opacity-50 text-yellow-600 rounded-full text-xs">Sleeping</span>
327
+ </td>
328
+ <td class="py-4">
329
+ <button class="text-pink-400 hover:text-pink-500">
330
+ <i class="fas fa-ellipsis-h"></i>
331
+ </button>
332
+ </td>
333
+ </tr>
334
+ <tr>
335
+ <td class="py-4 flex items-center">
336
+ <div class="w-10 h-10 rounded-full bg-white mr-3 overflow-hidden">
337
+ <img src="https://placekitten.com/102/102" alt="Neko" class="w-full h-full object-cover">
338
+ </div>
339
+ <span class="font-medium">Luna</span>
340
+ </td>
341
+ <td class="py-4 text-gray-600">Black</td>
342
+ <td class="py-4 font-medium">1,567</td>
343
+ <td class="py-4">
344
+ <span class="px-2 py-1 bg-blue-100 bg-opacity-50 text-blue-600 rounded-full text-xs">Playing</span>
345
+ </td>
346
+ <td class="py-4">
347
+ <button class="text-pink-400 hover:text-pink-500">
348
+ <i class="fas fa-ellipsis-h"></i>
349
+ </button>
350
+ </td>
351
+ </tr>
352
+ </tbody>
353
+ </table>
354
+ </div>
355
+ </div>
356
+ </div>
357
+
358
+ <!-- Right Column -->
359
+ <div class="space-y-8">
360
+ <!-- Quick Actions -->
361
+ <div class="glass-card p-6 rounded-2xl">
362
+ <h2 class="text-xl font-bold text-gray-800 mb-6">Quick Actions</h2>
363
+ <div class="grid grid-cols-2 gap-4">
364
+ <button class="flex flex-col items-center justify-center p-4 bg-white bg-opacity-50 rounded-xl hover:bg-opacity-70 transition">
365
+ <div class="w-12 h-12 rounded-full neko-gradient flex items-center justify-center text-white mb-2">
366
+ <i class="fas fa-plus"></i>
367
+ </div>
368
+ <span class="text-sm font-medium">Add Neko</span>
369
+ </button>
370
+ <button class="flex flex-col items-center justify-center p-4 bg-white bg-opacity-50 rounded-xl hover:bg-opacity-70 transition">
371
+ <div class="w-12 h-12 rounded-full neko-gradient flex items-center justify-center text-white mb-2">
372
+ <i class="fas fa-treat"></i>
373
+ </div>
374
+ <span class="text-sm font-medium">Give Treat</span>
375
+ </button>
376
+ <button class="flex flex-col items-center justify-center p-4 bg-white bg-opacity-50 rounded-xl hover:bg-opacity-70 transition">
377
+ <div class="w-12 h-12 rounded-full neko-gradient flex items-center justify-center text-white mb-2">
378
+ <i class="fas fa-gamepad"></i>
379
+ </div>
380
+ <span class="text-sm font-medium">Play Game</span>
381
+ </button>
382
+ <button class="flex flex-col items-center justify-center p-4 bg-white bg-opacity-50 rounded-xl hover:bg-opacity-70 transition">
383
+ <div class="w-12 h-12 rounded-full neko-gradient flex items-center justify-center text-white mb-2">
384
+ <i class="fas fa-bell"></i>
385
+ </div>
386
+ <span class="text-sm font-medium">Reminders</span>
387
+ </button>
388
+ </div>
389
+ </div>
390
+
391
+ <!-- Top Nekos -->
392
+ <div class="glass-card p-6 rounded-2xl">
393
+ <h2 class="text-xl font-bold text-gray-800 mb-6">Top Nekos</h2>
394
+ <div class="space-y-4">
395
+ <div class="flex items-center p-3 bg-white bg-opacity-30 rounded-xl">
396
+ <div class="w-12 h-12 rounded-full bg-white mr-4 overflow-hidden">
397
+ <img src="https://placekitten.com/103/103" alt="Neko" class="w-full h-full object-cover">
398
+ </div>
399
+ <div class="flex-1">
400
+ <h4 class="font-medium">Mochi</h4>
401
+ <p class="text-sm text-gray-600">Calico</p>
402
+ </div>
403
+ <div class="text-pink-400 font-bold">1,234</div>
404
+ </div>
405
+ <div class="flex items-center p-3 bg-white bg-opacity-30 rounded-xl">
406
+ <div class="w-12 h-12 rounded-full bg-white mr-4 overflow-hidden">
407
+ <img src="https://placekitten.com/104/104" alt="Neko" class="w-full h-full object-cover">
408
+ </div>
409
+ <div class="flex-1">
410
+ <h4 class="font-medium">Luna</h4>
411
+ <p class="text-sm text-gray-600">Black</p>
412
+ </div>
413
+ <div class="text-pink-400 font-bold">1,567</div>
414
+ </div>
415
+ <div class="flex items-center p-3 bg-white bg-opacity-30 rounded-xl">
416
+ <div class="w-12 h-12 rounded-full bg-white mr-4 overflow-hidden">
417
+ <img src="https://placekitten.com/105/105" alt="Neko" class="w-full h-full object-cover">
418
+ </div>
419
+ <div class="flex-1">
420
+ <h4 class="font-medium">Tama</h4>
421
+ <p class="text-sm text-gray-600">Tabby</p>
422
+ </div>
423
+ <div class="text-pink-400 font-bold">987</div>
424
+ </div>
425
+ </div>
426
+ </div>
427
+
428
+ <!-- Floating Cat -->
429
+ <div class="glass-card p-6 rounded-2xl relative overflow-hidden">
430
+ <div class="absolute -right-10 -bottom-10 w-40 h-40 bg-pink-200 rounded-full opacity-20"></div>
431
+ <div class="relative z-10">
432
+ <h2 class="text-xl font-bold text-gray-800 mb-4">Daily Tip</h2>
433
+ <p class="text-gray-600 mb-6">Nekos love routine! Try to feed and play with them at the same time every day.</p>
434
+ <div class="flex justify-center">
435
+ <div class="cat-paw floating"></div>
436
+ </div>
437
+ </div>
438
+ </div>
439
+ </div>
440
+ </div>
441
+ </div>
442
+
443
+ <!-- Footer -->
444
+ <footer class="mt-12 text-center text-gray-500 text-sm">
445
+ <p>NekoNeko Dashboard © 2023 - Made with <i class="fas fa-heart text-pink-400"></i> for all cat lovers</p>
446
+ </footer>
447
+
448
+ <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
449
+ <script>
450
+ // Activity Chart
451
+ const ctx = document.getElementById('activityChart').getContext('2d');
452
+ const activityChart = new Chart(ctx, {
453
+ type: 'line',
454
+ data: {
455
+ labels: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
456
+ datasets: [{
457
+ label: 'Activity Level',
458
+ data: [65, 59, 80, 81, 56, 55, 40],
459
+ backgroundColor: 'rgba(255, 154, 158, 0.2)',
460
+ borderColor: 'rgba(255, 154, 158, 1)',
461
+ borderWidth: 2,
462
+ tension: 0.4,
463
+ fill: true,
464
+ pointBackgroundColor: 'white',
465
+ pointBorderColor: 'rgba(255, 154, 158, 1)',
466
+ pointBorderWidth: 2,
467
+ pointRadius: 5,
468
+ pointHoverRadius: 7
469
+ }]
470
+ },
471
+ options: {
472
+ responsive: true,
473
+ maintainAspectRatio: false,
474
+ plugins: {
475
+ legend: {
476
+ display: false
477
+ }
478
+ },
479
+ scales: {
480
+ y: {
481
+ beginAtZero: true,
482
+ grid: {
483
+ color: 'rgba(255, 255, 255, 0.3)'
484
+ },
485
+ ticks: {
486
+ color: 'rgba(0, 0, 0, 0.6)'
487
+ }
488
+ },
489
+ x: {
490
+ grid: {
491
+ color: 'rgba(255, 255, 255, 0.3)'
492
+ },
493
+ ticks: {
494
+ color: 'rgba(0, 0, 0, 0.6)'
495
+ }
496
+ }
497
+ }
498
+ }
499
+ });
500
+
501
+ // Add floating animation to some elements
502
+ document.querySelectorAll('.glass-card').forEach((card, index) => {
503
+ if (index % 2 === 0) {
504
+ card.style.animation = `float ${6 + index}s ease-in-out infinite`;
505
+ }
506
+ });
507
+ </script>
508
+ <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=MakiAi/nekoneko-dash1" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
509
+ </html>