Muhammadaneeq1 commited on
Commit
b7f0f12
·
verified ·
1 Parent(s): d3df705

Create a website like Facebook - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +439 -18
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Book Face
3
- emoji: 👀
4
- colorFrom: blue
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: book-face
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: yellow
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,440 @@
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>SocialConnect - Connect with Friends</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
9
+ <script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ <style>
13
+ .custom-scrollbar::-webkit-scrollbar {
14
+ width: 6px;
15
+ height: 6px;
16
+ }
17
+ .custom-scrollbar::-webkit-scrollbar-track {
18
+ background: #f1f1f1;
19
+ }
20
+ .custom-scrollbar::-webkit-scrollbar-thumb {
21
+ background: #888;
22
+ border-radius: 3px;
23
+ }
24
+ .custom-scrollbar::-webkit-scrollbar-thumb:hover {
25
+ background: #555;
26
+ }
27
+ .story-item {
28
+ flex: 0 0 auto;
29
+ width: 110px;
30
+ }
31
+ .post-actions:hover .post-action-text {
32
+ color: #3b82f6;
33
+ }
34
+ </style>
35
+ </head>
36
+ <body class="bg-gray-100">
37
+ <!-- Header -->
38
+ <header class="bg-white shadow-sm fixed top-0 left-0 right-0 z-50">
39
+ <div class="max-w-6xl mx-auto px-4">
40
+ <div class="flex items-center justify-between h-14">
41
+ <!-- Logo -->
42
+ <div class="flex items-center">
43
+ <h1 class="text-blue-600 font-bold text-2xl">SocialConnect</h1>
44
+ </div>
45
+
46
+ <!-- Search -->
47
+ <div class="hidden md:flex items-center bg-gray-100 rounded-full px-3 py-2 flex-1 mx-4 max-w-xl">
48
+ <i data-feather="search" class="text-gray-500 mr-2"></i>
49
+ <input type="text" placeholder="Search SocialConnect" class="bg-transparent border-none outline-none w-full">
50
+ </div>
51
+
52
+ <!-- Navigation -->
53
+ <div class="flex items-center space-x-2 md:space-x-6">
54
+ <a href="#" class="p-2 rounded-full hover:bg-gray-200">
55
+ <i data-feather="home" class="w-6 h-6 text-blue-600"></i>
56
+ </a>
57
+ <a href="#" class="p-2 rounded-full hover:bg-gray-200">
58
+ <i data-feather="tv" class="w-6 h-6 text-gray-600"></i>
59
+ </a>
60
+ <a href="#" class="p-2 rounded-full hover:bg-gray-200">
61
+ <i data-feather="shopping-bag" class="w-6 h-6 text-gray-600"></i>
62
+ </a>
63
+ <a href="#" class="p-2 rounded-full hover:bg-gray-200">
64
+ <i data-feather="users" class="w-6 h-6 text-gray-600"></i>
65
+ </a>
66
+ <a href="#" class="p-2 rounded-full hover:bg-gray-200">
67
+ <i data-feather="bell" class="w-6 h-6 text-gray-600"></i>
68
+ </a>
69
+ <a href="#" class="p-2 rounded-full hover:bg-gray-200">
70
+ <img src="http://static.photos/people/40x40/1" alt="Profile" class="w-8 h-8 rounded-full">
71
+ </a>
72
+ </div>
73
+ </div>
74
+ </div>
75
+ </header>
76
+
77
+ <!-- Mobile Search -->
78
+ <div class="md:hidden bg-white shadow-sm fixed top-14 left-0 right-0 z-40 p-2">
79
+ <div class="flex items-center bg-gray-100 rounded-full px-3 py-2">
80
+ <i data-feather="search" class="text-gray-500 mr-2"></i>
81
+ <input type="text" placeholder="Search SocialConnect" class="bg-transparent border-none outline-none w-full">
82
+ </div>
83
+ </div>
84
+
85
+ <!-- Main Content -->
86
+ <main class="max-w-6xl mx-auto pt-20 pb-4 px-4 flex flex-col md:flex-row">
87
+ <!-- Left Sidebar -->
88
+ <aside class="hidden md:block w-64 pr-4 sticky top-20 h-screen overflow-y-auto custom-scrollbar">
89
+ <div class="space-y-2">
90
+ <a href="#" class="flex items-center p-2 rounded-lg hover:bg-gray-200">
91
+ <img src="http://static.photos/people/40x40/1" alt="Profile" class="w-8 h-8 rounded-full mr-3">
92
+ <span class="font-medium">Your Profile</span>
93
+ </a>
94
+ <a href="#" class="flex items-center p-2 rounded-lg hover:bg-gray-200">
95
+ <i data-feather="users" class="w-6 h-6 text-blue-600 mr-3"></i>
96
+ <span>Friends</span>
97
+ </a>
98
+ <a href="#" class="flex items-center p-2 rounded-lg hover:bg-gray-200">
99
+ <i data-feather="message-square" class="w-6 h-6 text-blue-600 mr-3"></i>
100
+ <span>Messenger</span>
101
+ </a>
102
+ <a href="#" class="flex items-center p-2 rounded-lg hover:bg-gray-200">
103
+ <i data-feather="flag" class="w-6 h-6 text-blue-600 mr-3"></i>
104
+ <span>Pages</span>
105
+ </a>
106
+ <a href="#" class="flex items-center p-2 rounded-lg hover:bg-gray-200">
107
+ <i data-feather="calendar" class="w-6 h-6 text-blue-600 mr-3"></i>
108
+ <span>Events</span>
109
+ </a>
110
+ <a href="#" class="flex items-center p-2 rounded-lg hover:bg-gray-200">
111
+ <i data-feather="clock" class="w-6 h-6 text-blue-600 mr-3"></i>
112
+ <span>Memories</span>
113
+ </a>
114
+ <a href="#" class="flex items-center p-2 rounded-lg hover:bg-gray-200">
115
+ <i data-feather="bookmark" class="w-6 h-6 text-blue-600 mr-3"></i>
116
+ <span>Saved</span>
117
+ </a>
118
+ <a href="#" class="flex items-center p-2 rounded-lg hover:bg-gray-200">
119
+ <i data-feather="settings" class="w-6 h-6 text-blue-600 mr-3"></i>
120
+ <span>Settings</span>
121
+ </a>
122
+ </div>
123
+ </aside>
124
+
125
+ <!-- Center Content -->
126
+ <div class="flex-1 md:mx-4">
127
+ <!-- Stories -->
128
+ <div class="bg-white rounded-lg shadow mb-4 p-4">
129
+ <div class="flex space-x-2 overflow-x-auto pb-2 custom-scrollbar">
130
+ <!-- Create Story -->
131
+ <div class="story-item relative rounded-lg overflow-hidden bg-gray-100">
132
+ <div class="h-40 bg-gradient-to-b from-gray-200 to-gray-300"></div>
133
+ <div class="absolute top-0 left-0 right-0 p-2">
134
+ <div class="w-10 h-10 rounded-full bg-blue-500 flex items-center justify-center mx-auto">
135
+ <i data-feather="plus" class="text-white"></i>
136
+ </div>
137
+ </div>
138
+ <div class="p-2 text-center">
139
+ <p class="text-sm font-medium">Create Story</p>
140
+ </div>
141
+ </div>
142
+
143
+ <!-- Stories -->
144
+ <div class="story-item relative rounded-lg overflow-hidden">
145
+ <img src="http://static.photos/travel/110x160/1" alt="Story" class="w-full h-40 object-cover">
146
+ <div class="absolute top-2 left-2">
147
+ <img src="http://static.photos/people/40x40/2" alt="User" class="w-10 h-10 rounded-full border-4 border-blue-500">
148
+ </div>
149
+ <div class="absolute bottom-2 left-2 right-2">
150
+ <p class="text-white text-sm font-medium">John Doe</p>
151
+ </div>
152
+ </div>
153
+
154
+ <div class="story-item relative rounded-lg overflow-hidden">
155
+ <img src="http://static.photos/travel/110x160/2" alt="Story" class="w-full h-40 object-cover">
156
+ <div class="absolute top-2 left-2">
157
+ <img src="http://static.photos/people/40x40/3" alt="User" class="w-10 h-10 rounded-full border-4 border-blue-500">
158
+ </div>
159
+ <div class="absolute bottom-2 left-2 right-2">
160
+ <p class="text-white text-sm font-medium">Jane Smith</p>
161
+ </div>
162
+ </div>
163
+
164
+ <div class="story-item relative rounded-lg overflow-hidden">
165
+ <img src="http://static.photos/travel/110x160/3" alt="Story" class="w-full h-40 object-cover">
166
+ <div class="absolute top-2 left-2">
167
+ <img src="http://static.photos/people/40x40/4" alt="User" class="w-10 h-10 rounded-full border-4 border-blue-500">
168
+ </div>
169
+ <div class="absolute bottom-2 left-2 right-2">
170
+ <p class="text-white text-sm font-medium">Mike Johnson</p>
171
+ </div>
172
+ </div>
173
+
174
+ <div class="story-item relative rounded-lg overflow-hidden">
175
+ <img src="http://static.photos/travel/110x160/4" alt="Story" class="w-full h-40 object-cover">
176
+ <div class="absolute top-2 left-2">
177
+ <img src="http://static.photos/people/40x40/5" alt="User" class="w-10 h-10 rounded-full border-4 border-blue-500">
178
+ </div>
179
+ <div class="absolute bottom-2 left-2 right-2">
180
+ <p class="text-white text-sm font-medium">Sarah Williams</p>
181
+ </div>
182
+ </div>
183
+ </div>
184
+ </div>
185
+
186
+ <!-- Create Post -->
187
+ <div class="bg-white rounded-lg shadow mb-4 p-4">
188
+ <div class="flex items-center mb-4">
189
+ <img src="http://static.photos/people/40x40/1" alt="User" class="w-10 h-10 rounded-full mr-2">
190
+ <input type="text" placeholder="What's on your mind?" class="bg-gray-100 rounded-full px-4 py-2 flex-1 outline-none">
191
+ </div>
192
+ <div class="border-t border-gray-200 pt-3">
193
+ <div class="flex justify-between">
194
+ <button class="flex items-center justify-center flex-1 text-gray-600 hover:bg-gray-100 rounded-lg py-1">
195
+ <i data-feather="video" class="text-red-500 mr-2"></i>
196
+ <span>Live Video</span>
197
+ </button>
198
+ <button class="flex items-center justify-center flex-1 text-gray-600 hover:bg-gray-100 rounded-lg py-1">
199
+ <i data-feather="image" class="text-green-500 mr-2"></i>
200
+ <span>Photo/Video</span>
201
+ </button>
202
+ <button class="flex items-center justify-center flex-1 text-gray-600 hover:bg-gray-100 rounded-lg py-1">
203
+ <i data-feather="smile" class="text-yellow-500 mr-2"></i>
204
+ <span>Feeling/Activity</span>
205
+ </button>
206
+ </div>
207
+ </div>
208
+ </div>
209
+
210
+ <!-- Posts -->
211
+ <div class="bg-white rounded-lg shadow mb-4 p-4">
212
+ <!-- Post Header -->
213
+ <div class="flex items-center justify-between mb-3">
214
+ <div class="flex items-center">
215
+ <img src="http://static.photos/people/40x40/6" alt="User" class="w-10 h-10 rounded-full mr-2">
216
+ <div>
217
+ <p class="font-medium">Alex Turner</p>
218
+ <p class="text-gray-500 text-xs">2 hrs ago · <i data-feather="globe" class="w-3 h-3 inline"></i></p>
219
+ </div>
220
+ </div>
221
+ <button class="text-gray-500 hover:bg-gray-100 rounded-full p-1">
222
+ <i data-feather="more-horizontal"></i>
223
+ </button>
224
+ </div>
225
+
226
+ <!-- Post Content -->
227
+ <p class="mb-3">Just had an amazing day at the beach! The weather was perfect and the water was so refreshing. Can't wait to go back again soon! 🏖️</p>
228
+ <img src="http://static.photos/travel/640x360/1" alt="Post" class="w-full rounded-lg mb-3">
229
+
230
+ <!-- Post Stats -->
231
+ <div class="flex items-center justify-between text-gray-500 text-sm mb-3">
232
+ <div class="flex items-center">
233
+ <div class="w-5 h-5 bg-blue-500 rounded-full flex items-center justify-center text-white mr-1">
234
+ <i data-feather="thumbs-up" class="w-3 h-3"></i>
235
+ </div>
236
+ <span>124</span>
237
+ </div>
238
+ <div>
239
+ <span>23 comments · 5 shares</span>
240
+ </div>
241
+ </div>
242
+
243
+ <!-- Post Actions -->
244
+ <div class="border-t border-gray-200 pt-2">
245
+ <div class="flex justify-between">
246
+ <button class="post-actions flex items-center justify-center flex-1 text-gray-600 hover:bg-gray-100 rounded-lg py-1">
247
+ <i data-feather="thumbs-up" class="mr-2"></i>
248
+ <span class="post-action-text">Like</span>
249
+ </button>
250
+ <button class="post-actions flex items-center justify-center flex-1 text-gray-600 hover:bg-gray-100 rounded-lg py-1">
251
+ <i data-feather="message-square" class="mr-2"></i>
252
+ <span class="post-action-text">Comment</span>
253
+ </button>
254
+ <button class="post-actions flex items-center justify-center flex-1 text-gray-600 hover:bg-gray-100 rounded-lg py-1">
255
+ <i data-feather="share-2" class="mr-2"></i>
256
+ <span class="post-action-text">Share</span>
257
+ </button>
258
+ </div>
259
+ </div>
260
+ </div>
261
+
262
+ <!-- Another Post -->
263
+ <div class="bg-white rounded-lg shadow mb-4 p-4">
264
+ <!-- Post Header -->
265
+ <div class="flex items-center justify-between mb-3">
266
+ <div class="flex items-center">
267
+ <img src="http://static.photos/people/40x40/7" alt="User" class="w-10 h-10 rounded-full mr-2">
268
+ <div>
269
+ <p class="font-medium">Emma Watson</p>
270
+ <p class="text-gray-500 text-xs">5 hrs ago · <i data-feather="users" class="w-3 h-3 inline"></i></p>
271
+ </div>
272
+ </div>
273
+ <button class="text-gray-500 hover:bg-gray-100 rounded-full p-1">
274
+ <i data-feather="more-horizontal"></i>
275
+ </button>
276
+ </div>
277
+
278
+ <!-- Post Content -->
279
+ <p class="mb-3">Check out this delicious recipe I tried today! It's a vegan chocolate cake that's super easy to make and tastes incredible. Recipe in the comments! 🍫</p>
280
+ <img src="http://static.photos/food/640x360/1" alt="Post" class="w-full rounded-lg mb-3">
281
+
282
+ <!-- Post Stats -->
283
+ <div class="flex items-center justify-between text-gray-500 text-sm mb-3">
284
+ <div class="flex items-center">
285
+ <div class="w-5 h-5 bg-blue-500 rounded-full flex items-center justify-center text-white mr-1">
286
+ <i data-feather="thumbs-up" class="w-3 h-3"></i>
287
+ </div>
288
+ <span>89</span>
289
+ </div>
290
+ <div>
291
+ <span>42 comments · 8 shares</span>
292
+ </div>
293
+ </div>
294
+
295
+ <!-- Post Actions -->
296
+ <div class="border-t border-gray-200 pt-2">
297
+ <div class="flex justify-between">
298
+ <button class="post-actions flex items-center justify-center flex-1 text-gray-600 hover:bg-gray-100 rounded-lg py-1">
299
+ <i data-feather="thumbs-up" class="mr-2"></i>
300
+ <span class="post-action-text">Like</span>
301
+ </button>
302
+ <button class="post-actions flex items-center justify-center flex-1 text-gray-600 hover:bg-gray-100 rounded-lg py-1">
303
+ <i data-feather="message-square" class="mr-2"></i>
304
+ <span class="post-action-text">Comment</span>
305
+ </button>
306
+ <button class="post-actions flex items-center justify-center flex-1 text-gray-600 hover:bg-gray-100 rounded-lg py-1">
307
+ <i data-feather="share-2" class="mr-2"></i>
308
+ <span class="post-action-text">Share</span>
309
+ </button>
310
+ </div>
311
+ </div>
312
+ </div>
313
+ </div>
314
+
315
+ <!-- Right Sidebar -->
316
+ <aside class="hidden lg:block w-80 pl-4 sticky top-20 h-screen overflow-y-auto custom-scrollbar">
317
+ <!-- Sponsored -->
318
+ <div class="mb-4">
319
+ <h3 class="text-gray-500 font-medium mb-2">Sponsored</h3>
320
+ <div class="space-y-3">
321
+ <div class="flex items-center">
322
+ <img src="http://static.photos/retail/120x120/1" alt="Ad" class="w-32 h-20 rounded-lg object-cover mr-2">
323
+ <div>
324
+ <p class="font-medium">Summer Sale - 50% Off</p>
325
+ <p class="text-gray-500 text-sm">fashionstore.com</p>
326
+ </div>
327
+ </div>
328
+ <div class="flex items-center">
329
+ <img src="http://static.photos/retail/120x120/2" alt="Ad" class="w-32 h-20 rounded-lg object-cover mr-2">
330
+ <div>
331
+ <p class="font-medium">New Smartphone Launch</p>
332
+ <p class="text-gray-500 text-sm">techgadgets.com</p>
333
+ </div>
334
+ </div>
335
+ </div>
336
+ </div>
337
+
338
+ <!-- Birthdays -->
339
+ <div class="mb-4">
340
+ <h3 class="text-gray-500 font-medium mb-2">Birthdays</h3>
341
+ <div class="flex items-center">
342
+ <i data-feather="gift" class="text-blue-500 mr-2"></i>
343
+ <p><span class="font-medium">Sarah Johnson</span> and <span class="font-medium">2 others</span> have birthdays today.</p>
344
+ </div>
345
+ </div>
346
+
347
+ <!-- Contacts -->
348
+ <div>
349
+ <div class="flex items-center justify-between mb-2">
350
+ <h3 class="text-gray-500 font-medium">Contacts</h3>
351
+ <div class="flex space-x-2">
352
+ <button class="text-gray-500 hover:bg-gray-200 rounded-full p-1">
353
+ <i data-feather="video" class="w-4 h-4"></i>
354
+ </button>
355
+ <button class="text-gray-500 hover:bg-gray-200 rounded-full p-1">
356
+ <i data-feather="search" class="w-4 h-4"></i>
357
+ </button>
358
+ <button class="text-gray-500 hover:bg-gray-200 rounded-full p-1">
359
+ <i data-feather="more-horizontal" class="w-4 h-4"></i>
360
+ </button>
361
+ </div>
362
+ </div>
363
+ <div class="space-y-2">
364
+ <div class="flex items-center p-2 rounded-lg hover:bg-gray-200">
365
+ <div class="relative">
366
+ <img src="http://static.photos/people/40x40/8" alt="User" class="w-8 h-8 rounded-full mr-2">
367
+ <div class="absolute bottom-0 right-1 w-3 h-3 bg-green-500 rounded-full border-2 border-white"></div>
368
+ </div>
369
+ <span>Michael Brown</span>
370
+ </div>
371
+ <div class="flex items-center p-2 rounded-lg hover:bg-gray-200">
372
+ <div class="relative">
373
+ <img src="http://static.photos/people/40x40/9" alt="User" class="w-8 h-8 rounded-full mr-2">
374
+ <div class="absolute bottom-0 right-1 w-3 h-3 bg-green-500 rounded-full border-2 border-white"></div>
375
+ </div>
376
+ <span>Lisa Ray</span>
377
+ </div>
378
+ <div class="flex items-center p-2 rounded-lg hover:bg-gray-200">
379
+ <div class="relative">
380
+ <img src="http://static.photos/people/40x40/10" alt="User" class="w-8 h-8 rounded-full mr-2">
381
+ <div class="absolute bottom-0 right-1 w-3 h-3 bg-green-500 rounded-full border-2 border-white"></div>
382
+ </div>
383
+ <span>David Miller</span>
384
+ </div>
385
+ <div class="flex items-center p-2 rounded-lg hover:bg-gray-200">
386
+ <div class="relative">
387
+ <img src="http://static.photos/people/40x40/11" alt="User" class="w-8 h-8 rounded-full mr-2">
388
+ <div class="absolute bottom-0 right-1 w-3 h-3 bg-green-500 rounded-full border-2 border-white"></div>
389
+ </div>
390
+ <span>Sophia Wilson</span>
391
+ </div>
392
+ <div class="flex items-center p-2 rounded-lg hover:bg-gray-200">
393
+ <div class="relative">
394
+ <img src="http://static.photos/people/40x40/12" alt="User" class="w-8 h-8 rounded-full mr-2">
395
+ <div class="absolute bottom-0 right-1 w-3 h-3 bg-green-500 rounded-full border-2 border-white"></div>
396
+ </div>
397
+ <span>Robert Taylor</span>
398
+ </div>
399
+ <div class="flex items-center p-2 rounded-lg hover:bg-gray-200">
400
+ <div class="relative">
401
+ <img src="http://static.photos/people/40x40/13" alt="User" class="w-8 h-8 rounded-full mr-2">
402
+ <div class="absolute bottom-0 right-1 w-3 h-3 bg-green-500 rounded-full border-2 border-white"></div>
403
+ </div>
404
+ <span>Olivia Martinez</span>
405
+ </div>
406
+ </div>
407
+ </div>
408
+ </aside>
409
+ </main>
410
+
411
+ <!-- Mobile Bottom Navigation -->
412
+ <nav class="md:hidden fixed bottom-0 left-0 right-0 bg-white shadow-lg flex justify-around py-2 z-50">
413
+ <a href="#" class="p-2 rounded-full hover:bg-gray-200">
414
+ <i data-feather="home" class="w-6 h-6 text-blue-600"></i>
415
+ </a>
416
+ <a href="#" class="p-2 rounded-full hover:bg-gray-200">
417
+ <i data-feather="users" class="w-6 h-6 text-gray-600"></i>
418
+ </a>
419
+ <a href="#" class="p-2 rounded-full hover:bg-gray-200">
420
+ <i data-feather="tv" class="w-6 h-6 text-gray-600"></i>
421
+ </a>
422
+ <a href="#" class="p-2 rounded-full hover:bg-gray-200">
423
+ <i data-feather="bell" class="w-6 h-6 text-gray-600"></i>
424
+ </a>
425
+ <a href="#" class="p-2 rounded-full hover:bg-gray-200">
426
+ <i data-feather="menu" class="w-6 h-6 text-gray-600"></i>
427
+ </a>
428
+ </nav>
429
+
430
+ <script>
431
+ AOS.init();
432
+ feather.replace();
433
+
434
+ // Adjust main content padding for mobile bottom nav
435
+ if (window.innerWidth < 768) {
436
+ document.querySelector('main').style.paddingBottom = '60px';
437
+ }
438
+ </script>
439
+ </body>
440
  </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Create a website like Facebook