Fdgg55 commited on
Commit
d97cefb
·
verified ·
1 Parent(s): 69264c5

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +596 -19
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Facebook
3
- emoji:
4
- colorFrom: green
5
- colorTo: red
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: facebook
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: gray
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,596 @@
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>Facebook 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
+ @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Roboto', sans-serif;
14
+ background-color: #f0f2f5;
15
+ }
16
+
17
+ .navbar {
18
+ background-color: #ffffff;
19
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
20
+ }
21
+
22
+ .search-bar {
23
+ background-color: #f0f2f5;
24
+ border-radius: 50px;
25
+ }
26
+
27
+ .search-bar:focus-within {
28
+ background-color: #e4e6eb;
29
+ }
30
+
31
+ .icon-button {
32
+ color: #65676b;
33
+ width: 40px;
34
+ height: 40px;
35
+ border-radius: 50%;
36
+ display: flex;
37
+ align-items: center;
38
+ justify-content: center;
39
+ }
40
+
41
+ .icon-button:hover {
42
+ background-color: #f0f2f5;
43
+ }
44
+
45
+ .active-icon {
46
+ color: #1877f2;
47
+ border-bottom: 3px solid #1877f2;
48
+ border-radius: 0;
49
+ }
50
+
51
+ .story-card {
52
+ position: relative;
53
+ border-radius: 10px;
54
+ overflow: hidden;
55
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
56
+ }
57
+
58
+ .story-card::after {
59
+ content: '';
60
+ position: absolute;
61
+ bottom: 0;
62
+ left: 0;
63
+ right: 0;
64
+ height: 40%;
65
+ background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
66
+ }
67
+
68
+ .post-card {
69
+ background-color: #ffffff;
70
+ border-radius: 8px;
71
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
72
+ }
73
+
74
+ .reaction-button {
75
+ color: #65676b;
76
+ font-weight: 500;
77
+ padding: 8px;
78
+ border-radius: 5px;
79
+ }
80
+
81
+ .reaction-button:hover {
82
+ background-color: #f0f2f5;
83
+ }
84
+
85
+ .sidebar-item {
86
+ padding: 8px;
87
+ border-radius: 8px;
88
+ }
89
+
90
+ .sidebar-item:hover {
91
+ background-color: #e4e6eb;
92
+ }
93
+
94
+ .create-post-input {
95
+ background-color: #f0f2f5;
96
+ border-radius: 20px;
97
+ }
98
+
99
+ .create-post-input:hover {
100
+ background-color: #e4e6eb;
101
+ }
102
+
103
+ .online-indicator {
104
+ position: absolute;
105
+ bottom: 0;
106
+ right: 0;
107
+ width: 10px;
108
+ height: 10px;
109
+ background-color: #31a24c;
110
+ border-radius: 50%;
111
+ border: 2px solid #ffffff;
112
+ }
113
+ </style>
114
+ </head>
115
+ <body>
116
+ <!-- Navbar -->
117
+ <header class="navbar fixed top-0 left-0 right-0 z-50 h-14 flex items-center px-4">
118
+ <div class="flex items-center w-full max-w-6xl mx-auto">
119
+ <!-- Logo -->
120
+ <div class="flex items-center">
121
+ <i class="fab fa-facebook text-3xl text-blue-600 mr-2"></i>
122
+ <div class="search-bar flex items-center px-3 py-2 ml-2">
123
+ <i class="fas fa-search text-gray-500 mr-2"></i>
124
+ <input type="text" placeholder="Search Facebook" class="bg-transparent outline-none w-40 md:w-60">
125
+ </div>
126
+ </div>
127
+
128
+ <!-- Main Navigation -->
129
+ <div class="hidden md:flex flex-1 justify-center space-x-1 mx-4">
130
+ <a href="#" class="icon-button active-icon">
131
+ <i class="fas fa-home text-2xl"></i>
132
+ </a>
133
+ <a href="#" class="icon-button">
134
+ <i class="fas fa-tv text-2xl"></i>
135
+ </a>
136
+ <a href="#" class="icon-button">
137
+ <i class="fas fa-store text-2xl"></i>
138
+ </a>
139
+ <a href="#" class="icon-button">
140
+ <i class="fas fa-users text-2xl"></i>
141
+ </a>
142
+ <a href="#" class="icon-button">
143
+ <i class="fas fa-gamepad text-2xl"></i>
144
+ </a>
145
+ </div>
146
+
147
+ <!-- Right Side Icons -->
148
+ <div class="flex items-center justify-end space-x-2">
149
+ <button class="icon-button">
150
+ <i class="fas fa-bell text-xl"></i>
151
+ </button>
152
+ <button class="icon-button">
153
+ <i class="fas fa-comment-dots text-xl"></i>
154
+ </button>
155
+ <button class="icon-button">
156
+ <i class="fas fa-user-circle text-xl"></i>
157
+ </button>
158
+ </div>
159
+ </div>
160
+ </header>
161
+
162
+ <!-- Main Content -->
163
+ <main class="pt-14 pb-4 flex">
164
+ <!-- Left Sidebar -->
165
+ <div class="hidden md:block w-80 fixed left-0 top-14 h-screen overflow-y-auto p-2">
166
+ <div class="space-y-1">
167
+ <a href="#" class="sidebar-item flex items-center">
168
+ <div class="w-8 h-8 rounded-full bg-gray-300 mr-2"></div>
169
+ <span>Your Profile</span>
170
+ </a>
171
+ <a href="#" class="sidebar-item flex items-center">
172
+ <div class="w-8 h-8 rounded-full bg-blue-100 text-blue-600 flex items-center justify-center mr-2">
173
+ <i class="fas fa-user-friends"></i>
174
+ </div>
175
+ <span>Friends</span>
176
+ </a>
177
+ <a href="#" class="sidebar-item flex items-center">
178
+ <div class="w-8 h-8 rounded-full bg-blue-100 text-blue-600 flex items-center justify-center mr-2">
179
+ <i class="fas fa-clock"></i>
180
+ </div>
181
+ <span>Memories</span>
182
+ </a>
183
+ <a href="#" class="sidebar-item flex items-center">
184
+ <div class="w-8 h-8 rounded-full bg-blue-100 text-blue-600 flex items-center justify-center mr-2">
185
+ <i class="fas fa-bookmark"></i>
186
+ </div>
187
+ <span>Saved</span>
188
+ </a>
189
+ <a href="#" class="sidebar-item flex items-center">
190
+ <div class="w-8 h-8 rounded-full bg-blue-100 text-blue-600 flex items-center justify-center mr-2">
191
+ <i class="fas fa-flag"></i>
192
+ </div>
193
+ <span>Pages</span>
194
+ </a>
195
+ <a href="#" class="sidebar-item flex items-center">
196
+ <div class="w-8 h-8 rounded-full bg-blue-100 text-blue-600 flex items-center justify-center mr-2">
197
+ <i class="fas fa-calendar"></i>
198
+ </div>
199
+ <span>Events</span>
200
+ </a>
201
+ <a href="#" class="sidebar-item flex items-center">
202
+ <div class="w-8 h-8 rounded-full bg-blue-100 text-blue-600 flex items-center justify-center mr-2">
203
+ <i class="fas fa-users"></i>
204
+ </div>
205
+ <span>Groups</span>
206
+ </a>
207
+ <a href="#" class="sidebar-item flex items-center">
208
+ <div class="w-8 h-8 rounded-full bg-blue-100 text-blue-600 flex items-center justify-center mr-2">
209
+ <i class="fas fa-video"></i>
210
+ </div>
211
+ <span>Watch</span>
212
+ </a>
213
+ <a href="#" class="sidebar-item flex items-center">
214
+ <div class="w-8 h-8 rounded-full bg-blue-100 text-blue-600 flex items-center justify-center mr-2">
215
+ <i class="fas fa-store"></i>
216
+ </div>
217
+ <span>Marketplace</span>
218
+ </a>
219
+ </div>
220
+
221
+ <div class="border-t border-gray-300 my-2 pt-2">
222
+ <h3 class="text-gray-500 font-semibold px-2 mb-1">Your shortcuts</h3>
223
+ <a href="#" class="sidebar-item flex items-center">
224
+ <div class="w-8 h-8 rounded-full bg-gray-300 mr-2"></div>
225
+ <span>React Developers</span>
226
+ </a>
227
+ <a href="#" class="sidebar-item flex items-center">
228
+ <div class="w-8 h-8 rounded-full bg-gray-300 mr-2"></div>
229
+ <span>JavaScript Group</span>
230
+ </a>
231
+ <a href="#" class="sidebar-item flex items-center">
232
+ <div class="w-8 h-8 rounded-full bg-gray-300 mr-2"></div>
233
+ <span>Tech News</span>
234
+ </a>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Main Feed -->
239
+ <div class="flex-1 md:mx-80 lg:mx-96 px-2 md:px-4">
240
+ <!-- Stories -->
241
+ <div class="bg-white rounded-lg p-4 mb-4">
242
+ <div class="flex space-x-2 overflow-x-auto pb-2">
243
+ <!-- Create Story Card -->
244
+ <div class="story-card flex-shrink-0 w-28 h-48 bg-gray-100 relative">
245
+ <div class="absolute top-0 left-0 right-0 h-3/4 bg-gray-300"></div>
246
+ <div class="absolute bottom-0 left-0 right-0 h-1/4 bg-white flex flex-col items-center justify-center">
247
+ <div class="w-8 h-8 rounded-full bg-blue-500 flex items-center justify-center text-white -mt-4">
248
+ <i class="fas fa-plus"></i>
249
+ </div>
250
+ <span class="text-xs font-semibold mt-2">Create Story</span>
251
+ </div>
252
+ </div>
253
+
254
+ <!-- Story Cards -->
255
+ <div class="story-card flex-shrink-0 w-28 h-48 relative">
256
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Story" class="w-full h-full object-cover">
257
+ <div class="absolute top-2 left-2 w-8 h-8 rounded-full border-4 border-blue-500">
258
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Profile" class="w-full h-full rounded-full">
259
+ </div>
260
+ <span class="absolute bottom-2 left-2 right-2 text-white text-xs font-semibold z-10">Jane Smith</span>
261
+ </div>
262
+
263
+ <div class="story-card flex-shrink-0 w-28 h-48 relative">
264
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Story" class="w-full h-full object-cover">
265
+ <div class="absolute top-2 left-2 w-8 h-8 rounded-full border-4 border-blue-500">
266
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Profile" class="w-full h-full rounded-full">
267
+ </div>
268
+ <span class="absolute bottom-2 left-2 right-2 text-white text-xs font-semibold z-10">John Doe</span>
269
+ </div>
270
+
271
+ <div class="story-card flex-shrink-0 w-28 h-48 relative">
272
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Story" class="w-full h-full object-cover">
273
+ <div class="absolute top-2 left-2 w-8 h-8 rounded-full border-4 border-blue-500">
274
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Profile" class="w-full h-full rounded-full">
275
+ </div>
276
+ <span class="absolute bottom-2 left-2 right-2 text-white text-xs font-semibold z-10">Sarah Johnson</span>
277
+ </div>
278
+
279
+ <div class="story-card flex-shrink-0 w-28 h-48 relative">
280
+ <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Story" class="w-full h-full object-cover">
281
+ <div class="absolute top-2 left-2 w-8 h-8 rounded-full border-4 border-blue-500">
282
+ <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Profile" class="w-full h-full rounded-full">
283
+ </div>
284
+ <span class="absolute bottom-2 left-2 right-2 text-white text-xs font-semibold z-10">Mike Brown</span>
285
+ </div>
286
+ </div>
287
+ </div>
288
+
289
+ <!-- Create Post -->
290
+ <div class="post-card p-4 mb-4">
291
+ <div class="flex items-center mb-4">
292
+ <img src="https://randomuser.me/api/portraits/men/1.jpg" alt="Profile" class="w-10 h-10 rounded-full mr-2">
293
+ <input type="text" placeholder="What's on your mind?" class="create-post-input flex-1 px-4 py-2 outline-none">
294
+ </div>
295
+ <div class="border-t border-gray-300 pt-3 flex justify-between">
296
+ <button class="flex items-center text-gray-500 font-medium px-2 py-1 rounded-lg hover:bg-gray-100">
297
+ <i class="fas fa-video text-red-500 mr-1"></i> Live Video
298
+ </button>
299
+ <button class="flex items-center text-gray-500 font-medium px-2 py-1 rounded-lg hover:bg-gray-100">
300
+ <i class="fas fa-images text-green-500 mr-1"></i> Photo/Video
301
+ </button>
302
+ <button class="flex items-center text-gray-500 font-medium px-2 py-1 rounded-lg hover:bg-gray-100">
303
+ <i class="fas fa-smile text-yellow-500 mr-1"></i> Feeling/Activity
304
+ </button>
305
+ </div>
306
+ </div>
307
+
308
+ <!-- Posts -->
309
+ <div class="post-card p-4 mb-4">
310
+ <div class="flex justify-between items-center mb-3">
311
+ <div class="flex items-center">
312
+ <div class="relative">
313
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Profile" class="w-10 h-10 rounded-full mr-2">
314
+ <div class="online-indicator"></div>
315
+ </div>
316
+ <div>
317
+ <div class="font-semibold">Jane Smith</div>
318
+ <div class="text-gray-500 text-xs">2 hrs ago · <i class="fas fa-globe-americas"></i></div>
319
+ </div>
320
+ </div>
321
+ <button class="icon-button w-8 h-8">
322
+ <i class="fas fa-ellipsis-h"></i>
323
+ </button>
324
+ </div>
325
+
326
+ <p class="mb-3">Just visited this amazing place! The views were breathtaking. #travel #adventure</p>
327
+
328
+ <img src="https://source.unsplash.com/random/600x400/?nature" alt="Post" class="w-full rounded-lg mb-3">
329
+
330
+ <div class="flex justify-between text-gray-500 text-sm mb-2">
331
+ <div class="flex items-center">
332
+ <div class="w-4 h-4 rounded-full bg-blue-500 text-white flex items-center justify-center text-xs mr-1">
333
+ <i class="fas fa-thumbs-up"></i>
334
+ </div>
335
+ <span>245</span>
336
+ </div>
337
+ <div>
338
+ <span class="mr-2">42 comments</span>
339
+ <span>12 shares</span>
340
+ </div>
341
+ </div>
342
+
343
+ <div class="border-t border-b border-gray-300 py-1 flex justify-between">
344
+ <button class="reaction-button flex-1 flex items-center justify-center">
345
+ <i class="far fa-thumbs-up mr-1"></i> Like
346
+ </button>
347
+ <button class="reaction-button flex-1 flex items-center justify-center">
348
+ <i class="far fa-comment mr-1"></i> Comment
349
+ </button>
350
+ <button class="reaction-button flex-1 flex items-center justify-center">
351
+ <i class="fas fa-share mr-1"></i> Share
352
+ </button>
353
+ </div>
354
+
355
+ <div class="pt-3">
356
+ <div class="flex items-start mb-2">
357
+ <img src="https://randomuser.me/api/portraits/men/1.jpg" alt="Profile" class="w-8 h-8 rounded-full mr-2">
358
+ <div class="bg-gray-100 rounded-2xl px-3 py-2 flex-1">
359
+ <div class="font-semibold text-sm">You</div>
360
+ <p class="text-sm">Looks amazing! Where is this?</p>
361
+ </div>
362
+ </div>
363
+
364
+ <div class="flex items-center">
365
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Profile" class="w-8 h-8 rounded-full mr-2">
366
+ <div class="flex-1 flex items-center">
367
+ <input type="text" placeholder="Write a comment..." class="bg-gray-100 rounded-2xl px-3 py-2 text-sm outline-none flex-1">
368
+ <div class="flex space-x-2 ml-2">
369
+ <button class="text-gray-400 hover:text-gray-600">
370
+ <i class="far fa-smile"></i>
371
+ </button>
372
+ <button class="text-gray-400 hover:text-gray-600">
373
+ <i class="fas fa-camera"></i>
374
+ </button>
375
+ <button class="text-gray-400 hover:text-gray-600">
376
+ <i class="fas fa-gift"></i>
377
+ </button>
378
+ </div>
379
+ </div>
380
+ </div>
381
+ </div>
382
+ </div>
383
+
384
+ <div class="post-card p-4 mb-4">
385
+ <div class="flex justify-between items-center mb-3">
386
+ <div class="flex items-center">
387
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Profile" class="w-10 h-10 rounded-full mr-2">
388
+ <div>
389
+ <div class="font-semibold">John Doe</div>
390
+ <div class="text-gray-500 text-xs">Yesterday at 5:30 PM · <i class="fas fa-user-friends"></i></div>
391
+ </div>
392
+ </div>
393
+ <button class="icon-button w-8 h-8">
394
+ <i class="fas fa-ellipsis-h"></i>
395
+ </button>
396
+ </div>
397
+
398
+ <p class="mb-3">Check out this cool tech gadget I just got! It's revolutionizing the way I work.</p>
399
+
400
+ <div class="bg-gray-100 rounded-lg p-3 mb-3 flex">
401
+ <div class="w-20 h-20 bg-gray-300 rounded mr-3"></div>
402
+ <div>
403
+ <div class="font-semibold">The Ultimate Productivity Tool</div>
404
+ <div class="text-gray-500 text-sm">techgadgets.com</div>
405
+ <div class="text-sm mt-1">This device helps you stay focused and productive throughout your workday with advanced features.</div>
406
+ </div>
407
+ </div>
408
+
409
+ <div class="flex justify-between text-gray-500 text-sm mb-2">
410
+ <div class="flex items-center">
411
+ <div class="w-4 h-4 rounded-full bg-blue-500 text-white flex items-center justify-center text-xs mr-1">
412
+ <i class="fas fa-thumbs-up"></i>
413
+ </div>
414
+ <span>189</span>
415
+ </div>
416
+ <div>
417
+ <span class="mr-2">36 comments</span>
418
+ <span>8 shares</span>
419
+ </div>
420
+ </div>
421
+
422
+ <div class="border-t border-b border-gray-300 py-1 flex justify-between">
423
+ <button class="reaction-button flex-1 flex items-center justify-center">
424
+ <i class="far fa-thumbs-up mr-1"></i> Like
425
+ </button>
426
+ <button class="reaction-button flex-1 flex items-center justify-center">
427
+ <i class="far fa-comment mr-1"></i> Comment
428
+ </button>
429
+ <button class="reaction-button flex-1 flex items-center justify-center">
430
+ <i class="fas fa-share mr-1"></i> Share
431
+ </button>
432
+ </div>
433
+ </div>
434
+ </div>
435
+
436
+ <!-- Right Sidebar -->
437
+ <div class="hidden lg:block w-80 fixed right-0 top-14 h-screen overflow-y-auto p-4">
438
+ <div class="mb-4">
439
+ <h3 class="font-semibold text-gray-500 mb-2">Sponsored</h3>
440
+ <div class="flex items-center mb-3">
441
+ <div class="w-32 h-20 bg-gray-300 rounded-lg mr-2"></div>
442
+ <div>
443
+ <div class="font-semibold text-sm">Try our new product</div>
444
+ <div class="text-gray-500 text-xs">example.com</div>
445
+ </div>
446
+ </div>
447
+ <div class="flex items-center">
448
+ <div class="w-32 h-20 bg-gray-300 rounded-lg mr-2"></div>
449
+ <div>
450
+ <div class="font-semibold text-sm">Summer Sale 50% off</div>
451
+ <div class="text-gray-500 text-xs">shopping.com</div>
452
+ </div>
453
+ </div>
454
+ </div>
455
+
456
+ <div class="border-t border-gray-300 pt-3 mb-4">
457
+ <div class="flex justify-between items-center mb-3">
458
+ <h3 class="font-semibold text-gray-500">Birthdays</h3>
459
+ <button class="icon-button w-8 h-8">
460
+ <i class="fas fa-ellipsis-h"></i>
461
+ </button>
462
+ </div>
463
+ <div class="flex items-center">
464
+ <div class="w-10 h-10 rounded-full bg-blue-100 text-blue-600 flex items-center justify-center mr-2">
465
+ <i class="fas fa-birthday-cake"></i>
466
+ </div>
467
+ <div class="text-sm">
468
+ <span class="font-semibold">Alex Johnson</span> and <span class="font-semibold">2 others</span> have birthdays today.
469
+ </div>
470
+ </div>
471
+ </div>
472
+
473
+ <div class="border-t border-gray-300 pt-3">
474
+ <div class="flex justify-between items-center mb-3">
475
+ <h3 class="font-semibold text-gray-500">Contacts</h3>
476
+ <div class="flex space-x-2">
477
+ <button class="icon-button w-8 h-8">
478
+ <i class="fas fa-video"></i>
479
+ </button>
480
+ <button class="icon-button w-8 h-8">
481
+ <i class="fas fa-search"></i>
482
+ </button>
483
+ <button class="icon-button w-8 h-8">
484
+ <i class="fas fa-ellipsis-h"></i>
485
+ </button>
486
+ </div>
487
+ </div>
488
+
489
+ <div class="space-y-2">
490
+ <div class="flex items-center p-2 rounded-lg hover:bg-gray-100">
491
+ <div class="relative">
492
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Profile" class="w-8 h-8 rounded-full mr-2">
493
+ <div class="online-indicator"></div>
494
+ </div>
495
+ <span class="font-medium">Sarah Johnson</span>
496
+ </div>
497
+ <div class="flex items-center p-2 rounded-lg hover:bg-gray-100">
498
+ <div class="relative">
499
+ <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Profile" class="w-8 h-8 rounded-full mr-2">
500
+ <div class="online-indicator"></div>
501
+ </div>
502
+ <span class="font-medium">Mike Brown</span>
503
+ </div>
504
+ <div class="flex items-center p-2 rounded-lg hover:bg-gray-100">
505
+ <div class="relative">
506
+ <img src="https://randomuser.me/api/portraits/women/33.jpg" alt="Profile" class="w-8 h-8 rounded-full mr-2">
507
+ <div class="online-indicator"></div>
508
+ </div>
509
+ <span class="font-medium">Emily Davis</span>
510
+ </div>
511
+ <div class="flex items-center p-2 rounded-lg hover:bg-gray-100">
512
+ <div class="relative">
513
+ <img src="https://randomuser.me/api/portraits/men/22.jpg" alt="Profile" class="w-8 h-8 rounded-full mr-2">
514
+ </div>
515
+ <span class="font-medium">David Wilson</span>
516
+ </div>
517
+ <div class="flex items-center p-2 rounded-lg hover:bg-gray-100">
518
+ <div class="relative">
519
+ <img src="https://randomuser.me/api/portraits/women/12.jpg" alt="Profile" class="w-8 h-8 rounded-full mr-2">
520
+ </div>
521
+ <span class="font-medium">Jessica Lee</span>
522
+ </div>
523
+ <div class="flex items-center p-2 rounded-lg hover:bg-gray-100">
524
+ <div class="relative">
525
+ <img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Profile" class="w-8 h-8 rounded-full mr-2">
526
+ <div class="online-indicator"></div>
527
+ </div>
528
+ <span class="font-medium">Robert Taylor</span>
529
+ </div>
530
+ </div>
531
+ </div>
532
+ </div>
533
+ </main>
534
+
535
+ <!-- Mobile Bottom Navigation -->
536
+ <div class="md:hidden fixed bottom-0 left-0 right-0 bg-white border-t border-gray-300 flex justify-around py-2">
537
+ <a href="#" class="icon-button">
538
+ <i class="fas fa-home text-xl"></i>
539
+ </a>
540
+ <a href="#" class="icon-button">
541
+ <i class="fas fa-users text-xl"></i>
542
+ </a>
543
+ <a href="#" class="icon-button">
544
+ <i class="fas fa-video text-xl"></i>
545
+ </a>
546
+ <a href="#" class="icon-button">
547
+ <i class="fas fa-bell text-xl"></i>
548
+ </a>
549
+ <a href="#" class="icon-button">
550
+ <i class="fas fa-bars text-xl"></i>
551
+ </a>
552
+ </div>
553
+
554
+ <script>
555
+ document.addEventListener('DOMContentLoaded', function() {
556
+ // Mobile menu toggle
557
+ const mobileMenuButton = document.querySelector('.icon-button i.fa-bars');
558
+ if (mobileMenuButton) {
559
+ mobileMenuButton.addEventListener('click', function() {
560
+ alert('Mobile menu would open here');
561
+ });
562
+ }
563
+
564
+ // Like button functionality
565
+ const likeButtons = document.querySelectorAll('.reaction-button');
566
+ likeButtons.forEach(button => {
567
+ button.addEventListener('click', function() {
568
+ if (this.querySelector('.far.fa-thumbs-up')) {
569
+ this.innerHTML = '<i class="fas fa-thumbs-up mr-1 text-blue-500"></i> Like';
570
+ }
571
+ });
572
+ });
573
+
574
+ // Post creation
575
+ const createPostInput = document.querySelector('.create-post-input');
576
+ if (createPostInput) {
577
+ createPostInput.addEventListener('click', function() {
578
+ alert('Post creation modal would open here');
579
+ });
580
+ }
581
+
582
+ // Simulate online status changes
583
+ setInterval(() => {
584
+ const onlineIndicators = document.querySelectorAll('.online-indicator');
585
+ onlineIndicators.forEach(indicator => {
586
+ if (Math.random() > 0.7) {
587
+ indicator.style.backgroundColor = '#31a24c';
588
+ } else {
589
+ indicator.style.backgroundColor = '#bdbdbd';
590
+ }
591
+ });
592
+ }, 5000);
593
+ });
594
+ </script>
595
+ <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=Fdgg55/facebook" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
596
+ </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ Clone https://shadowpaksim.xyz
2
+ Clone https://www.facebook.com