-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
749 lines (721 loc) · 29 KB
/
index.html
File metadata and controls
749 lines (721 loc) · 29 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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
<!--
Project: CyberTweet UI Using Tailwind CSS V4
Author: Vinay Mahendre
Date: 2025
Description: CyberTweet is a modern UI project designed to showcase Tailwind CSS V4 skills. This project design is inspired by X (formerly Twitter) and built with a clean, professional design..
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CyberTweet</title>
<link rel="shortcut icon" href="./logo.ico" type="image/x-icon" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200"
/>
<!-- Code written by Vinay Mahendre -->
<link href="./src/output.css" rel="stylesheet" />
</head>
<body class="bg-black">
<div class="flex container mx-auto max-w-7xl my-4">
<div class="first w-10 md:w-[80%]">
<div
class="logo w-[41px] md:w-15 flex items-center m-auto justify-center relative md:left-[20px] mb-[10px]"
>
<img class="w-[40px] md:w-[100px]" src="svg/logo.svg" alt="logo" />
<h2
class="text text-white font-bold text-2xl"
style="font-family: 'Poppins', sans-serif"
>
<span class="hidden md:block">CyberTweet</span>
</h2>
</div>
<div class="sidebar flex justify-center md:justify-end">
<ul class="flex flex-col text-xl space-y-3 md:px-11 text-white">
<li
class="flex justify-start items-center gap-3 w-fit hover:bg-gray-900 rounded-full hover:cursor-pointer px-5 py-2"
>
<span
class="material-symbols-outlined text-3xl"
style="font-size: 20px"
>
home </span
><span class="hidden md:block">Home</span>
</li>
<li
class="flex justify-start items-center gap-3 w-fit hover:bg-gray-900 rounded-full hover:cursor-pointer px-5 py-2"
>
<span class="material-symbols-outlined" style="font-size: 20px">
search </span
><span class="hidden md:block">Explore</span>
</li>
<li
class="flex justify-start items-center gap-3 w-fit hover:bg-gray-900 rounded-full hover:cursor-pointer px-5 py-2"
>
<span class="material-symbols-outlined" style="font-size: 20px">
notifications </span
><span class="hidden md:block">Notifications</span>
</li>
<li
class="flex justify-start items-center gap-3 w-fit hover:bg-gray-900 rounded-full hover:cursor-pointer px-5 py-2"
>
<span class="material-symbols-outlined" style="font-size: 20px">
check_box_outline_blank </span
><span class="hidden md:block">Grok</span>
</li>
<li
class="flex justify-start items-center gap-3 w-fit hover:bg-gray-900 rounded-full hover:cursor-pointer px-5 py-2"
>
<span class="material-symbols-outlined" style="font-size: 20px">
list </span
><span class="hidden md:block">Lists</span>
</li>
<li
class="flex justify-start items-center gap-3 w-fit hover:bg-gray-900 rounded-full hover:cursor-pointer px-5 py-2"
>
<span class="material-symbols-outlined" style="font-size: 20px">
bookmark </span
><span class="hidden md:block">Bookmarks</span>
</li>
<li
class="flex justify-start items-center gap-3 w-fit hover:bg-gray-900 rounded-full hover:cursor-pointer px-5 py-2"
>
<span class="material-symbols-outlined" style="font-size: 20px">
group </span
><span class="hidden md:block">Communities</span>
</li>
<li
class="flex justify-start items-center gap-3 w-fit hover:bg-gray-900 rounded-full hover:cursor-pointer px-5 py-2"
>
<span class="material-symbols-outlined" style="font-size: 20px">
finance_chip </span
><span class="hidden md:block">Primium</span>
</li>
<li
class="flex justify-start items-center gap-3 w-fit hover:bg-gray-900 rounded-full hover:cursor-pointer px-5 py-2"
>
<span class="material-symbols-outlined" style="font-size: 20px">
person </span
><span class="hidden md:block">Profile</span>
</li>
<li
class="flex justify-start items-center gap-3 w-fit hover:bg-gray-900 rounded-full hover:cursor-pointer px-5 py-2"
>
<span class="material-symbols-outlined" style="font-size: 20px">
more </span
><span class="hidden md:block">More</span>
</li>
</ul>
</div>
<div class="butt flex justify-evenly my-4">
<button
class="flex items-center justify-center border rounded-2xl w-[200px] h-[30px] bg-cyan-400 text-black cursor-pointer hover:bg-[#00b3ff] font-bold"
>
<span
class="hidden md:block md:justify-center md:relative md:left-[10px]"
>Post</span
>
<span class="material-symbols-outlined md:invisible"> send </span>
</button>
</div>
<div class="acc justify-center mb-[10px] mt-[50px] hidden md:flex">
<div
class="list px-4 p-3 hover:bg-gray-800 cursor-pointer hover:rounded-2xl flex gap-1 items-center justify-between text-white w-[300px]"
>
<div class="group flex gap-9">
<img
class="w-15 rounded-full border"
src="./img/pro.png"
alt=""
/>
<!-- Code written by Vinay Mahendre -->
<div
class="font-bold flex flex-col justify-center text-sm relative right-[16px]"
>
<span class="hover:underline">Vinay</span>
<div class="text-gray-500 text-sm cursor-pointer">@vinay</div>
</div>
</div>
<div class="dots">
<span class="material-symbols-outlined hover:text-[#00d5ff]">
more_horiz
</span>
</div>
</div>
</div>
<div
class="footer bg-gray-900 mx-[20px] h-[130px] flex-col justify-center items-center rounded-2xl text-gray-500 hidden md:flex"
>
<div class="items-center flex gap-4">
<a class="hover:underline" href="#">Terms of Service</a>
<a class="hover:underline" href="#">Privacy Policy</a>
</div>
<div class="items-center flex gap-4">
<a class="hover:underline" href="#">Cokie Policy</a>
<a class="hover:underline" href="#">Accessibility</a>
<a class="hover:underline" href="#">Ads info</a>
</div>
<div class="items-center flex gap-4">
<a class="hover:underline" href="#">More...</a>
</div>
<h3>Copyright ©, 2025 CyberTweet Corp.</h3>
</div>
<div class="aboutus w-full h-[50px] justify-center flex items-center my-[10px]">
<div class="name w-fit bg-gray-900 px-[10px] rounded-2xl text-white cursor-pointer hover:text-[#00d5ff]">
<a href="#" id="aboutLink">About-Us</a>
</div>
</div>
</div>
<div id="modal" class="fixed inset-0 flex items-center justify-center bg-white/0 backdrop-blur-md hidden">
<!-- Modal content -->
<div class="bg-black p-6 w-64 h-64 rounded-lg shadow-lg flex items-center justify-center">
<span class="text-xl font-bold text-white">Developed by <h2 class="underline text-[#00d5ff]">Vinay Mahendre</h2> to demonstrate Tailwind CSS V4 expertise.
<br>
Enjoy exploring CyberTweet!</span>
</div>
</div>
<div
class="second w-full border-[1px] border-x-gray-600 border-y-black text-white sm:h-[158vh] overflow-auto hide-scrollbar h-[90vh]"
>
<div class="top1 sticky top-0 bg-white/0 backdrop-blur-md">
<div class="top flex p-3 relative border-b-[1px] border-gray-600">
<div
class="absolute w-16 h-1 rounded-full bg-[#00d5ff] bottom-0 left-[17%] z-10"
></div>
<div
class="left w-1/2 flex justify-center font-bold text-lg cursor-pointer"
>
For You
</div>
<div
class="right w-1/2 flex justify-center font-bold text-lg cursor-pointer"
>
Following
</div>
<div class="settings mx-2">
<span class="material-symbols-outlined cursor-pointer"
>settings</span
>
</div>
</div>
</div>
<!-- Code written by Vinay Mahendre -->
<div
class="whatishapp flex gap-4 mt-[20px] mx-[10px] justify-center items-center"
>
<div class="img w-20">
<img
class="rounded-full cursor-pointer border border-[#00d5ff]"
src="./img/pro.png"
alt="profile"
/>
</div>
<input
type="text"
class="w-full bg-black text-white rounded-full h-[50px] px-[10px] border-none outline-none"
placeholder="What is Happening..."
/>
</div>
<div class="see flex mx-[95px] gap-1 cursor-pointer">
<span class="material-symbols-outlined text-[#00d5ff]"> public </span>
<h3 class="font-light text-[#00d5ff]">Everyone can reply</h3>
</div>
<div
class="line border-[1px] my-[15px] mx-[50px] border-gray-800"
></div>
<div
class="svgs flex gap-4 mx-[20px] sm:mx-[95px] items-center justify-between"
>
<div class="flex overflow-x-auto hide-scrollbar">
<span
class="material-symbols-outlined text-[#00d5ff] cursor-pointer hover:text-[#00b3ff]"
style="font-size: 20px"
>
gallery_thumbnail
</span>
<span
class="material-symbols-outlined text-[#00d5ff] cursor-pointer hover:text-[#00b3ff]"
style="font-size: 20px"
>
gif_box
</span>
<span
class="material-symbols-outlined text-[#00d5ff] cursor-pointer hover:text-[#00b3ff]"
style="font-size: 20px"
>
list
</span>
<span
class="material-symbols-outlined text-[#00d5ff] cursor-pointer hover:text-[#00b3ff]"
style="font-size: 20px"
>
sentiment_satisfied
</span>
<span
class="material-symbols-outlined text-[#00d5ff] cursor-pointer hover:text-[#00b3ff]"
style="font-size: 20px"
>
calendar_clock
</span>
<span
class="material-symbols-outlined text-[#00d5ff] cursor-pointer hover:text-[#00b3ff]"
style="font-size: 20px"
>
location_on
</span>
</div>
<button
class="bg-[#00d5ff] text-black rounded-full w-[100px] font-bold cursor- cursor-pointer hover:text-[#00b3ff]pointer hover:bg-[#00b3ff]"
>
<span>Post</span>
</button>
</div>
<div class="line border my-[10px] border-gray-800"></div>
<h3
class="flex justify-center items-center font-light text-[#00d5ff] cursor-pointer hover:text-[#00b3ff]"
>
Show 250 Posts
</h3>
<div class="line border my-[10px] border-gray-800"></div>
<div class="posts flex justify-between items-center mx-[15px]">
<div class="pro flex items-center gap-2">
<img
class="w-[50px] rounded-full border cursor-pointer"
src="./img/3.jpg"
alt="pro1"
/>
<h4 class="font-bold cursor-pointer">SecurityX</h4>
<span class="material-symbols-outlined text-[#00d5ff]">
verified
</span>
<h5 class="text-gray-500">@securityx - 2h</h5>
</div>
<span
class="material-symbols-outlined cursor-pointer hover:text-[#00b3ff]"
>
more_horiz
</span>
</div>
<div class="post mx-[20px] my-[20px] flex flex-col gap-4">
<h3>
Biggest CyberAttack in the World...Exploited By Hacker Group...
<span class="text-gray-700 underline cursor-pointer">more</span>
</h3>
<img
class="rounded-2xl cursor-pointer"
src="./posts/post1.png"
alt="post1"
/>
<div
class="panel flex items-center justify-between overflow-x-auto hide-scrollbar"
>
<div class="p flex items-center sm:gap-4">
<div
class="flex justify-center items-center gap-1 hover:bg-[#00b3ff3c] hover:rounded-2xl px-2 cursor-pointer hover:text-[#00d5ff]"
>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
chat_bubble</span
>
<h5 class="text-[15px]">900K</h5>
</div>
<div
class="flex justify-center items-center gap-1 hover:bg-[#00b3ff3c] hover:rounded-2xl px-2 cursor-pointer hover:text-[#00d5ff]"
>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
cached
</span>
<h5 class="text-[15px]">23.4K</h5>
</div>
<div
class="flex justify-center items-center gap-1 hover:bg-[#00b3ff3c] hover:rounded-2xl px-2 cursor-pointer hover:text-[#00d5ff]"
>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
favorite
</span>
<h5 class="text-[15px]">1.21M</h5>
</div>
<div
class="flex justify-center items-center gap-1 hover:bg-[#00b3ff3c] hover:rounded-2xl px-2 cursor-pointer hover:text-[#00d5ff]"
>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
bar_chart
</span>
<h5 class="text-[15px]">300.1K</h5>
</div>
</div>
<div class="panel2 flex gap-2">
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
bookmark
</span>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
publish
</span>
</div>
</div>
</div>
<div class="line border my-[10px] border-gray-800"></div>
<div class="posts flex justify-between items-center mx-[15px]">
<div class="pro flex items-center gap-2">
<img
class="w-[50px] rounded-full border cursor-pointer"
src="./img/2.jpg"
alt="pro1"
/>
<h4 class="font-bold cursor-pointer">Hacker BlueSpy</h4>
<span class="material-symbols-outlined text-[#00d5ff]">
verified
</span>
<h5 class="text-gray-500">@hackerbluespy - 5h</h5>
</div>
<span
class="material-symbols-outlined cursor-pointer hover:text-[#00b3ff]"
>
more_horiz
</span>
</div>
<div class="post mx-[20px] my-[20px] flex flex-col gap-4">
<h3>
Phones Of Indian Politicians, Journalists Hacked Using Pegasus
Spyware...
<span class="text-gray-700 underline cursor-pointer">more</span>
</h3>
<img
class="rounded-2xl cursor-pointer"
src="./posts/post2.png"
alt="post1"
/>
<div
class="panel flex items-center justify-between overflow-x-auto hide-scrollbar"
>
<div class="p flex items-center gap-4">
<div
class="flex justify-center items-center gap-1 hover:bg-[#00b3ff3c] hover:rounded-2xl px-2 cursor-pointer hover:text-[#00d5ff]"
>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
chat_bubble</span
>
<h5 class="text-[15px]">991K</h5>
</div>
<div
class="flex justify-center items-center gap-1 hover:bg-[#00b3ff3c] hover:rounded-2xl px-2 cursor-pointer hover:text-[#00d5ff]"
>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
cached
</span>
<h5 class="text-[15px]">2.4K</h5>
</div>
<div
class="flex justify-center items-center gap-1 hover:bg-[#00b3ff3c] hover:rounded-2xl px-2 cursor-pointer hover:text-[#00d5ff]"
>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
favorite
</span>
<h5 class="text-[15px]">11.21M</h5>
</div>
<div
class="flex justify-center items-center gap-1 hover:bg-[#00b3ff3c] hover:rounded-2xl px-2 cursor-pointer hover:text-[#00d5ff]"
>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
bar_chart
</span>
<h5 class="text-[15px]">878.1K</h5>
</div>
</div>
<div class="panel2 flex gap-2">
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
bookmark
</span>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
publish
</span>
</div>
</div>
</div>
<div class="line border my-[10px] border-gray-800"></div>
<div class="posts flex justify-between items-center mx-[15px]">
<div class="pro flex items-center gap-2">
<img
class="w-[50px] rounded-full border cursor-pointer"
src="./img/1.png"
alt="pro1"
/>
<h4 class="font-bold cursor-pointer">Vinay Mahendre</h4>
<span class="material-symbols-outlined text-[#00d5ff]">
verified
</span>
<h5 class="text-gray-500">@vinaymahendre - 22h</h5>
</div>
<span
class="material-symbols-outlined cursor-pointer hover:text-[#00b3ff]"
>
more_horiz
</span>
</div>
<div class="post mx-[20px] my-[20px] flex flex-col gap-4">
<h3>
Alleged OpenAI Data Breach: 20 Million Accounts for Sale...
<span class="text-gray-700 underline cursor-pointer">more</span>
</h3>
<!-- Code written by Vinay Mahendre -->
<img
class="rounded-2xl cursor-pointer"
src="./posts/post3.png"
alt="post1"
/>
<div
class="panel flex items-center justify-between overflow-x-auto hide-scrollbar"
>
<div class="p flex items-center gap-4">
<div
class="flex justify-center items-center gap-1 hover:bg-[#00b3ff3c] hover:rounded-2xl px-2 cursor-pointer hover:text-[#00d5ff]"
>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
chat_bubble</span
>
<h5 class="text-[15px]">1M</h5>
</div>
<div
class="flex justify-center items-center gap-1 hover:bg-[#00b3ff3c] hover:rounded-2xl px-2 cursor-pointer hover:text-[#00d5ff]"
>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
cached
</span>
<h5 class="text-[15px]">13.4K</h5>
</div>
<div
class="flex justify-center items-center gap-1 hover:bg-[#00b3ff3c] hover:rounded-2xl px-2 cursor-pointer hover:text-[#00d5ff]"
>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
favorite
</span>
<h5 class="text-[15px]">8.29k</h5>
</div>
<div
class="flex justify-center items-center gap-1 hover:bg-[#00b3ff3c] hover:rounded-2xl px-2 cursor-pointer hover:text-[#00d5ff]"
>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
bar_chart
</span>
<h5 class="text-[15px]">30.11K</h5>
</div>
</div>
<div class="panel2 flex gap-2">
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
bookmark
</span>
<span
class="material-symbols-outlined hover:text-[#00d5ff] cursor-pointer"
style="font-size: 19px"
>
publish
</span>
</div>
</div>
</div>
</div>
<!-- Code written by Vinay Mahendre -->
<div class="tmain md:w-[10vw] xl:w-full">
<div class="third w-full text-white hidden xl:block">
<div class="search m-3">
<input
type="text"
class="w-[305px] px-3 py-2 rounded-[20px] bg-gray-900 outline-none"
placeholder="Search"
/>
</div>
<div class="whats m-4 bg-gray-900 w-[300px] py-5 rounded-xl">
<h1 class="text-xl mx-3 my-1 font-bold">What's Happening</h1>
<div
class="item px-4 p-3 hover:bg-gray-800 cursor-pointer hover:rounded-2xl"
>
<div class="font-bold text-sm text-gray-700">
Trending in India
</div>
<div class="font-bold flex items-center">
Biggest CyberAttack in the World
<img
class="my-[10px] rounded w-20"
src="./img/cyber.jpg"
alt="cyberimg"
/>
</div>
<div class="text-gray-500">90.2K Posts</div>
</div>
<div
class="sec-text py-3 hover:bg-gray-800 cursor-pointer hover:rounded-2xl"
>
<div
class="font-bold mx-4 my-[10px] text-sm text-gray-700 flex justify-between"
>
Cyber-Trending
<span class="material-symbols-outlined hover:text-gray-300">
more_horiz
</span>
</div>
<div class="font-bold mx-4 flex">#CyberAttack</div>
<div class="mx-4 my-2 text-gray-500">500k Posts</div>
</div>
<div
class="sec-text py-3 hover:bg-gray-800 cursor-pointer hover:rounded-2xl"
>
<div
class="font-bold mx-4 my-[10px] text-sm text-gray-700 flex justify-between"
>
Trending in USA
<span class="material-symbols-outlined hover:text-gray-300">
more_horiz
</span>
</div>
<div class="font-bold mx-4 flex">#MalwareAttackInUSA</div>
<div class="mx-4 my-2 text-gray-500">250.1k Posts</div>
</div>
<div
class="sec-text py-3 hover:bg-gray-800 cursor-pointer hover:rounded-2xl"
>
<div
class="font-bold mx-4 my-[10px] text-sm text-gray-700 flex justify-between"
>
Trending in Russia
<span class="material-symbols-outlined hover:text-gray-300">
more_horiz
</span>
</div>
<div class="font-bold mx-4 flex">#PegasusSpyware</div>
<div class="mx-4 my-2 text-gray-500">1.21M Posts</div>
</div>
<h3 class="mx-4 my-4 text-blue-600 cursor-pointer w-fit">
Show More
</h3>
</div>
<div class="who m-4 bg-gray-900 w-[300px] py-5 rounded-xl">
<h1 class="text-xl mx-3 my-1 font-bold">Who to Follow</h1>
<div
class="list px-4 p-3 hover:bg-gray-800 cursor-pointer hover:rounded-2xl flex gap-3 items-center justify-between"
>
<img class="w-15 rounded-full" src="./img/1.png" alt="" />
<div class="font-bold flex flex-col justify-center text-sm">
<span class="hover:underline">Vinay Mahendre</span>
<div class="text-gray-500 text-sm cursor-pointer">
@vinaymahendre
</div>
</div>
<button
class="border rounded-2xl h-[35px] w-[80px] bg-[#00d5ff] text-black font-bold text-sm cursor-pointer hover:bg-[#00b3ff]"
>
Follow
</button>
</div>
<div
class="list px-4 p-3 hover:bg-gray-800 cursor-pointer hover:rounded-2xl flex gap-3 items-center justify-between"
>
<img class="w-15 rounded-full" src="./img/2.jpg" alt="" />
<div class="font-bold flex flex-col justify-center text-sm">
<span class="hover:underline">Hacker BlueSpy</span>
<div class="text-gray-500 text-sm cursor-pointer">
@hackerbluespy
</div>
</div>
<button
class="border rounded-2xl h-[35px] w-[70px] bg-[#00d5ff] text-black font-bold text-sm cursor-pointer hover:bg-[#00b3ff]"
>
Follow
</button>
</div>
<div
class="list px-4 p-3 hover:bg-gray-800 cursor-pointer hover:rounded-2xl flex gap-3 items-center justify-between"
>
<img class="w-15 rounded-full" src="./img/3.jpg" alt="" />
<div
class="font-bold flex flex-col justify-center text-sm relative right-[16px]"
>
<span class="hover:underline">SecurityX</span>
<div class="text-gray-500 text-sm cursor-pointer">
@securityx
</div>
</div>
<button
class="border rounded-2xl h-[35px] w-[70px] bg-[#00d5ff] text-black font-bold text-sm cursor-pointer hover:bg-[#00b3ff]"
>
Follow
</button>
</div>
<div
class="down flex justify-center items-center cursor-pointer hover:text-[#00d5ff]"
>
<span class="material-symbols-outlined hover:text-[#00d5ff]">
arrow_drop_down
</span>
</div>
</div>
</div>
</div>
</div>
<script>
const aboutLink = document.getElementById('aboutLink');
const modal = document.getElementById('modal');
aboutLink.addEventListener('click', (e) => {
e.preventDefault();
modal.classList.remove('hidden');
});
modal.addEventListener('click', (e) => {
if(e.target === modal) {
modal.classList.add('hidden');
}
});
</script>
</body>
<!-- Code written by Vinay Mahendre -->
</html>