kayrahan commited on
Commit
a714b9b
·
verified ·
1 Parent(s): 47a87c6

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +489 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ww
3
- emoji: 🦀
4
- colorFrom: purple
5
  colorTo: blue
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: ww
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,489 @@
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
+ <meta name="description" content="Modern Blog Admin Panel">
7
+ <meta name="keywords" content="blog, admin, dashboard, content management">
8
+ <title>Blog Admin Dashboard</title>
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
11
+ <style>
12
+ .sidebar-collapsed .sidebar-item-text,
13
+ .sidebar-collapsed .sidebar-dropdown-text {
14
+ opacity: 0;
15
+ width: 0;
16
+ height: 0;
17
+ overflow: hidden;
18
+ position: absolute;
19
+ }
20
+
21
+ .sidebar-collapsed {
22
+ width: 70px;
23
+ }
24
+
25
+ .main-content-expanded {
26
+ margin-left: 250px;
27
+ }
28
+
29
+ .main-content-collapsed {
30
+ margin-left: 70px;
31
+ }
32
+
33
+ .sidebar-transition {
34
+ transition: all 0.3s ease;
35
+ }
36
+
37
+ .content-transition {
38
+ transition: margin-left 0.3s ease;
39
+ }
40
+
41
+ .dropdown-enter {
42
+ max-height: 0;
43
+ overflow: hidden;
44
+ }
45
+
46
+ .dropdown-enter-active {
47
+ max-height: 500px;
48
+ transition: max-height 0.3s ease-in;
49
+ }
50
+
51
+ .dropdown-exit {
52
+ max-height: 500px;
53
+ }
54
+
55
+ .dropdown-exit-active {
56
+ max-height: 0;
57
+ overflow: hidden;
58
+ transition: max-height 0.3s ease-out;
59
+ }
60
+
61
+ @media (max-width: 768px) {
62
+ .sidebar {
63
+ position: fixed;
64
+ z-index: 1000;
65
+ transform: translateX(-100%);
66
+ }
67
+
68
+ .sidebar-open {
69
+ transform: translateX(0);
70
+ }
71
+
72
+ .main-content-expanded, .main-content-collapsed {
73
+ margin-left: 0;
74
+ }
75
+ }
76
+ </style>
77
+ </head>
78
+ <body class="bg-gray-100 font-sans">
79
+ <div class="flex h-screen overflow-hidden">
80
+ <!-- Sidebar -->
81
+ <div id="sidebar" class="sidebar bg-indigo-800 text-white sidebar-transition w-64 flex flex-col">
82
+ <!-- Sidebar Header -->
83
+ <div class="p-4 flex items-center justify-between border-b border-indigo-700">
84
+ <div class="flex items-center">
85
+ <i class="fas fa-blog text-2xl mr-3"></i>
86
+ <span class="sidebar-item-text font-bold text-xl">Blog Admin</span>
87
+ </div>
88
+ <button id="toggleSidebar" class="text-white focus:outline-none">
89
+ <i class="fas fa-bars"></i>
90
+ </button>
91
+ </div>
92
+
93
+ <!-- Sidebar Content -->
94
+ <div class="flex-1 overflow-y-auto">
95
+ <!-- Dashboard -->
96
+ <div class="p-4">
97
+ <a href="#" class="flex items-center text-white hover:bg-indigo-700 p-2 rounded">
98
+ <i class="fas fa-tachometer-alt mr-3"></i>
99
+ <span class="sidebar-item-text">Dashboard</span>
100
+ </a>
101
+ </div>
102
+
103
+ <!-- Content Management -->
104
+ <div class="border-t border-indigo-700 pt-2 pb-2">
105
+ <div class="dropdown-item">
106
+ <button class="flex items-center justify-between w-full text-white hover:bg-indigo-700 p-2 rounded focus:outline-none">
107
+ <div class="flex items-center">
108
+ <i class="fas fa-pen-fancy mr-3"></i>
109
+ <span class="sidebar-item-text">Content</span>
110
+ </div>
111
+ <i class="fas fa-chevron-down sidebar-dropdown-text text-xs"></i>
112
+ </button>
113
+ <div class="dropdown-content pl-8 mt-1 hidden">
114
+ <a href="#" class="block text-white hover:bg-indigo-700 p-2 rounded sidebar-item-text">All Posts</a>
115
+ <a href="#" class="block text-white hover:bg-indigo-700 p-2 rounded sidebar-item-text">Add New</a>
116
+ <a href="#" class="block text-white hover:bg-indigo-700 p-2 rounded sidebar-item-text">Categories</a>
117
+ <a href="#" class="block text-white hover:bg-indigo-700 p-2 rounded sidebar-item-text">Tags</a>
118
+ </div>
119
+ </div>
120
+ </div>
121
+
122
+ <!-- Media -->
123
+ <div class="border-t border-indigo-700 pt-2 pb-2">
124
+ <a href="#" class="flex items-center text-white hover:bg-indigo-700 p-2 rounded">
125
+ <i class="fas fa-images mr-3"></i>
126
+ <span class="sidebar-item-text">Media Library</span>
127
+ </a>
128
+ </div>
129
+
130
+ <!-- Comments -->
131
+ <div class="border-t border-indigo-700 pt-2 pb-2">
132
+ <a href="#" class="flex items-center text-white hover:bg-indigo-700 p-2 rounded">
133
+ <i class="fas fa-comments mr-3"></i>
134
+ <span class="sidebar-item-text">Comments</span>
135
+ </a>
136
+ </div>
137
+
138
+ <!-- SEO -->
139
+ <div class="border-t border-indigo-700 pt-2 pb-2">
140
+ <div class="dropdown-item">
141
+ <button class="flex items-center justify-between w-full text-white hover:bg-indigo-700 p-2 rounded focus:outline-none">
142
+ <div class="flex items-center">
143
+ <i class="fas fa-search mr-3"></i>
144
+ <span class="sidebar-item-text">SEO Tools</span>
145
+ </div>
146
+ <i class="fas fa-chevron-down sidebar-dropdown-text text-xs"></i>
147
+ </button>
148
+ <div class="dropdown-content pl-8 mt-1 hidden">
149
+ <a href="#" class="block text-white hover:bg-indigo-700 p-2 rounded sidebar-item-text">SEO Analysis</a>
150
+ <a href="#" class="block text-white hover:bg-indigo-700 p-2 rounded sidebar-item-text">Keywords</a>
151
+ <a href="#" class="block text-white hover:bg-indigo-700 p-2 rounded sidebar-item-text">Sitemap</a>
152
+ </div>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Analytics -->
157
+ <div class="border-t border-indigo-700 pt-2 pb-2">
158
+ <a href="#" class="flex items-center text-white hover:bg-indigo-700 p-2 rounded">
159
+ <i class="fas fa-chart-line mr-3"></i>
160
+ <span class="sidebar-item-text">Analytics</span>
161
+ </a>
162
+ </div>
163
+
164
+ <!-- Settings -->
165
+ <div class="border-t border-indigo-700 pt-2 pb-2">
166
+ <div class="dropdown-item">
167
+ <button class="flex items-center justify-between w-full text-white hover:bg-indigo-700 p-2 rounded focus:outline-none">
168
+ <div class="flex items-center">
169
+ <i class="fas fa-cog mr-3"></i>
170
+ <span class="sidebar-item-text">Settings</span>
171
+ </div>
172
+ <i class="fas fa-chevron-down sidebar-dropdown-text text-xs"></i>
173
+ </button>
174
+ <div class="dropdown-content pl-8 mt-1 hidden">
175
+ <a href="#" class="block text-white hover:bg-indigo-700 p-2 rounded sidebar-item-text">General</a>
176
+ <a href="#" class="block text-white hover:bg-indigo-700 p-2 rounded sidebar-item-text">Reading</a>
177
+ <a href="#" class="block text-white hover:bg-indigo-700 p-2 rounded sidebar-item-text">Writing</a>
178
+ <a href="#" class="block text-white hover:bg-indigo-700 p-2 rounded sidebar-item-text">Discussion</a>
179
+ <a href="#" class="block text-white hover:bg-indigo-700 p-2 rounded sidebar-item-text">Permalinks</a>
180
+ </div>
181
+ </div>
182
+ </div>
183
+ </div>
184
+
185
+ <!-- Sidebar Footer -->
186
+ <div class="p-4 border-t border-indigo-700">
187
+ <div class="flex items-center">
188
+ <img src="https://via.placeholder.com/40" alt="User" class="rounded-full w-8 h-8">
189
+ <div class="ml-3 sidebar-item-text">
190
+ <div class="font-medium">Admin User</div>
191
+ <div class="text-xs text-indigo-300">Super Admin</div>
192
+ </div>
193
+ </div>
194
+ </div>
195
+ </div>
196
+
197
+ <!-- Main Content -->
198
+ <div id="mainContent" class="main-content-expanded content-transition flex-1 overflow-auto">
199
+ <!-- Top Navigation -->
200
+ <header class="bg-white shadow-sm">
201
+ <div class="px-6 py-4 flex items-center justify-between">
202
+ <div class="flex items-center">
203
+ <button id="mobileToggleSidebar" class="mr-4 text-gray-500 focus:outline-none md:hidden">
204
+ <i class="fas fa-bars text-xl"></i>
205
+ </button>
206
+ <h1 class="text-xl font-semibold text-gray-800">Dashboard</h1>
207
+ </div>
208
+ <div class="flex items-center space-x-4">
209
+ <div class="relative">
210
+ <button class="text-gray-500 focus:outline-none">
211
+ <i class="fas fa-bell text-xl"></i>
212
+ <span class="absolute top-0 right-0 h-2 w-2 rounded-full bg-red-500"></span>
213
+ </button>
214
+ </div>
215
+ <div class="relative">
216
+ <button class="text-gray-500 focus:outline-none">
217
+ <i class="fas fa-envelope text-xl"></i>
218
+ <span class="absolute top-0 right-0 h-2 w-2 rounded-full bg-red-500"></span>
219
+ </button>
220
+ </div>
221
+ <div class="relative">
222
+ <button class="flex items-center focus:outline-none">
223
+ <img src="https://via.placeholder.com/40" alt="User" class="rounded-full w-8 h-8">
224
+ <i class="fas fa-chevron-down ml-1 text-gray-500"></i>
225
+ </button>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </header>
230
+
231
+ <!-- Content Area -->
232
+ <main class="p-6">
233
+ <!-- Stats Cards -->
234
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-6">
235
+ <div class="bg-white rounded-lg shadow p-6">
236
+ <div class="flex items-center">
237
+ <div class="p-3 rounded-full bg-indigo-100 text-indigo-600 mr-4">
238
+ <i class="fas fa-file-alt text-xl"></i>
239
+ </div>
240
+ <div>
241
+ <p class="text-sm text-gray-500">Total Posts</p>
242
+ <h3 class="text-2xl font-bold">1,248</h3>
243
+ </div>
244
+ </div>
245
+ </div>
246
+ <div class="bg-white rounded-lg shadow p-6">
247
+ <div class="flex items-center">
248
+ <div class="p-3 rounded-full bg-green-100 text-green-600 mr-4">
249
+ <i class="fas fa-eye text-xl"></i>
250
+ </div>
251
+ <div>
252
+ <p class="text-sm text-gray-500">Total Views</p>
253
+ <h3 class="text-2xl font-bold">24,589</h3>
254
+ </div>
255
+ </div>
256
+ </div>
257
+ <div class="bg-white rounded-lg shadow p-6">
258
+ <div class="flex items-center">
259
+ <div class="p-3 rounded-full bg-blue-100 text-blue-600 mr-4">
260
+ <i class="fas fa-comment text-xl"></i>
261
+ </div>
262
+ <div>
263
+ <p class="text-sm text-gray-500">Comments</p>
264
+ <h3 class="text-2xl font-bold">342</h3>
265
+ </div>
266
+ </div>
267
+ </div>
268
+ <div class="bg-white rounded-lg shadow p-6">
269
+ <div class="flex items-center">
270
+ <div class="p-3 rounded-full bg-purple-100 text-purple-600 mr-4">
271
+ <i class="fas fa-users text-xl"></i>
272
+ </div>
273
+ <div>
274
+ <p class="text-sm text-gray-500">Subscribers</p>
275
+ <h3 class="text-2xl font-bold">1,024</h3>
276
+ </div>
277
+ </div>
278
+ </div>
279
+ </div>
280
+
281
+ <!-- Recent Posts -->
282
+ <div class="bg-white rounded-lg shadow mb-6">
283
+ <div class="p-6 border-b border-gray-200">
284
+ <h2 class="text-lg font-semibold text-gray-800">Recent Posts</h2>
285
+ </div>
286
+ <div class="overflow-x-auto">
287
+ <table class="min-w-full divide-y divide-gray-200">
288
+ <thead class="bg-gray-50">
289
+ <tr>
290
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Title</th>
291
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Author</th>
292
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Categories</th>
293
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
294
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Views</th>
295
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Actions</th>
296
+ </tr>
297
+ </thead>
298
+ <tbody class="bg-white divide-y divide-gray-200">
299
+ <tr>
300
+ <td class="px-6 py-4 whitespace-nowrap">
301
+ <div class="text-sm font-medium text-gray-900">10 Tips for Better Blog Writing</div>
302
+ </td>
303
+ <td class="px-6 py-4 whitespace-nowrap">
304
+ <div class="flex items-center">
305
+ <img src="https://via.placeholder.com/40" alt="Author" class="w-6 h-6 rounded-full mr-2">
306
+ <div class="text-sm text-gray-500">John Doe</div>
307
+ </div>
308
+ </td>
309
+ <td class="px-6 py-4 whitespace-nowrap">
310
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">Writing</span>
311
+ </td>
312
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">May 15, 2023</td>
313
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">1,245</td>
314
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
315
+ <a href="#" class="text-indigo-600 hover:text-indigo-900 mr-3">Edit</a>
316
+ <a href="#" class="text-red-600 hover:text-red-900">Delete</a>
317
+ </td>
318
+ </tr>
319
+ <tr>
320
+ <td class="px-6 py-4 whitespace-nowrap">
321
+ <div class="text-sm font-medium text-gray-900">SEO Best Practices for 2023</div>
322
+ </td>
323
+ <td class="px-6 py-4 whitespace-nowrap">
324
+ <div class="flex items-center">
325
+ <img src="https://via.placeholder.com/40" alt="Author" class="w-6 h-6 rounded-full mr-2">
326
+ <div class="text-sm text-gray-500">Jane Smith</div>
327
+ </div>
328
+ </td>
329
+ <td class="px-6 py-4 whitespace-nowrap">
330
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-blue-100 text-blue-800">SEO</span>
331
+ </td>
332
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">May 10, 2023</td>
333
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">2,876</td>
334
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
335
+ <a href="#" class="text-indigo-600 hover:text-indigo-900 mr-3">Edit</a>
336
+ <a href="#" class="text-red-600 hover:text-red-900">Delete</a>
337
+ </td>
338
+ </tr>
339
+ <tr>
340
+ <td class="px-6 py-4 whitespace-nowrap">
341
+ <div class="text-sm font-medium text-gray-900">How to Increase Blog Traffic</div>
342
+ </td>
343
+ <td class="px-6 py-4 whitespace-nowrap">
344
+ <div class="flex items-center">
345
+ <img src="https://via.placeholder.com/40" alt="Author" class="w-6 h-6 rounded-full mr-2">
346
+ <div class="text-sm text-gray-500">Mike Johnson</div>
347
+ </div>
348
+ </td>
349
+ <td class="px-6 py-4 whitespace-nowrap">
350
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-purple-100 text-purple-800">Marketing</span>
351
+ </td>
352
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">May 5, 2023</td>
353
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">3,421</td>
354
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
355
+ <a href="#" class="text-indigo-600 hover:text-indigo-900 mr-3">Edit</a>
356
+ <a href="#" class="text-red-600 hover:text-red-900">Delete</a>
357
+ </td>
358
+ </tr>
359
+ </tbody>
360
+ </table>
361
+ </div>
362
+ <div class="p-4 border-t border-gray-200">
363
+ <a href="#" class="text-indigo-600 hover:text-indigo-900 font-medium">View All Posts →</a>
364
+ </div>
365
+ </div>
366
+
367
+ <!-- SEO Analysis -->
368
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
369
+ <div class="bg-white rounded-lg shadow">
370
+ <div class="p-6 border-b border-gray-200">
371
+ <h2 class="text-lg font-semibold text-gray-800">SEO Analysis</h2>
372
+ </div>
373
+ <div class="p-6">
374
+ <div class="mb-4">
375
+ <div class="flex justify-between mb-1">
376
+ <span class="text-sm font-medium text-gray-700">SEO Score</span>
377
+ <span class="text-sm font-medium text-gray-700">85%</span>
378
+ </div>
379
+ <div class="w-full bg-gray-200 rounded-full h-2.5">
380
+ <div class="bg-green-600 h-2.5 rounded-full" style="width: 85%"></div>
381
+ </div>
382
+ </div>
383
+ <div class="space-y-3">
384
+ <div class="flex items-center">
385
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
386
+ <span class="text-sm text-gray-700">All posts have meta descriptions</span>
387
+ </div>
388
+ <div class="flex items-center">
389
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
390
+ <span class="text-sm text-gray-700">Images have alt text</span>
391
+ </div>
392
+ <div class="flex items-center">
393
+ <i class="fas fa-exclamation-triangle text-yellow-500 mr-2"></i>
394
+ <span class="text-sm text-gray-700">5 posts need internal links</span>
395
+ </div>
396
+ <div class="flex items-center">
397
+ <i class="fas fa-exclamation-triangle text-yellow-500 mr-2"></i>
398
+ <span class="text-sm text-gray-700">3 posts have long titles</span>
399
+ </div>
400
+ </div>
401
+ </div>
402
+ </div>
403
+
404
+ <!-- Recent Comments -->
405
+ <div class="bg-white rounded-lg shadow">
406
+ <div class="p-6 border-b border-gray-200">
407
+ <h2 class="text-lg font-semibold text-gray-800">Recent Comments</h2>
408
+ </div>
409
+ <div class="divide-y divide-gray-200">
410
+ <div class="p-4">
411
+ <div class="flex items-start">
412
+ <img src="https://via.placeholder.com/40" alt="User" class="w-8 h-8 rounded-full mr-3">
413
+ <div>
414
+ <div class="font-medium text-gray-800">Sarah Williams</div>
415
+ <div class="text-sm text-gray-600 mb-1">Great post! Very informative.</div>
416
+ <div class="text-xs text-gray-500">On: 10 Tips for Better Blog Writing</div>
417
+ </div>
418
+ </div>
419
+ </div>
420
+ <div class="p-4">
421
+ <div class="flex items-start">
422
+ <img src="https://via.placeholder.com/40" alt="User" class="w-8 h-8 rounded-full mr-3">
423
+ <div>
424
+ <div class="font-medium text-gray-800">Robert Chen</div>
425
+ <div class="text-sm text-gray-600 mb-1">I disagree with point #3, here's why...</div>
426
+ <div class="text-xs text-gray-500">On: SEO Best Practices for 2023</div>
427
+ </div>
428
+ </div>
429
+ </div>
430
+ <div class="p-4">
431
+ <div class="flex items-start">
432
+ <img src="https://via.placeholder.com/40" alt="User" class="w-8 h-8 rounded-full mr-3">
433
+ <div>
434
+ <div class="font-medium text-gray-800">Emily Parker</div>
435
+ <div class="text-sm text-gray-600 mb-1">Thanks for sharing these insights!</div>
436
+ <div class="text-xs text-gray-500">On: How to Increase Blog Traffic</div>
437
+ </div>
438
+ </div>
439
+ </div>
440
+ </div>
441
+ </div>
442
+ </div>
443
+ </main>
444
+ </div>
445
+ </div>
446
+
447
+ <script>
448
+ // Toggle sidebar
449
+ const toggleSidebar = document.getElementById('toggleSidebar');
450
+ const mobileToggleSidebar = document.getElementById('mobileToggleSidebar');
451
+ const sidebar = document.getElementById('sidebar');
452
+ const mainContent = document.getElementById('mainContent');
453
+
454
+ toggleSidebar.addEventListener('click', () => {
455
+ sidebar.classList.toggle('sidebar-collapsed');
456
+ mainContent.classList.toggle('main-content-expanded');
457
+ mainContent.classList.toggle('main-content-collapsed');
458
+ });
459
+
460
+ mobileToggleSidebar.addEventListener('click', () => {
461
+ sidebar.classList.toggle('sidebar-open');
462
+ });
463
+
464
+ // Dropdown functionality
465
+ const dropdownItems = document.querySelectorAll('.dropdown-item');
466
+
467
+ dropdownItems.forEach(item => {
468
+ const button = item.querySelector('button');
469
+ const content = item.querySelector('.dropdown-content');
470
+
471
+ button.addEventListener('click', () => {
472
+ content.classList.toggle('hidden');
473
+
474
+ // Rotate chevron icon
475
+ const chevron = button.querySelector('.fa-chevron-down');
476
+ chevron.classList.toggle('transform');
477
+ chevron.classList.toggle('rotate-180');
478
+ });
479
+ });
480
+
481
+ // Close sidebar when clicking outside on mobile
482
+ document.addEventListener('click', (e) => {
483
+ if (window.innerWidth <= 768 && !sidebar.contains(e.target) && !mobileToggleSidebar.contains(e.target)) {
484
+ sidebar.classList.remove('sidebar-open');
485
+ }
486
+ });
487
+ </script>
488
+ <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=kayrahan/ww" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
489
+ </html>