docto41 commited on
Commit
d8c004e
·
verified ·
1 Parent(s): 764cea1

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +526 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Word Press
3
- emoji: 📈
4
- colorFrom: indigo
5
- colorTo: pink
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: word-press
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: purple
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,526 @@
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>WordPress Clone</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
+ .sidebar-item:hover .submenu {
11
+ display: block;
12
+ }
13
+ .editor-toolbar button:hover {
14
+ background-color: #e2e8f0;
15
+ }
16
+ .post-card:hover {
17
+ transform: translateY(-2px);
18
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
19
+ }
20
+ @keyframes pulse {
21
+ 0%, 100% { opacity: 1; }
22
+ 50% { opacity: 0.5; }
23
+ }
24
+ .animate-pulse {
25
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
26
+ }
27
+ </style>
28
+ </head>
29
+ <body class="bg-gray-50 font-sans">
30
+ <div class="flex h-screen overflow-hidden">
31
+ <!-- Sidebar -->
32
+ <div class="w-64 bg-gray-900 text-white flex flex-col">
33
+ <div class="p-4 flex items-center space-x-2 border-b border-gray-700">
34
+ <i class="fab fa-wordpress text-2xl text-blue-400"></i>
35
+ <span class="text-xl font-bold">WordPress</span>
36
+ </div>
37
+
38
+ <nav class="flex-1 overflow-y-auto">
39
+ <div class="p-4">
40
+ <div class="mb-6">
41
+ <div class="text-xs uppercase text-gray-400 mb-2 px-2">Main</div>
42
+ <ul>
43
+ <li class="sidebar-item relative">
44
+ <a href="#" class="flex items-center p-2 rounded hover:bg-gray-800">
45
+ <i class="fas fa-tachometer-alt w-6"></i>
46
+ <span>Dashboard</span>
47
+ </a>
48
+ </li>
49
+ <li class="sidebar-item relative">
50
+ <a href="#" class="flex items-center p-2 rounded hover:bg-gray-800">
51
+ <i class="fas fa-pencil-alt w-6"></i>
52
+ <span>Posts</span>
53
+ <i class="fas fa-chevron-down ml-auto text-xs"></i>
54
+ </a>
55
+ <ul class="submenu hidden ml-6 mt-1 space-y-1">
56
+ <li><a href="#" class="block p-2 rounded hover:bg-gray-700">All Posts</a></li>
57
+ <li><a href="#" class="block p-2 rounded hover:bg-gray-700">Add New</a></li>
58
+ <li><a href="#" class="block p-2 rounded hover:bg-gray-700">Categories</a></li>
59
+ </ul>
60
+ </li>
61
+ <li class="sidebar-item relative">
62
+ <a href="#" class="flex items-center p-2 rounded hover:bg-gray-800">
63
+ <i class="fas fa-images w-6"></i>
64
+ <span>Media</span>
65
+ </a>
66
+ </li>
67
+ <li class="sidebar-item relative">
68
+ <a href="#" class="flex items-center p-2 rounded hover:bg-gray-800">
69
+ <i class="fas fa-file-alt w-6"></i>
70
+ <span>Pages</span>
71
+ <i class="fas fa-chevron-down ml-auto text-xs"></i>
72
+ </a>
73
+ <ul class="submenu hidden ml-6 mt-1 space-y-1">
74
+ <li><a href="#" class="block p-2 rounded hover:bg-gray-700">All Pages</a></li>
75
+ <li><a href="#" class="block p-2 rounded hover:bg-gray-700">Add New</a></li>
76
+ </ul>
77
+ </li>
78
+ <li class="sidebar-item relative">
79
+ <a href="#" class="flex items-center p-2 rounded hover:bg-gray-800">
80
+ <i class="fas fa-comment w-6"></i>
81
+ <span>Comments</span>
82
+ </a>
83
+ </li>
84
+ </ul>
85
+ </div>
86
+
87
+ <div class="mb-6">
88
+ <div class="text-xs uppercase text-gray-400 mb-2 px-2">Appearance</div>
89
+ <ul>
90
+ <li class="sidebar-item relative">
91
+ <a href="#" class="flex items-center p-2 rounded hover:bg-gray-800">
92
+ <i class="fas fa-paint-brush w-6"></i>
93
+ <span>Themes</span>
94
+ </a>
95
+ </li>
96
+ <li class="sidebar-item relative">
97
+ <a href="#" class="flex items-center p-2 rounded hover:bg-gray-800">
98
+ <i class="fas fa-sliders-h w-6"></i>
99
+ <span>Customize</span>
100
+ </a>
101
+ </li>
102
+ <li class="sidebar-item relative">
103
+ <a href="#" class="flex items-center p-2 rounded hover:bg-gray-800">
104
+ <i class="fas fa-bars w-6"></i>
105
+ <span>Menus</span>
106
+ </a>
107
+ </li>
108
+ </ul>
109
+ </div>
110
+ </div>
111
+ </nav>
112
+
113
+ <div class="p-4 border-t border-gray-700">
114
+ <div class="flex items-center space-x-3">
115
+ <div class="w-8 h-8 rounded-full bg-blue-500 flex items-center justify-center">
116
+ <span class="text-white font-medium">AD</span>
117
+ </div>
118
+ <div>
119
+ <div class="text-sm font-medium">Admin User</div>
120
+ <div class="text-xs text-gray-400">Administrator</div>
121
+ </div>
122
+ </div>
123
+ </div>
124
+ </div>
125
+
126
+ <!-- Main Content -->
127
+ <div class="flex-1 flex flex-col overflow-hidden">
128
+ <!-- Top Bar -->
129
+ <header class="bg-white border-b border-gray-200 py-3 px-6 flex items-center justify-between">
130
+ <div class="flex items-center space-x-4">
131
+ <button class="text-gray-500 hover:text-gray-700">
132
+ <i class="fas fa-bars"></i>
133
+ </button>
134
+ <div class="relative">
135
+ <input type="text" placeholder="Search..." class="pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 w-64">
136
+ <i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
137
+ </div>
138
+ </div>
139
+
140
+ <div class="flex items-center space-x-4">
141
+ <button class="text-gray-500 hover:text-gray-700 relative">
142
+ <i class="fas fa-bell"></i>
143
+ <span class="absolute top-0 right-0 w-2 h-2 bg-red-500 rounded-full"></span>
144
+ </button>
145
+ <button class="text-gray-500 hover:text-gray-700">
146
+ <i class="fas fa-question-circle"></i>
147
+ </button>
148
+ <div class="w-px h-6 bg-gray-200"></div>
149
+ <div class="flex items-center space-x-2">
150
+ <div class="w-8 h-8 rounded-full bg-blue-500 flex items-center justify-center">
151
+ <span class="text-white font-medium">AD</span>
152
+ </div>
153
+ <span class="text-sm font-medium">Admin</span>
154
+ </div>
155
+ </div>
156
+ </header>
157
+
158
+ <!-- Content Area -->
159
+ <main class="flex-1 overflow-y-auto p-6 bg-gray-50">
160
+ <div class="mb-6 flex justify-between items-center">
161
+ <h1 class="text-2xl font-bold text-gray-800">Posts</h1>
162
+ <button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg flex items-center space-x-2">
163
+ <i class="fas fa-plus"></i>
164
+ <span>Add New</span>
165
+ </button>
166
+ </div>
167
+
168
+ <!-- Stats Cards -->
169
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-4 mb-6">
170
+ <div class="bg-white rounded-lg shadow p-4">
171
+ <div class="flex items-center justify-between">
172
+ <div>
173
+ <p class="text-sm text-gray-500">All Posts</p>
174
+ <p class="text-2xl font-bold">24</p>
175
+ </div>
176
+ <div class="p-3 rounded-full bg-blue-100 text-blue-600">
177
+ <i class="fas fa-file-alt"></i>
178
+ </div>
179
+ </div>
180
+ </div>
181
+ <div class="bg-white rounded-lg shadow p-4">
182
+ <div class="flex items-center justify-between">
183
+ <div>
184
+ <p class="text-sm text-gray-500">Published</p>
185
+ <p class="text-2xl font-bold">18</p>
186
+ </div>
187
+ <div class="p-3 rounded-full bg-green-100 text-green-600">
188
+ <i class="fas fa-check-circle"></i>
189
+ </div>
190
+ </div>
191
+ </div>
192
+ <div class="bg-white rounded-lg shadow p-4">
193
+ <div class="flex items-center justify-between">
194
+ <div>
195
+ <p class="text-sm text-gray-500">Drafts</p>
196
+ <p class="text-2xl font-bold">4</p>
197
+ </div>
198
+ <div class="p-3 rounded-full bg-yellow-100 text-yellow-600">
199
+ <i class="fas fa-edit"></i>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ <div class="bg-white rounded-lg shadow p-4">
204
+ <div class="flex items-center justify-between">
205
+ <div>
206
+ <p class="text-sm text-gray-500">Pending</p>
207
+ <p class="text-2xl font-bold">2</p>
208
+ </div>
209
+ <div class="p-3 rounded-full bg-red-100 text-red-600">
210
+ <i class="fas fa-clock"></i>
211
+ </div>
212
+ </div>
213
+ </div>
214
+ </div>
215
+
216
+ <!-- Posts Table -->
217
+ <div class="bg-white rounded-lg shadow overflow-hidden">
218
+ <div class="p-4 border-b border-gray-200 flex justify-between items-center">
219
+ <div class="flex items-center space-x-4">
220
+ <select class="border border-gray-300 rounded px-3 py-1 text-sm">
221
+ <option>Bulk Actions</option>
222
+ <option>Edit</option>
223
+ <option>Move to Trash</option>
224
+ </select>
225
+ <button class="bg-gray-100 hover:bg-gray-200 text-gray-700 px-3 py-1 rounded text-sm">
226
+ Apply
227
+ </button>
228
+ </div>
229
+
230
+ <div class="flex items-center space-x-2">
231
+ <input type="text" placeholder="Filter posts..." class="border border-gray-300 rounded px-3 py-1 text-sm">
232
+ <button class="bg-gray-100 hover:bg-gray-200 text-gray-700 px-3 py-1 rounded text-sm">
233
+ Filter
234
+ </button>
235
+ </div>
236
+ </div>
237
+
238
+ <table class="min-w-full divide-y divide-gray-200">
239
+ <thead class="bg-gray-50">
240
+ <tr>
241
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
242
+ <input type="checkbox" class="rounded text-blue-600">
243
+ </th>
244
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Title</th>
245
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Author</th>
246
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Categories</th>
247
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Tags</th>
248
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
249
+ </tr>
250
+ </thead>
251
+ <tbody class="bg-white divide-y divide-gray-200">
252
+ <tr class="hover:bg-gray-50">
253
+ <td class="px-6 py-4 whitespace-nowrap">
254
+ <input type="checkbox" class="rounded text-blue-600">
255
+ </td>
256
+ <td class="px-6 py-4 whitespace-nowrap">
257
+ <div class="flex items-center">
258
+ <div class="flex-shrink-0 h-10 w-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600">
259
+ <i class="fas fa-file-alt"></i>
260
+ </div>
261
+ <div class="ml-4">
262
+ <div class="text-sm font-medium text-gray-900">Getting Started with WordPress</div>
263
+ <div class="text-sm text-gray-500">
264
+ <span class="text-green-600">Published</span>
265
+ <span class="mx-1">•</span>
266
+ <a href="#" class="text-blue-600">Edit</a>
267
+ <span class="mx-1">•</span>
268
+ <a href="#" class="text-blue-600">View</a>
269
+ <span class="mx-1">•</span>
270
+ <a href="#" class="text-blue-600">Quick Edit</a>
271
+ </div>
272
+ </div>
273
+ </div>
274
+ </td>
275
+ <td class="px-6 py-4 whitespace-nowrap">
276
+ <div class="text-sm text-gray-900">Admin</div>
277
+ </td>
278
+ <td class="px-6 py-4 whitespace-nowrap">
279
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">
280
+ Tutorials
281
+ </span>
282
+ </td>
283
+ <td class="px-6 py-4 whitespace-nowrap">
284
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-blue-100 text-blue-800">
285
+ beginner
286
+ </span>
287
+ </td>
288
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
289
+ May 15, 2023
290
+ </td>
291
+ </tr>
292
+
293
+ <tr class="hover:bg-gray-50">
294
+ <td class="px-6 py-4 whitespace-nowrap">
295
+ <input type="checkbox" class="rounded text-blue-600">
296
+ </td>
297
+ <td class="px-6 py-4 whitespace-nowrap">
298
+ <div class="flex items-center">
299
+ <div class="flex-shrink-0 h-10 w-10 bg-yellow-100 rounded-full flex items-center justify-center text-yellow-600">
300
+ <i class="fas fa-edit"></i>
301
+ </div>
302
+ <div class="ml-4">
303
+ <div class="text-sm font-medium text-gray-900">Advanced Customization Guide</div>
304
+ <div class="text-sm text-gray-500">
305
+ <span class="text-yellow-600">Draft</span>
306
+ <span class="mx-1">•</span>
307
+ <a href="#" class="text-blue-600">Edit</a>
308
+ </div>
309
+ </div>
310
+ </div>
311
+ </td>
312
+ <td class="px-6 py-4 whitespace-nowrap">
313
+ <div class="text-sm text-gray-900">Editor</div>
314
+ </td>
315
+ <td class="px-6 py-4 whitespace-nowrap">
316
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-purple-100 text-purple-800">
317
+ Development
318
+ </span>
319
+ </td>
320
+ <td class="px-6 py-4 whitespace-nowrap">
321
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-blue-100 text-blue-800">
322
+ customization
323
+ </span>
324
+ </td>
325
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
326
+ May 10, 2023
327
+ </td>
328
+ </tr>
329
+
330
+ <tr class="hover:bg-gray-50">
331
+ <td class="px-6 py-4 whitespace-nowrap">
332
+ <input type="checkbox" class="rounded text-blue-600">
333
+ </td>
334
+ <td class="px-6 py-4 whitespace-nowrap">
335
+ <div class="flex items-center">
336
+ <div class="flex-shrink-0 h-10 w-10 bg-red-100 rounded-full flex items-center justify-center text-red-600">
337
+ <i class="fas fa-clock"></i>
338
+ </div>
339
+ <div class="ml-4">
340
+ <div class="text-sm font-medium text-gray-900">Plugin Development Tutorial</div>
341
+ <div class="text-sm text-gray-500">
342
+ <span class="text-red-600">Pending</span>
343
+ <span class="mx-1">•</span>
344
+ <a href="#" class="text-blue-600">Edit</a>
345
+ </div>
346
+ </div>
347
+ </div>
348
+ </td>
349
+ <td class="px-6 py-4 whitespace-nowrap">
350
+ <div class="text-sm text-gray-900">Contributor</div>
351
+ </td>
352
+ <td class="px-6 py-4 whitespace-nowrap">
353
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-indigo-100 text-indigo-800">
354
+ Plugins
355
+ </span>
356
+ </td>
357
+ <td class="px-6 py-4 whitespace-nowrap">
358
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-blue-100 text-blue-800">
359
+ development
360
+ </span>
361
+ </td>
362
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
363
+ May 5, 2023
364
+ </td>
365
+ </tr>
366
+ </tbody>
367
+ </table>
368
+
369
+ <div class="px-6 py-4 border-t border-gray-200 flex items-center justify-between">
370
+ <div class="text-sm text-gray-500">
371
+ Showing <span class="font-medium">1</span> to <span class="font-medium">3</span> of <span class="font-medium">24</span> posts
372
+ </div>
373
+ <div class="flex space-x-2">
374
+ <button class="px-3 py-1 border border-gray-300 rounded text-sm bg-white text-gray-700 hover:bg-gray-50">
375
+ Previous
376
+ </button>
377
+ <button class="px-3 py-1 border border-gray-300 rounded text-sm bg-white text-gray-700 hover:bg-gray-50">
378
+ 1
379
+ </button>
380
+ <button class="px-3 py-1 border border-gray-300 rounded text-sm bg-white text-gray-700 hover:bg-gray-50">
381
+ 2
382
+ </button>
383
+ <button class="px-3 py-1 border border-gray-300 rounded text-sm bg-white text-gray-700 hover:bg-gray-50">
384
+ 3
385
+ </button>
386
+ <button class="px-3 py-1 border border-gray-300 rounded text-sm bg-white text-gray-700 hover:bg-gray-50">
387
+ Next
388
+ </button>
389
+ </div>
390
+ </div>
391
+ </div>
392
+
393
+ <!-- Quick Draft -->
394
+ <div class="mt-6 grid grid-cols-1 md:grid-cols-3 gap-6">
395
+ <div class="md:col-span-2 bg-white rounded-lg shadow p-6">
396
+ <h2 class="text-lg font-medium text-gray-900 mb-4">Quick Draft</h2>
397
+ <div class="space-y-4">
398
+ <div>
399
+ <label for="draft-title" class="block text-sm font-medium text-gray-700 mb-1">Title</label>
400
+ <input type="text" id="draft-title" class="w-full border border-gray-300 rounded-lg px-3 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
401
+ </div>
402
+ <div>
403
+ <label for="draft-content" class="block text-sm font-medium text-gray-700 mb-1">Content</label>
404
+ <div class="border border-gray-300 rounded-lg overflow-hidden">
405
+ <div class="editor-toolbar border-b border-gray-300 bg-gray-50 p-2 flex flex-wrap gap-1">
406
+ <button type="button" class="p-2 rounded hover:bg-gray-200">
407
+ <i class="fas fa-bold"></i>
408
+ </button>
409
+ <button type="button" class="p-2 rounded hover:bg-gray-200">
410
+ <i class="fas fa-italic"></i>
411
+ </button>
412
+ <button type="button" class="p-2 rounded hover:bg-gray-200">
413
+ <i class="fas fa-underline"></i>
414
+ </button>
415
+ <button type="button" class="p-2 rounded hover:bg-gray-200">
416
+ <i class="fas fa-list-ul"></i>
417
+ </button>
418
+ <button type="button" class="p-2 rounded hover:bg-gray-200">
419
+ <i class="fas fa-list-ol"></i>
420
+ </button>
421
+ <button type="button" class="p-2 rounded hover:bg-gray-200">
422
+ <i class="fas fa-quote-right"></i>
423
+ </button>
424
+ <button type="button" class="p-2 rounded hover:bg-gray-200">
425
+ <i class="fas fa-link"></i>
426
+ </button>
427
+ <button type="button" class="p-2 rounded hover:bg-gray-200">
428
+ <i class="fas fa-image"></i>
429
+ </button>
430
+ <button type="button" class="p-2 rounded hover:bg-gray-200">
431
+ <i class="fas fa-code"></i>
432
+ </button>
433
+ </div>
434
+ <textarea id="draft-content" rows="6" class="w-full px-3 py-2 focus:outline-none resize-none"></textarea>
435
+ </div>
436
+ </div>
437
+ <div class="flex justify-end">
438
+ <button type="button" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg">
439
+ Save Draft
440
+ </button>
441
+ </div>
442
+ </div>
443
+ </div>
444
+
445
+ <!-- Activity Feed -->
446
+ <div class="bg-white rounded-lg shadow p-6">
447
+ <h2 class="text-lg font-medium text-gray-900 mb-4">Recent Activity</h2>
448
+ <div class="space-y-4">
449
+ <div class="flex items-start">
450
+ <div class="flex-shrink-0">
451
+ <div class="h-8 w-8 rounded-full bg-blue-100 flex items-center justify-center text-blue-600">
452
+ <i class="fas fa-user-edit"></i>
453
+ </div>
454
+ </div>
455
+ <div class="ml-3">
456
+ <p class="text-sm font-medium text-gray-900">You published "Getting Started with WordPress"</p>
457
+ <p class="text-sm text-gray-500">2 hours ago</p>
458
+ </div>
459
+ </div>
460
+
461
+ <div class="flex items-start">
462
+ <div class="flex-shrink-0">
463
+ <div class="h-8 w-8 rounded-full bg-green-100 flex items-center justify-center text-green-600">
464
+ <i class="fas fa-comment"></i>
465
+ </div>
466
+ </div>
467
+ <div class="ml-3">
468
+ <p class="text-sm font-medium text-gray-900">New comment on "Theme Customization Guide"</p>
469
+ <p class="text-sm text-gray-500">5 hours ago</p>
470
+ </div>
471
+ </div>
472
+
473
+ <div class="flex items-start">
474
+ <div class="flex-shrink-0">
475
+ <div class="h-8 w-8 rounded-full bg-purple-100 flex items-center justify-center text-purple-600">
476
+ <i class="fas fa-plug"></i>
477
+ </div>
478
+ </div>
479
+ <div class="ml-3">
480
+ <p class="text-sm font-medium text-gray-900">Plugin "SEO Toolkit" was updated</p>
481
+ <p class="text-sm text-gray-500">1 day ago</p>
482
+ </div>
483
+ </div>
484
+
485
+ <div class="flex items-start">
486
+ <div class="flex-shrink-0">
487
+ <div class="h-8 w-8 rounded-full bg-yellow-100 flex items-center justify-center text-yellow-600">
488
+ <i class="fas fa-user-plus"></i>
489
+ </div>
490
+ </div>
491
+ <div class="ml-3">
492
+ <p class="text-sm font-medium text-gray-900">New user "johndoe" registered</p>
493
+ <p class="text-sm text-gray-500">2 days ago</p>
494
+ </div>
495
+ </div>
496
+ </div>
497
+ </div>
498
+ </div>
499
+ </main>
500
+ </div>
501
+ </div>
502
+
503
+ <script>
504
+ // Toggle submenus
505
+ document.querySelectorAll('.sidebar-item').forEach(item => {
506
+ item.addEventListener('click', function(e) {
507
+ if(e.target.closest('a')) {
508
+ const submenu = this.querySelector('.submenu');
509
+ if(submenu) {
510
+ submenu.classList.toggle('hidden');
511
+ }
512
+ }
513
+ });
514
+ });
515
+
516
+ // Simulate loading for demo purposes
517
+ document.addEventListener('DOMContentLoaded', function() {
518
+ setTimeout(() => {
519
+ document.querySelectorAll('.animate-pulse').forEach(el => {
520
+ el.classList.remove('animate-pulse');
521
+ });
522
+ }, 2000);
523
+ });
524
+ </script>
525
+ <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=docto41/word-press" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
526
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ https://huggingface.co/spaces/docto41/wordpress