AUXteam commited on
Commit
69b89f7
·
verified ·
1 Parent(s): bd44a07

Upload folder using huggingface_hub

Browse files
assets/__vite-browser-external-DYxpcVy9-BIHI7g3E.js ADDED
@@ -0,0 +1 @@
 
 
1
+ const e={};export{e as default};
assets/index-Ca5kstnp.js ADDED
The diff for this file is too large to render. See raw diff
 
index.html CHANGED
@@ -1,19 +1,80 @@
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
+
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>SyncUsers</title>
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ background-color: #050505;
15
+ color: #ffffff;
16
+ }
17
+
18
+ /* Custom Scrollbar */
19
+
20
+ ::-webkit-scrollbar {
21
+ width: 8px;
22
+ }
23
+
24
+ ::-webkit-scrollbar-track {
25
+ background: #050505;
26
+ }
27
+
28
+ ::-webkit-scrollbar-thumb {
29
+ background: #333;
30
+ border-radius: 4px;
31
+ }
32
+
33
+ ::-webkit-scrollbar-thumb:hover {
34
+ background: #555;
35
+ }
36
+
37
+ /* Utilities for gradients */
38
+
39
+ .bg-glass {
40
+ background: rgba(255, 255, 255, 0.05);
41
+ backdrop-filter: blur(10px);
42
+ -webkit-backdrop-filter: blur(10px);
43
+ }
44
+
45
+ .gradient-text {
46
+ background: linear-gradient(to right, #fff, #aaa);
47
+ -webkit-background-clip: text;
48
+ -webkit-text-fill-color: transparent;
49
+ }
50
+
51
+ /* Blink animation for cursor */
52
+
53
+ @keyframes blink {
54
+ 0%, 100% { opacity: 1; }
55
+ 50% { opacity: 0; }
56
+ }
57
+
58
+ .animate-blink {
59
+ animation: blink 1s step-end infinite;
60
+ }
61
+ </style>
62
+
63
+ <script type="importmap">
64
+ {
65
+ "imports": {
66
+ "react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
67
+ "react/": "https://aistudiocdn.com/react@^19.2.0/",
68
+ "react": "https://aistudiocdn.com/react@^19.2.0",
69
+ "lucide-react": "https://aistudiocdn.com/lucide-react@^0.555.0",
70
+ "recharts": "https://aistudiocdn.com/recharts@^3.5.0",
71
+ "plotly.js": "https://cdn.jsdelivr.net/npm/plotly.js-dist-min@2.30.0/+esm"
72
+ }
73
+ }
74
+ </script>
75
+ <script type="module" crossorigin src="/assets/index-Ca5kstnp.js"></script>
76
+ </head>
77
+ <body>
78
+ <div id="root"></div>
79
+ </body>
80
+ </html>