rockson8 commited on
Commit
eaf04b0
·
verified ·
1 Parent(s): 23455c2

can u remove these analysis and add a dark background? - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +276 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Kucnocny
3
- emoji: 🏃
4
- colorFrom: pink
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: kucnocny
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,276 @@
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>Modern 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
+ <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
10
+ <script>
11
+ tailwind.config = {
12
+ theme: {
13
+ extend: {
14
+ colors: {
15
+ primary: '#6366f1',
16
+ secondary: '#8b5cf6',
17
+ dark: '#1e293b',
18
+ light: '#f8fafc'
19
+ }
20
+ }
21
+ }
22
+ }
23
+ </script>
24
+ <style>
25
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
26
+
27
+ body {
28
+ font-family: 'Inter', sans-serif;
29
+ background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
30
+ min-height: 100vh;
31
+ }
32
+
33
+ .sidebar {
34
+ transition: all 0.3s ease;
35
+ }
36
+
37
+ .card {
38
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
39
+ }
40
+
41
+ .card:hover {
42
+ transform: translateY(-5px);
43
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
44
+ }
45
+
46
+ .chart-container {
47
+ position: relative;
48
+ height: 300px;
49
+ }
50
+
51
+ .notification-dot {
52
+ position: absolute;
53
+ top: -5px;
54
+ right: -5px;
55
+ width: 12px;
56
+ height: 12px;
57
+ border-radius: 50%;
58
+ background-color: #ef4444;
59
+ }
60
+
61
+ .progress-bar {
62
+ height: 8px;
63
+ border-radius: 4px;
64
+ overflow: hidden;
65
+ }
66
+
67
+ .progress-fill {
68
+ height: 100%;
69
+ border-radius: 4px;
70
+ }
71
+
72
+ .grid-layout {
73
+ display: grid;
74
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
75
+ gap: 1.5rem;
76
+ }
77
+
78
+ @media (max-width: 768px) {
79
+ .grid-layout {
80
+ grid-template-columns: 1fr;
81
+ }
82
+ }
83
+ </style>
84
+ </head>
85
+ <body class="bg-gray-900 text-gray-100">
86
+ <div class="flex min-h-screen">
87
+ <!-- Sidebar -->
88
+ <div class="sidebar bg-gray-800 w-64 min-h-screen shadow-lg hidden md:block">
89
+ <div class="p-5">
90
+ <div class="flex items-center">
91
+ <div class="bg-primary w-10 h-10 rounded-lg flex items-center justify-center">
92
+ <i class="fas fa-chart-pie text-white text-xl"></i>
93
+ </div>
94
+ <h1 class="text-xl font-bold ml-3 text-gray-800">Dashboard<span class="text-primary">Pro</span></h1>
95
+ </div>
96
+ </div>
97
+
98
+ <nav class="mt-8 px-4">
99
+ <a href="#" class="flex items-center p-3 text-primary bg-indigo-50 rounded-lg mb-2">
100
+ <i class="fas fa-home mr-3"></i>
101
+ <span>Dashboard</span>
102
+ </a>
103
+ <a href="#" class="flex items-center p-3 text-gray-600 hover:bg-gray-100 rounded-lg mb-2">
104
+ <i class="fas fa-chart-line mr-3"></i>
105
+ <span>Analytics</span>
106
+ </a>
107
+ <a href="#" class="flex items-center p-3 text-gray-600 hover:bg-gray-100 rounded-lg mb-2">
108
+ <i class="fas fa-users mr-3"></i>
109
+ <span>Customers</span>
110
+ </a>
111
+ <a href="#" class="flex items-center p-3 text-gray-600 hover:bg-gray-100 rounded-lg mb-2">
112
+ <i class="fas fa-shopping-cart mr-3"></i>
113
+ <span>Orders</span>
114
+ </a>
115
+ <a href="#" class="flex items-center p-3 text-gray-600 hover:bg-gray-100 rounded-lg mb-2">
116
+ <i class="fas fa-box mr-3"></i>
117
+ <span>Products</span>
118
+ </a>
119
+ <a href="#" class="flex items-center p-3 text-gray-600 hover:bg-gray-100 rounded-lg mb-2">
120
+ <i class="fas fa-cog mr-3"></i>
121
+ <span>Settings</span>
122
+ </a>
123
+ </nav>
124
+
125
+ <div class="absolute bottom-0 w-64 p-4 border-t border-gray-200">
126
+ <div class="flex items-center">
127
+ <img src="https://ui-avatars.com/api/?name=John+Doe&background=6366f1&color=fff" alt="User" class="w-10 h-10 rounded-full">
128
+ <div class="ml-3">
129
+ <p class="text-sm font-medium text-gray-800">John Doe</p>
130
+ <p class="text-xs text-gray-500">Admin</p>
131
+ </div>
132
+ </div>
133
+ </div>
134
+ </div>
135
+
136
+ <!-- Main Content -->
137
+ <div class="flex-1">
138
+ <!-- Top Bar -->
139
+ <div class="bg-gray-800 shadow-sm">
140
+ <div class="flex justify-between items-center p-4">
141
+ <div class="flex items-center">
142
+ <button class="md:hidden mr-3 text-gray-600">
143
+ <i class="fas fa-bars text-xl"></i>
144
+ </button>
145
+ <h1 class="text-xl font-bold text-gray-800">Dashboard</h1>
146
+ </div>
147
+
148
+ <div class="flex items-center">
149
+ <div class="relative mr-4">
150
+ <input type="text" placeholder="Search..." class="bg-gray-100 rounded-full py-2 px-4 pl-10 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent">
151
+ <i class="fas fa-search absolute left-3 top-3 text-gray-500"></i>
152
+ </div>
153
+
154
+ <div class="relative mr-4">
155
+ <button class="text-gray-600">
156
+ <i class="fas fa-bell text-xl"></i>
157
+ <span class="notification-dot"></span>
158
+ </button>
159
+ </div>
160
+
161
+ <div class="flex items-center">
162
+ <img src="https://ui-avatars.com/api/?name=John+Doe&background=6366f1&color=fff" alt="User" class="w-10 h-10 rounded-full">
163
+ </div>
164
+ </div>
165
+ </div>
166
+ </div>
167
+
168
+ <!-- Main Content Area -->
169
+ <div class="p-6">
170
+
171
+ <!-- Recent Orders -->
172
+ <div class="card bg-gray-800 rounded-xl shadow-md p-6 mb-8">
173
+ <div class="flex justify-between items-center mb-6">
174
+ <h2 class="text-lg font-semibold text-gray-800">Recent Orders</h2>
175
+ <button class="bg-primary text-white px-4 py-2 rounded-lg text-sm hover:bg-indigo-700 transition">
176
+ <i class="fas fa-plus mr-2"></i> New Order
177
+ </button>
178
+ </div>
179
+
180
+ <div class="overflow-x-auto">
181
+ <table class="w-full">
182
+ <thead>
183
+ <tr class="text-left text-gray-500 text-sm border-b">
184
+ <th class="pb-3">Order ID</th>
185
+ <th class="pb-3">Customer</th>
186
+ <th class="pb-3">Date</th>
187
+ <th class="pb-3">Amount</th>
188
+ <th class="pb-3">Status</th>
189
+ <th class="pb-3">Action</th>
190
+ </tr>
191
+ </thead>
192
+ <tbody>
193
+ <tr class="border-b hover:bg-gray-50">
194
+ <td class="py-4">#32145</td>
195
+ <td class="py-4">John Smith</td>
196
+ <td class="py-4">Aug 15, 2023</td>
197
+ <td class="py-4">$245.00</td>
198
+ <td class="py-4">
199
+ <span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">Completed</span>
200
+ </td>
201
+ <td class="py-4">
202
+ <button class="text-gray-500 hover:text-primary">
203
+ <i class="fas fa-ellipsis-h"></i>
204
+ </button>
205
+ </td>
206
+ </tr>
207
+
208
+ <tr class="border-b hover:bg-gray-50">
209
+ <td class="py-4">#32146</td>
210
+ <td class="py-4">Sarah Johnson</td>
211
+ <td class="py-4">Aug 15, 2023</td>
212
+ <td class="py-4">$89.50</td>
213
+ <td class="py-4">
214
+ <span class="bg-yellow-100 text-yellow-800 px-2 py-1 rounded-full text-xs">Pending</span>
215
+ </td>
216
+ <td class="py-4">
217
+ <button class="text-gray-500 hover:text-primary">
218
+ <i class="fas fa-ellipsis-h"></i>
219
+ </button>
220
+ </td>
221
+ </tr>
222
+
223
+ <tr class="border-b hover:bg-gray-50">
224
+ <td class="py-4">#32147</td>
225
+ <td class="py-4">Michael Brown</td>
226
+ <td class="py-4">Aug 14, 2023</td>
227
+ <td class="py-4">$142.75</td>
228
+ <td class="py-4">
229
+ <span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">Completed</span>
230
+ </td>
231
+ <td class="py-4">
232
+ <button class="text-gray-500 hover:text-primary">
233
+ <i class="fas fa-ellipsis-h"></i>
234
+ </button>
235
+ </td>
236
+ </tr>
237
+
238
+ <tr class="border-b hover:bg-gray-50">
239
+ <td class="py-4">#32148</td>
240
+ <td class="py-4">Emily Davis</td>
241
+ <td class="py-4">Aug 14, 2023</td>
242
+ <td class="py-4">$325.99</td>
243
+ <td class="py-4">
244
+ <span class="bg-red-100 text-red-800 px-2 py-1 rounded-full text-xs">Cancelled</span>
245
+ </td>
246
+ <td class="py-4">
247
+ <button class="text-gray-500 hover:text-primary">
248
+ <i class="fas fa-ellipsis-h"></i>
249
+ </button>
250
+ </td>
251
+ </tr>
252
+
253
+ <tr class="hover:bg-gray-50">
254
+ <td class="py-4">#32149</td>
255
+ <td class="py-4">David Wilson</td>
256
+ <td class="py-4">Aug 13, 2023</td>
257
+ <td class="py-4">$78.30</td>
258
+ <td class="py-4">
259
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded-full text-xs">Shipped</span>
260
+ </td>
261
+ <td class="py-4">
262
+ <button class="text-gray-500 hover:text-primary">
263
+ <i class="fas fa-ellipsis-h"></i>
264
+ </button>
265
+ </td>
266
+ </tr>
267
+ </tbody>
268
+ </table>
269
+ </div>
270
+ </div>
271
+ </div>
272
+ </div>
273
+ </div>
274
+
275
+ <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=rockson8/kucnocny" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
276
+ </html>