-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
433 lines (418 loc) · 22.6 KB
/
index.html
File metadata and controls
433 lines (418 loc) · 22.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home / X</title>
<link rel="stylesheet" href="src/output.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
</head>
<body class="bg-black text-white">
<div class="flex mx-auto w-full lg:w-[85%] max-sm:mb-20">
<div class="left md:w-[55%] sm:flex flex-col gap-3 py-3 px-4 hidden ">
<div class="logo invert w-8">
<img src="./Assets/logo.svg" alt="logo">
</div>
<ul class="flex flex-col gap-1">
<li
class="flex gap-5 items-center justify-center cursor-pointer hover:bg-gray-800 w-fit py-2 px-4 rounded-4xl">
<span class="material-symbols-outlined cursor-pointer text-2xl!">home</span>
<p class="font-bold text-xl hidden md:block">Home</p>
</li>
<li
class="flex gap-5 items-center justify-center cursor-pointer hover:bg-gray-800 w-fit py-2 px-4 rounded-4xl">
<span class="material-symbols-outlined cursor-pointer text-2xl!">explore</span>
<p class="font-bold text-xl hidden md:block">Explore</p>
</li>
<li
class="flex gap-5 items-center justify-center cursor-pointer hover:bg-gray-800 w-fit py-2 px-4 rounded-4xl">
<span class="material-symbols-outlined cursor-pointer text-2xl!">Notifications</span>
<p class="font-bold text-xl hidden md:block">Notifications</p>
</li>
<li
class="flex gap-5 items-center justify-center cursor-pointer hover:bg-gray-800 w-fit py-2 px-4 rounded-4xl">
<span class="material-symbols-outlined cursor-pointer text-2xl!">person_add</span>
<p class="font-bold text-xl hidden md:block">Follow</p>
</li>
<li
class="flex gap-5 items-center justify-center cursor-pointer hover:bg-gray-800 w-fit py-2 px-4 rounded-4xl">
<span class="material-symbols-outlined cursor-pointer text-2xl!">chat</span>
<p class="font-bold text-xl hidden md:block">Chat</p>
</li>
<li
class="flex gap-5 items-center justify-center cursor-pointer hover:bg-gray-800 w-fit py-2 px-4 rounded-4xl">
<span class="material-symbols-outlined cursor-pointer text-2xl!">robot_2</span>
<p class="font-bold text-xl hidden md:block">Grok</p>
</li>
<li
class="flex gap-5 items-center justify-center cursor-pointer hover:bg-gray-800 w-fit py-2 px-4 rounded-4xl">
<span class="material-symbols-outlined cursor-pointer text-2xl!">bookmarks</span>
<p class="font-bold text-xl hidden md:block">Bookmarks</p>
</li>
<li
class="flex gap-5 items-center justify-center cursor-pointer hover:bg-gray-800 w-fit py-2 px-4 rounded-4xl">
<span class="material-symbols-outlined cursor-pointer text-2xl!">create</span>
<p class="font-bold text-xl hidden md:block">Creater</p>
</li>
<li
class="flex gap-5 items-center justify-center cursor-pointer hover:bg-gray-800 w-fit py-2 px-4 rounded-4xl">
<span class="material-symbols-outlined cursor-pointer text-2xl!">cards_star</span>
<p class="font-bold text-xl hidden md:block">Premium</p>
</li>
<li
class="flex gap-5 items-center justify-center cursor-pointer hover:bg-gray-800 w-fit py-2 px-4 rounded-4xl">
<span class="material-symbols-outlined cursor-pointer text-2xl!">contacts_product</span>
<p class="font-bold text-xl hidden md:block">Profile</p>
</li>
<li
class="flex gap-5 items-center justify-center cursor-pointer hover:bg-gray-800 w-fit py-2 px-4 rounded-4xl">
<span class="material-symbols-outlined cursor-pointer text-2xl! ">more</span>
<p class="font-bold text-xl hidden md:block">More</p>
</li>
<div>
<button
class="bg-white w-fit font-bold text-xl px-22 mt-1 cursor-pointer py-4 text-black rounded-4xl hover:bg-gray-200 hidden md:block">
Post
</button>
<button
class="bg-white w-fit font-bold flex items-center text-xl ml-3 cursor-pointer py-1 px-2 text-black rounded-4xl hover:bg-gray-200 md:hidden">
<span class="material-symbols-outlined">
history_edu
</span>
</button>
</div>
</ul>
<div
class="user flex items-center justify-center gap-3 w-fit py-2 px-4 rounded-4xl hover:bg-gray-800 cursor-pointer">
<img src="./Assets/profile.webp" class="w-10 rounded-3xl" alt="home">
<div class="user-name hidden md:block">
<p class="font-bold">Flora</p>
<p class="text-[14px] text-gray-400 ">@NovaFlora4576893</p>
</div>
</div>
</div>
<div class="middle w-full relative lg:w-full border-x border-x-gray-700 h-dvh overflow-auto">
<div class="fixed bottom-0 w-full sm:hidden bg-black py-4 px-10 m-0 flex justify-between items-center">
<span class="material-symbols-outlined cursor-pointer text-3xl! ">
home
</span>
<span class="material-symbols-outlined cursor-pointer text-3xl!">
search
</span>
<span class="material-symbols-outlined cursor-pointer text-3xl!">
robot
</span>
<span class="material-symbols-outlined cursor-pointer text-3xl!">
Notifications
</span>
<img src="./Assets/profile.webp" class="w-10 rounded-4xl" alt="">
</div>
<div class="following flex border-b border-b-gray-700 ">
<p
class="w-full h-full flex items-center justify-center cursor-pointer hover:bg-gray-900 font-semibold p-4 border-b border-b-blue-600 ">
For you</p>
<p
class="w-full h-full flex items-center justify-center cursor-pointer hover:bg-gray-900 font-semibold p-4">
Following</p>
</div>
<div class="post p-5 flex flex-col gap-5 border-b border-b-gray-700">
<div class="search flex gap-4 items-center ">
<img class="w-10 rounded-3xl hidden sm:block" src="Assets/profile.webp" alt="profile">
<input type="text" class="outline-0 border-0 text-xl" placeholder="What's happening?">
</div>
<div class="icons flex justify-between items-center">
<div class="sm:ml-14 flex gap-5">
<span class="material-symbols-outlined cursor-pointer ">
image
</span>
<span class="material-symbols-outlined cursor-pointer">
gif_box
</span>
<span class="material-symbols-outlined cursor-pointer">
mood
</span>
<span class="material-symbols-outlined cursor-pointer">
flag
</span>
<span class="material-symbols-outlined cursor-pointer">
robot
</span>
<span class="material-symbols-outlined cursor-pointer">
date_range
</span>
</div>
<button class="px-4 py-1 bg-white text-black font-bold rounded-4xl">Post</button>
</div>
</div>
<div class="card p-4 flex flex-col gap-6 border-b border-b-gray-700">
<div class="card-profile flex gap-4">
<div>
<img class="w-10 rounded-4xl"
src="https://images.unsplash.com/photo-1654110455429-cf322b40a906?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8cHJvZmlsZXxlbnwwfDJ8MHx8fDA%3D"
alt="profile">
</div>
<div class="flex flex-col justify-between w-full">
<div class="flex gap-1">
<p class="font-semibold max-sm:text-[13px]">Robert</p>
<img class="w-5" src="Assets/bluetick.svg" alt="">
<p class="text-gray-400 text-sm ">@nobodyMrRobot . 9h</p>
</div>
<div class="max-sm:text-[11px]">
Is it genius or what
</div>
</div>
<span class="material-symbols-outlined">
more_horiz
</span>
</div>
<div class="card-content flex items-center justify-center">
<img class=""
src="https://images.unsplash.com/photo-1498019559366-a1cbd07b5160?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTl8fG1hZ2ljfGVufDB8MHwwfHx8MA%3D%3D"
alt="unsplah img">
</div>
<div class="card-stats flex justify-between max-sm:text-[12px] text-gray-500">
<div class="flex justify-between w-[70%]">
<div class="flex gap-2 items-center">
<span class="material-symbols-outlined cursor-pointer ">
comment
</span>
<p>240</p>
</div>
<div class="flex gap-2 items-center">
<span class="material-symbols-outlined cursor-pointer">
post
</span>
<p>25</p>
</div>
<div class="flex gap-2 items-center">
<span class="material-symbols-outlined cursor-pointer">
favorite
</span>
<p>50k</p>
</div>
<div class="flex gap-2 items-center">
<span class="material-symbols-outlined cursor-pointer">
leaderboard
</span>
<p>100k</p>
</div>
</div>
<div class="flex gap-4">
<span class="material-symbols-outlined cursor-pointer">
bookmark
</span>
<span class="material-symbols-outlined cursor-pointer">
share
</span>
</div>
</div>
</div>
<div class="card p-4 flex flex-col gap-6 border-b border-b-gray-700">
<div class="card-profile flex gap-4">
<div>
<img class="w-10 rounded-4xl"
src="https://plus.unsplash.com/premium_photo-1739025983001-ff75f5096e23?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NDR8fHByb2ZpbGV8ZW58MHwyfDB8fHww"
alt="profile">
</div>
<div class="flex flex-col justify-between w-full">
<div class="flex gap-1">
<p class="font-semibold max-sm:text-[13px]">Graphicy</p>
<img class="w-5" src="Assets/bluetick.svg" alt="">
<p class="text-gray-400 text-sm">@AnimeVerse . 1day</p>
</div>
<div class="max-sm:text-[11px]">
Slashing
</div>
</div>
<span class="material-symbols-outlined">
more_horiz
</span>
</div>
<div class="card-content flex items-center justify-center">
<img class=""
src="https://images.unsplash.com/photo-1697715744014-7ab37c005ba5?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTZ8fGFuaW1lfGVufDB8MnwwfHx8MA%3D%3D"
alt="unsplah img">
</div>
<div class="card-stats flex justify-between max-sm:text-[12px] text-gray-500">
<div class="flex justify-between w-[70%]">
<div class="flex gap-2 items-center">
<span class="material-symbols-outlined cursor-pointer">
comment
</span>
<p>9k</p>
</div>
<div class="flex gap-2 items-center">
<span class="material-symbols-outlined cursor-pointer">
post
</span>
<p>5k</p>
</div>
<div class="flex gap-2 items-center">
<span class="material-symbols-outlined cursor-pointer">
favorite
</span>
<p>900k</p>
</div>
<div class="flex gap-2 items-center">
<span class="material-symbols-outlined cursor-pointer">
leaderboard
</span>
<p>1.1m</p>
</div>
</div>
<div class="flex gap-4">
<span class="material-symbols-outlined cursor-pointer">
bookmark
</span>
<span class="material-symbols-outlined cursor-pointer">
share
</span>
</div>
</div>
</div>
<div class="card p-4 flex flex-col gap-6 border-b border-b-gray-700">
<div class="card-profile flex gap-4 ">
<div>
<img class="w-10 rounded-4xl"
src="https://images.unsplash.com/photo-1658932447624-152eaf36cf4e?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTV8fHByb2ZpbGV8ZW58MHwyfDB8fHww"
alt="profile">
</div>
<div class="flex flex-col justify-between w-full">
<div class="flex gap-1">
<p class="font-semibold max-sm:text-[13px]">Nature</p>
<img class="w-5" src="Assets/bluetick.svg" alt="">
<p class="text-gray-400 text-sm">@johnNature85 . 12h</p>
</div>
<div class="max-sm:text-[11px]">
Cool breeze
</div>
</div>
<span class="material-symbols-outlined">
more_horiz
</span>
</div>
<div class="card-content flex items-center justify-center">
<img class=""
src="https://plus.unsplash.com/premium_photo-1673697239981-389164b7b87f?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8bmF0dXJlfGVufDB8MHwwfHx8MA%3D%3D"
alt="unsplah img">
</div>
<div class="card-stats flex justify-between max-sm:text-[12px] text-gray-500">
<div class="flex justify-between w-[70%]">
<div class="flex gap-2 items-center">
<span class="material-symbols-outlined cursor-pointer">
comment
</span>
<p>2.4k</p>
</div>
<div class="flex gap-2 items-center">
<span class="material-symbols-outlined cursor-pointer">
post
</span>
<p>450</p>
</div>
<div class="flex gap-2 items-center">
<span class="material-symbols-outlined cursor-pointer">
favorite
</span>
<p>90k</p>
</div>
<div class="flex gap-2 items-center">
<span class="material-symbols-outlined cursor-pointer">
leaderboard
</span>
<p>500k</p>
</div>
</div>
<div class="flex gap-4">
<span class="material-symbols-outlined cursor-pointer">
bookmark
</span>
<span class="material-symbols-outlined cursor-pointer">
share
</span>
</div>
</div>
</div>
</div>
<div class="Right w-[70%] px-6 py-4 hidden xl:flex flex-col gap-4 ">
<div class="search">
<input type="search" name="searchh" id="search" placeholder="search"
class="px-4 py-2 rounded-4xl border-2 border-gray-600 w-full outline-0 focus:border-cyan-500">
</div>
<div class="subscribe flex flex-col gap-3 border border-gray-600 rounded-2xl p-5 justify-center">
<div class="flex gap-4">
<p class="font-bold text-xl ">Subscibe to Premium</p>
<p class="bg-green-800 text-cyan-200 font-bold px-1.5 text-[13px] rounded-sm flex items-center">50%
off</p>
</div>
<p class="text-sm text-gray-300">Get rid of ads, see your analytics, boost your replies and unlock 20+
features.</p>
<button class="w-fit bg-[hsl(204_88%_53%)] px-4 py-2 rounded-4xl font-bold">Subscribe</button>
</div>
<div class="happening p-5 border border-gray-600 rounded-2xl flex flex-col gap-4">
<p class="font-bold text-xl ">What's happening</p>
<div class="flex justify-between items-center">
<div class="gap-2">
<p class="text-[13px] text-gray-400">Trending in india</p>
<p class="font-bold">#AlluCinemas</p>
</div>
<span
class="material-symbols-outlined cursor-pointer text-2xl! hover:bg-gray-900 flex items-center h-fit p-1 rounded-4xl hover:text-[hsl(204_88%_53%)]">more_horiz</span>
</div>
<div class="flex justify-between items-center">
<div class="gap-2">
<p class="text-[13px] text-gray-400">Trending in india</p>
<p class="font-bold">#RighteousCustom</p>
</div>
<span
class="material-symbols-outlined cursor-pointer text-2xl! hover:bg-gray-900 flex items-center h-fit p-1 rounded-4xl hover:text-[hsl(204_88%_53%)]">more_horiz</span>
</div>
<div class="flex justify-between items-center">
<div class="gap-2">
<p class="text-[13px] text-gray-400">Sports - Trending</p>
<p class="font-bold">#BoycottSrh</p>
</div>
<span
class="material-symbols-outlined cursor-pointer text-2xl! hover:bg-gray-900 flex items-center h-fit p-1 rounded-4xl hover:text-[hsl(204_88%_53%)]">more_horiz</span>
</div>
<div class="flex justify-between items-center">
<div class="gap-2">
<p class="text-[13px] text-gray-400">Trending in india</p>
<p class="font-bold">#LpgGasShortage</p>
</div>
<span
class="material-symbols-outlined cursor-pointer text-2xl! hover:bg-gray-900 flex items-center h-fit p-1 rounded-4xl hover:text-[hsl(204_88%_53%)]">more_horiz</span>
</div>
<div class="flex justify-between items-center">
<div class="gap-2">
<p class="text-[13px] text-gray-400">Trending in india</p>
<p class="font-bold">#outKaro</p>
</div>
<span
class="material-symbols-outlined cursor-pointer text-2xl! hover:bg-gray-900 flex items-center h-fit p-1 rounded-4xl hover:text-[hsl(204_88%_53%)]">more_horiz</span>
</div>
<p class="text-[hsl(204_88%_53%)]">show more</p>
</div>
<div class="policy flex flex-col gap-3 p-4 text-[11px] text-gray-500">
<div class="flex gap-4">
<p>Terms of Service</p>
<p>|</p>
<p>Privacy Policy</p>
<p>|</p>
<p>Cookie Policy</p>
<p>|</p>
</div>
<div class="flex gap-4">
<p>Accessibility</p>
<p>|</p>
<p>Ads info</p>
<p>|</p>
<p>More</p>
<p>© 2026 X Corp.</p>
</div>
</div>
</div>
</div>
</body>
</html>