APAOLO commited on
Commit
844c2d2
·
verified ·
1 Parent(s): a1aaaa7

{ "element": { "id": "BiOTOKEN1365800000587THAi", "name": "Example Element", "type": "image", "created_at": "2025-08-06T03:39:00Z", "status": "active" } } - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +467 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Googleedgeai Onmicrosoft Com
3
- emoji: 📊
4
- colorFrom: indigo
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: googleedgeai-onmicrosoft-com
3
+ emoji: 🐳
4
+ colorFrom: green
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,467 @@
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>Dataset Repository Explorer</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: '#1e40af',
16
+ accent: '#60a5fa',
17
+ dark: '#0f172a',
18
+ light: '#f8fafc'
19
+ }
20
+ }
21
+ }
22
+ }
23
+ </script>
24
+ <style>
25
+ .file-tree {
26
+ transition: all 0.3s ease;
27
+ }
28
+ .file-item:hover {
29
+ background-color: rgba(59, 130, 246, 0.1);
30
+ }
31
+ .collapsible-content {
32
+ max-height: 0;
33
+ overflow: hidden;
34
+ transition: max-height 0.3s ease-out;
35
+ }
36
+ .collapsible-content.active {
37
+ max-height: 500px;
38
+ }
39
+ .file-icon {
40
+ transition: transform 0.2s ease;
41
+ }
42
+ .file-icon.rotate {
43
+ transform: rotate(90deg);
44
+ }
45
+ .stats-card {
46
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
47
+ }
48
+ .stats-card:hover {
49
+ transform: translateY(-5px);
50
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
51
+ }
52
+ .pulse {
53
+ animation: pulse 2s infinite;
54
+ }
55
+ @keyframes pulse {
56
+ 0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
57
+ 70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
58
+ 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
59
+ }
60
+ </style>
61
+ </head>
62
+ <body class="bg-gradient-to-br from-gray-50 to-gray-100 min-h-screen">
63
+ <div class="container mx-auto px-4 py-8">
64
+ <!-- Header -->
65
+ <header class="mb-10 text-center">
66
+ <h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-3">Dataset Repository Explorer</h1>
67
+ <p class="text-gray-600 max-w-2xl mx-auto">Browse and explore your dataset repository structure with detailed file information</p>
68
+ </header>
69
+
70
+ <!-- Stats Overview -->
71
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-10">
72
+ <div class="stats-card bg-white rounded-xl p-6 shadow-md border border-gray-100">
73
+ <div class="flex items-center">
74
+ <div class="p-3 rounded-lg bg-blue-100 text-blue-600 mr-4">
75
+ <i class="fas fa-folder fa-lg"></i>
76
+ </div>
77
+ <div>
78
+ <p class="text-gray-500 text-sm">Folders</p>
79
+ <p class="text-2xl font-bold">1</p>
80
+ </div>
81
+ </div>
82
+ </div>
83
+
84
+ <div class="stats-card bg-white rounded-xl p-6 shadow-md border border-gray-100">
85
+ <div class="flex items-center">
86
+ <div class="p-3 rounded-lg bg-green-100 text-green-600 mr-4">
87
+ <i class="fas fa-file-csv fa-lg"></i>
88
+ </div>
89
+ <div>
90
+ <p class="text-gray-500 text-sm">CSV Files</p>
91
+ <p class="text-2xl font-bold">3</p>
92
+ </div>
93
+ </div>
94
+ </div>
95
+
96
+ <div class="stats-card bg-white rounded-xl p-6 shadow-md border border-gray-100">
97
+ <div class="flex items-center">
98
+ <div class="p-3 rounded-lg bg-purple-100 text-purple-600 mr-4">
99
+ <i class="fas fa-database fa-lg"></i>
100
+ </div>
101
+ <div>
102
+ <p class="text-gray-500 text-sm">Total Size</p>
103
+ <p class="text-2xl font-bold">12.4 MB</p>
104
+ </div>
105
+ </div>
106
+ </div>
107
+
108
+ <div class="stats-card bg-white rounded-xl p-6 shadow-md border border-gray-100">
109
+ <div class="flex items-center">
110
+ <div class="p-3 rounded-lg bg-amber-100 text-amber-600 mr-4">
111
+ <i class="fas fa-code-branch fa-lg"></i>
112
+ </div>
113
+ <div>
114
+ <p class="text-gray-500 text-sm">Last Updated</p>
115
+ <p class="text-2xl font-bold">2 days ago</p>
116
+ </div>
117
+ </div>
118
+ </div>
119
+ </div>
120
+
121
+ <!-- Main Content -->
122
+ <div class="flex flex-col lg:flex-row gap-8">
123
+ <!-- File Explorer -->
124
+ <div class="lg:w-1/3">
125
+ <div class="bg-white rounded-2xl shadow-lg overflow-hidden">
126
+ <div class="bg-gradient-to-r from-primary to-secondary p-5">
127
+ <h2 class="text-xl font-bold text-white flex items-center">
128
+ <i class="fas fa-folder-tree mr-2"></i> Repository Structure
129
+ </h2>
130
+ </div>
131
+
132
+ <div class="p-5">
133
+ <div class="file-tree">
134
+ <!-- Root folder -->
135
+ <div class="file-item mb-2">
136
+ <div class="flex items-center cursor-pointer" onclick="toggleFolder(this)">
137
+ <i class="fas fa-folder text-yellow-500 mr-2 file-icon"></i>
138
+ <span class="font-medium">my_dataset_repository</span>
139
+ <span class="ml-auto text-gray-500 text-sm">4 items</span>
140
+ </div>
141
+
142
+ <!-- Folder contents -->
143
+ <div class="collapsible-content pl-6 mt-2">
144
+ <!-- README.md -->
145
+ <div class="file-item flex items-center py-2 px-3 rounded-lg">
146
+ <i class="fas fa-file-alt text-blue-500 mr-2"></i>
147
+ <span>README.md</span>
148
+ <span class="ml-auto text-gray-500 text-sm">2.4 KB</span>
149
+ </div>
150
+
151
+ <!-- train.csv -->
152
+ <div class="file-item flex items-center py-2 px-3 rounded-lg">
153
+ <i class="fas fa-file-csv text-green-500 mr-2"></i>
154
+ <span>train.csv</span>
155
+ <span class="ml-auto text-gray-500 text-sm">8.2 MB</span>
156
+ </div>
157
+
158
+ <!-- test.csv -->
159
+ <div class="file-item flex items-center py-2 px-3 rounded-lg">
160
+ <i class="fas fa-file-csv text-green-500 mr-2"></i>
161
+ <span>test.csv</span>
162
+ <span class="ml-auto text-gray-500 text-sm">2.1 MB</span>
163
+ </div>
164
+
165
+ <!-- validation.csv -->
166
+ <div class="file-item flex items-center py-2 px-3 rounded-lg">
167
+ <i class="fas fa-file-csv text-green-500 mr-2"></i>
168
+ <span>validation.csv</span>
169
+ <span class="ml-auto text-gray-500 text-sm">1.7 MB</span>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </div>
174
+
175
+ <div class="mt-6 pt-4 border-t border-gray-200">
176
+ <h3 class="font-bold text-gray-700 mb-3">Quick Actions</h3>
177
+ <div class="flex flex-wrap gap-2">
178
+ <button class="flex items-center bg-blue-100 hover:bg-blue-200 text-blue-700 px-3 py-2 rounded-lg text-sm transition">
179
+ <i class="fas fa-download mr-1"></i> Download All
180
+ </button>
181
+ <button class="flex items-center bg-green-100 hover:bg-green-200 text-green-700 px-3 py-2 rounded-lg text-sm transition">
182
+ <i class="fas fa-sync-alt mr-1"></i> Refresh
183
+ </button>
184
+ <button class="flex items-center bg-purple-100 hover:bg-purple-200 text-purple-700 px-3 py-2 rounded-lg text-sm transition">
185
+ <i class="fas fa-code-branch mr-1"></i> Clone
186
+ </button>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- File Details -->
194
+ <div class="lg:w-2/3">
195
+ <div class="bg-white rounded-2xl shadow-lg overflow-hidden mb-8">
196
+ <div class="bg-gradient-to-r from-primary to-secondary p-5">
197
+ <h2 class="text-xl font-bold text-white flex items-center">
198
+ <i class="fas fa-info-circle mr-2"></i> File Details
199
+ </h2>
200
+ </div>
201
+
202
+ <div class="p-5">
203
+ <div class="flex items-start mb-6">
204
+ <div class="p-4 bg-blue-100 rounded-xl mr-4">
205
+ <i class="fas fa-file-csv text-3xl text-blue-600"></i>
206
+ </div>
207
+ <div>
208
+ <h3 class="text-2xl font-bold text-gray-800">train.csv</h3>
209
+ <p class="text-gray-600">Training dataset for machine learning model</p>
210
+ <div class="flex flex-wrap gap-2 mt-2">
211
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">CSV</span>
212
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Training Data</span>
213
+ <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">8.2 MB</span>
214
+ </div>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Example Element Image -->
219
+ <div class="mb-6">
220
+ <img id="BiOTOKEN1365800000587THAi" src="https://placehold.co/600x400?text=Dataset+Visualization" alt="Example Element" class="w-full rounded-xl shadow-md">
221
+ <p class="text-center text-gray-600 mt-2 text-sm">Dataset Visualization</p>
222
+ </div>
223
+
224
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
225
+ <div class="bg-gray-50 p-4 rounded-xl">
226
+ <h4 class="font-bold text-gray-700 mb-2">Dataset Overview</h4>
227
+ <ul class="space-y-2">
228
+ <li class="flex justify-between">
229
+ <span class="text-gray-600">Rows:</span>
230
+ <span class="font-medium">42,840</span>
231
+ </li>
232
+ <li class="flex justify-between">
233
+ <span class="text-gray-600">Columns:</span>
234
+ <span class="font-medium">18</span>
235
+ </li>
236
+ <li class="flex justify-between">
237
+ <span class="text-gray-600">Missing Values:</span>
238
+ <span class="font-medium">0.2%</span>
239
+ </li>
240
+ <li class="flex justify-between">
241
+ <span class="text-gray-600">Last Modified:</span>
242
+ <span class="font-medium">2023-07-15</span>
243
+ </li>
244
+ </ul>
245
+ </div>
246
+
247
+ <div class="bg-gray-50 p-4 rounded-xl">
248
+ <h4 class="font-bold text-gray-700 mb-2">Column Types</h4>
249
+ <div class="space-y-2">
250
+ <div class="flex items-center">
251
+ <div class="w-3 h-3 bg-blue-500 rounded-full mr-2"></div>
252
+ <span class="text-gray-600">Numerical:</span>
253
+ <span class="ml-auto font-medium">12</span>
254
+ </div>
255
+ <div class="flex items-center">
256
+ <div class="w-3 h-3 bg-green-500 rounded-full mr-2"></div>
257
+ <span class="text-gray-600">Categorical:</span>
258
+ <span class="ml-auto font-medium">5</span>
259
+ </div>
260
+ <div class="flex items-center">
261
+ <div class="w-3 h-3 bg-amber-500 rounded-full mr-2"></div>
262
+ <span class="text-gray-600">Text:</span>
263
+ <span class="ml-auto font-medium">1</span>
264
+ </div>
265
+ </div>
266
+ </div>
267
+ </div>
268
+
269
+ <div class="border-t border-gray-200 pt-4">
270
+ <h4 class="font-bold text-gray-700 mb-3">Preview (First 5 rows)</h4>
271
+ <div class="overflow-x-auto">
272
+ <table class="min-w-full bg-white rounded-lg overflow-hidden">
273
+ <thead class="bg-gray-100">
274
+ <tr>
275
+ <th class="py-2 px-4 text-left text-gray-600 font-medium">ID</th>
276
+ <th class="py-2 px-4 text-left text-gray-600 font-medium">Feature 1</th>
277
+ <th class="py-2 px-4 text-left text-gray-600 font-medium">Feature 2</th>
278
+ <th class="py-2 px-4 text-left text-gray-600 font-medium">Target</th>
279
+ </tr>
280
+ </thead>
281
+ <tbody>
282
+ <tr class="border-b border-gray-100">
283
+ <td class="py-2 px-4">1</td>
284
+ <td class="py-2 px-4">0.84</td>
285
+ <td class="py-2 px-4">Category A</td>
286
+ <td class="py-2 px-4">1</td>
287
+ </tr>
288
+ <tr class="border-b border-gray-100">
289
+ <td class="py-2 px-4">2</td>
290
+ <td class="py-2 px-4">0.67</td>
291
+ <td class="py-2 px-4">Category B</td>
292
+ <td class="py-2 px-4">0</td>
293
+ </tr>
294
+ <tr class="border-b border-gray-100">
295
+ <td class="py-2 px-4">3</td>
296
+ <td class="py-2 px-4">0.92</td>
297
+ <td class="py-2 px-4">Category A</td>
298
+ <td class="py-2 px-4">1</td>
299
+ </tr>
300
+ <tr class="border-b border-gray-100">
301
+ <td class="py-2 px-4">4</td>
302
+ <td class="py-2 px-4">0.45</td>
303
+ <td class="py-2 px-4">Category C</td>
304
+ <td class="py-2 px-4">0</td>
305
+ </tr>
306
+ <tr>
307
+ <td class="py-2 px-4">5</td>
308
+ <td class="py-2 px-4">0.78</td>
309
+ <td class="py-2 px-4">Category B</td>
310
+ <td class="py-2 px-4">1</td>
311
+ </tr>
312
+ </tbody>
313
+ </table>
314
+ </div>
315
+ </div>
316
+ </div>
317
+ </div>
318
+
319
+ <!-- Recent Activity -->
320
+ <div class="bg-white rounded-2xl shadow-lg overflow-hidden">
321
+ <div class="bg-gradient-to-r from-primary to-secondary p-5">
322
+ <h2 class="text-xl font-bold text-white flex items-center">
323
+ <i class="fas fa-history mr-2"></i> Recent Activity
324
+ </h2>
325
+ </div>
326
+
327
+ <div class="p-5">
328
+ <div class="space-y-4">
329
+ <div class="flex items-start">
330
+ <div class="p-2 bg-green-100 rounded-full mr-3">
331
+ <i class="fas fa-plus text-green-600"></i>
332
+ </div>
333
+ <div>
334
+ <p class="font-medium">New file added</p>
335
+ <p class="text-gray-600 text-sm">validation.csv was added to the repository</p>
336
+ <p class="text-gray-400 text-xs mt-1">2 days ago</p>
337
+ </div>
338
+ </div>
339
+
340
+ <div class="flex items-start">
341
+ <div class="p-2 bg-blue-100 rounded-full mr-3">
342
+ <i class="fas fa-edit text-blue-600"></i>
343
+ </div>
344
+ <div>
345
+ <p class="font-medium">File updated</p>
346
+ <p class="text-gray-600 text-sm">train.csv was modified with additional data</p>
347
+ <p class="text-gray-400 text-xs mt-1">5 days ago</p>
348
+ </div>
349
+ </div>
350
+
351
+ <div class="flex items-start">
352
+ <div class="p-2 bg-purple-100 rounded-full mr-3">
353
+ <i class="fas fa-file-alt text-purple-600"></i>
354
+ </div>
355
+ <div>
356
+ <p class="font-medium">Documentation updated</p>
357
+ <p class="text-gray-600 text-sm">README.md was updated with new information</p>
358
+ <p class="text-gray-400 text-xs mt-1">1 week ago</p>
359
+ </div>
360
+ </div>
361
+ </div>
362
+ </div>
363
+ </div>
364
+
365
+ <!-- Data Quality Report -->
366
+ <div class="bg-white rounded-2xl shadow-lg overflow-hidden mt-8">
367
+ <div class="bg-gradient-to-r from-primary to-secondary p-5">
368
+ <h2 class="text-xl font-bold text-white flex items-center">
369
+ <i class="fas fa-clipboard-check mr-2"></i> Data Quality Report
370
+ </h2>
371
+ </div>
372
+
373
+ <div class="p-5">
374
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-6">
375
+ <div class="bg-blue-50 p-5 rounded-xl border border-blue-100">
376
+ <div class="flex items-center">
377
+ <div class="p-3 bg-blue-100 rounded-lg mr-4">
378
+ <i class="fas fa-exchange-alt text-blue-600"></i>
379
+ </div>
380
+ <div>
381
+ <p class="text-gray-600">Overlapping Rows</p>
382
+ <p class="text-2xl font-bold">0</p>
383
+ </div>
384
+ </div>
385
+ <p class="text-gray-500 text-sm mt-3">Rows present in both train and test sets</p>
386
+ </div>
387
+
388
+ <div class="bg-green-50 p-5 rounded-xl border border-green-100">
389
+ <div class="flex items-center">
390
+ <div class="p-3 bg-green-100 rounded-lg mr-4">
391
+ <i class="fas fa-layer-group text-green-600"></i>
392
+ </div>
393
+ <div>
394
+ <p class="text-gray-600">Total Unique Rows</p>
395
+ <p class="text-2xl font-bold">85,680</p>
396
+ </div>
397
+ </div>
398
+ <p class="text-gray-500 text-sm mt-3">Combined unique rows from both datasets</p>
399
+ </div>
400
+
401
+ <div class="bg-amber-50 p-5 rounded-xl border border-amber-100">
402
+ <div class="flex items-center">
403
+ <div class="p-3 bg-amber-100 rounded-lg mr-4">
404
+ <i class="fas fa-percentage text-amber-600"></i>
405
+ </div>
406
+ <div>
407
+ <p class="text-gray-600">Overlap Percentage</p>
408
+ <p class="text-2xl font-bold">0%</p>
409
+ </div>
410
+ </div>
411
+ <p class="text-gray-500 text-sm mt-3">Percentage of overlapping rows</p>
412
+ </div>
413
+ </div>
414
+
415
+ <div class="bg-gray-50 p-5 rounded-xl">
416
+ <h3 class="font-bold text-gray-700 mb-3">Analysis Summary</h3>
417
+ <div class="flex items-start">
418
+ <div class="p-2 bg-green-100 rounded-full mr-3 mt-1">
419
+ <i class="fas fa-check-circle text-green-600"></i>
420
+ </div>
421
+ <div>
422
+ <p class="font-medium text-gray-800">No Data Leakage Detected</p>
423
+ <p class="text-gray-600 text-sm">There are no overlapping rows between training and test datasets, indicating proper data partitioning.</p>
424
+ </div>
425
+ </div>
426
+
427
+ <div class="flex items-start mt-4">
428
+ <div class="p-2 bg-blue-100 rounded-full mr-3 mt-1">
429
+ <i class="fas fa-info-circle text-blue-600"></i>
430
+ </div>
431
+ <div>
432
+ <p class="font-medium text-gray-800">Recommendation</p>
433
+ <p class="text-gray-600 text-sm">The dataset partitioning follows best practices. Proceed with confidence in your model evaluation process.</p>
434
+ </div>
435
+ </div>
436
+ </div>
437
+ </div>
438
+ </div>
439
+ </div>
440
+ </div>
441
+
442
+ <!-- Footer -->
443
+ <footer class="mt-12 text-center text-gray-600 text-sm">
444
+ <p>Dataset Repository Explorer &copy; 2023 | Created with Tailwind CSS</p>
445
+ </footer>
446
+ </div>
447
+
448
+ <script>
449
+ // Toggle folder visibility
450
+ function toggleFolder(element) {
451
+ const icon = element.querySelector('.file-icon');
452
+ const content = element.nextElementSibling;
453
+
454
+ icon.classList.toggle('rotate');
455
+ content.classList.toggle('active');
456
+ }
457
+
458
+ // Initialize with folder open
459
+ document.addEventListener('DOMContentLoaded', function() {
460
+ const folder = document.querySelector('.file-item > .flex');
461
+ if (folder) {
462
+ toggleFolder(folder);
463
+ }
464
+ });
465
+ </script>
466
+ <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=APAOLO/googleedgeai-onmicrosoft-com" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
467
+ </html>