-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
908 lines (860 loc) · 45 KB
/
index.html
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
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>X clone</title>
<link rel="stylesheet" href="./tailwind.min.css" />
</head>
<body
class="bg-black flex flex-col-reverse md:flex-row text-xl lg:text-2xl"
>
<!-------------------------MENUBAR SECTION------------------------------------>
<div class="w-screen lg:w-80 h-32 md:h-screen flex cursor-pointer flex-row justify-evenly md:justify-start md:gap-y-6 fixed left-0 bottom-0 z-40 bg-black md:flex-col md:gap-y-4 md:order-2md:ml-16 lg:fixed">
<div class="hidden md:flex flex-row items-center py-2 ">
<svg
fill="#d9d9d9"
xmlns="http://www.w3.org/2000/svg"
width="30"
zoomAndPan="magnify"
viewBox="0 0 375 374.9999"
height="30"
version="1.0"
>
<defs>
<path
d="M 11.972656 11.972656 L 359.222656 11.972656 L 359.222656 359.222656 L 11.972656 359.222656 Z M 11.972656 11.972656"
fill="#000000"
></path>
</defs>
<g>
<path
d="M 185.597656 359.222656 C 89.675781 359.222656 11.972656 280.984375 11.972656 185.597656 C 11.972656 90.210938 89.675781 11.972656 185.597656 11.972656 C 281.519531 11.972656 359.222656 89.675781 359.222656 185.597656 C 359.222656 281.519531 280.984375 359.222656 185.597656 359.222656 Z M 185.597656 22.691406 C 95.570312 22.691406 22.691406 95.570312 22.691406 185.597656 C 22.691406 275.625 95.570312 348.503906 185.597656 348.503906 C 275.625 348.503906 348.503906 275.625 348.503906 185.597656 C 348.503906 95.570312 275.089844 22.691406 185.597656 22.691406 Z M 185.597656 22.691406"
fillOpacity="1"
fillRule="nonzero"
fill="#ffffff"
></path>
</g>
<g transform="translate(85, 75)">
{""}
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
version="1.1"
height="205"
width="205"
>
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"
fill="#ffffff"
></path></svg
>{""}
</g>
</svg>
<p> </p>
</div>
<div
class="flex flex-row items-center md:py:3 font-bold text-xl hover:bg-gray-900 rounded-full md:w-32 bg-opacity-5"
>
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="26px"
height="26px"
class="home-icon"
>
<g>
<path
d="M22.58 7.35L12.475 1.897c-.297-.16-.654-.16-.95 0L1.425 7.35c-.486.264-.667.87-.405 1.356.18.335.525.525.88.525.16 0 .324-.038.475-.12l.734-.396 1.59 11.25c.216 1.214 1.31 2.062 2.66 2.062h9.282c1.35 0 2.444-.848 2.662-2.088l1.588-11.225.737.398c.485.263 1.092.082 1.354-.404.263-.486.08-1.093-.404-1.355zM12 15.435c-1.795 0-3.25-1.455-3.25-3.25s1.455-3.25 3.25-3.25 3.25 1.455 3.25 3.25-1.455 3.25-3.25 3.25z"
></path>
</g>
</svg>
<p class="hidden md:pl-4 md:block md:text-2xl text-white">Home</p>
</div>
<div
class="flex flex-row items-center md:py:3 font-bold text-xl hover:bg-gray-900 rounded-full md:w-32 bg-opacity-1"
>
<svg
viewBox="0 0 24 24"
width="24px"
height="24px"
fill="#B1B1B1"
class="search-icon"
>
<g>
<path
d="M21.53 20.47l-3.66-3.66C19.195 15.24 20 13.214 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c2.215 0 4.24-.804 5.808-2.13l3.66 3.66c.147.146.34.22.53.22s.385-.073.53-.22c.295-.293.295-.767.002-1.06zM3.5 11c0-4.135 3.365-7.5 7.5-7.5s7.5 3.365 7.5 7.5-3.365 7.5-7.5 7.5-7.5-3.365-7.5-7.5z"
></path>
</g>
</svg>
<p class="hidden md:pl-4 md:block md:text-2xl text-white">Explore</p>
</div>
<div
class="flex flex-row items-center md:py:3 font-bold text-xl hover:bg-gray-900 rounded-full md:w-40 bg-opacity-5"
>
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="30px"
height="30px"
class="notif-icon"
>
<g>
<path
d="M21.697 16.468c-.02-.016-2.14-1.64-2.103-6.03.02-2.532-.812-4.782-2.347-6.335C15.872 2.71 14.01 1.94 12.005 1.93h-.013c-2.004.01-3.866.78-5.242 2.174-1.534 1.553-2.368 3.802-2.346 6.334.037 4.33-2.02 5.967-2.102 6.03-.26.193-.366.53-.265.838.102.308.39.515.712.515h4.92c.102 2.31 1.997 4.16 4.33 4.16s4.226-1.85 4.327-4.16h4.922c.322 0 .61-.206.71-.514.103-.307-.003-.645-.263-.838zM12 20.478c-1.505 0-2.73-1.177-2.828-2.658h5.656c-.1 1.48-1.323 2.66-2.828 2.66zM4.38 16.32c.74-1.132 1.548-3.028 1.524-5.896-.018-2.16.644-3.982 1.913-5.267C8.91 4.05 10.397 3.437 12 3.43c1.603.008 3.087.62 4.18 1.728 1.27 1.285 1.933 3.106 1.915 5.267-.024 2.868.785 4.765 1.525 5.896H4.38z"
></path>
</g>
</svg>
<p class="hidden md:pl-4 md:block md:text-2xl text-white">Notifications</p>
</div>
<div
class="flex flex-row items-center md:py:3 font-bold text-xl hover:bg-gray-900 rounded-full md:w-32 bg-opacity-5"
>
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="28px"
height="28px"
class="message-icon"
>
<g>
<path
d="M19.25 3.018H4.75C3.233 3.018 2 4.252 2 5.77v12.495c0 1.518 1.233 2.753 2.75 2.753h14.5c1.517 0 2.75-1.235 2.75-2.753V5.77c0-1.518-1.233-2.752-2.75-2.752zm-14.5 1.5h14.5c.69 0 1.25.56 1.25 1.25v.714l-8.05 5.367c-.273.18-.626.182-.9-.002L3.5 6.482v-.714c0-.69.56-1.25 1.25-1.25zm14.5 14.998H4.75c-.69 0-1.25-.56-1.25-1.25V8.24l7.24 4.83c.383.256.822.384 1.26.384.44 0 .877-.128 1.26-.383l7.24-4.83v10.022c0 .69-.56 1.25-1.25 1.25z"
></path>
</g>
</svg>
<p class="hidden md:pl-4 md:block md:text-2xl text-white">Messages</p>
</div>
<div
class="hidden md:flex flex-row items-center md:py:3 font-bold text-xl hover:bg-gray-900 rounded-full md:w-40 bg-opacity-5"
>
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="26px"
height="26px"
class="bookmark-icon"
>
<g>
<path
d="M19.9 23.5c-.157 0-.312-.05-.442-.144L12 17.928l-7.458 5.43c-.228.164-.53.19-.782.06-.25-.127-.41-.385-.41-.667V5.6c0-1.24 1.01-2.25 2.25-2.25h12.798c1.24 0 2.25 1.01 2.25 2.25v17.15c0 .282-.158.54-.41.668-.106.055-.223.082-.34.082zM12 16.25c.155 0 .31.048.44.144l6.71 4.883V5.6c0-.412-.337-.75-.75-.75H5.6c-.413 0-.75.338-.75.75v15.677l6.71-4.883c.13-.096.285-.144.44-.144z"
></path>
</g>
</svg>
<p class="hidden md:pl-4 md:block md:text-2xl text-white">Bookmarks</p>
</div>
<div
class="hidden md:flex flex-row items-center md:py:3 font-bold text-xl hover:bg-gray-900 rounded-full md:w-32 bg-opacity-5"
>
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="26px"
height="26px"
class="list-icon"
>
<g>
<path
d="M19.75 22H4.25C3.01 22 2 20.99 2 19.75V4.25C2 3.01 3.01 2 4.25 2h15.5C20.99 2 22 3.01 22 4.25v15.5c0 1.24-1.01 2.25-2.25 2.25zM4.25 3.5c-.414 0-.75.337-.75.75v15.5c0 .413.336.75.75.75h15.5c.414 0 .75-.337.75-.75V4.25c0-.413-.336-.75-.75-.75H4.25z"
></path>
<path
d="M17 8.64H7c-.414 0-.75-.337-.75-.75s.336-.75.75-.75h10c.414 0 .75.335.75.75s-.336.75-.75.75zm0 4.11H7c-.414 0-.75-.336-.75-.75s.336-.75.75-.75h10c.414 0 .75.336.75.75s-.336.75-.75.75zm-5 4.11H7c-.414 0-.75-.335-.75-.75s.336-.75.75-.75h5c.414 0 .75.337.75.75s-.336.75-.75.75z"
></path>
</g>
</svg>
<p class="hidden md:pl-4 md:block md:text-2xl text-white">Lists</p>
</div>
<div
class="hidden md:flex flex-row items-center md:py:3 font-bold text-xl hover:bg-gray-900 rounded-full md:w-32 bg-opacity-5"
>
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="26px"
height="26px"
class="profile-icon"
>
<g>
<path
d="M12 11.816c1.355 0 2.872-.15 3.84-1.256.814-.93 1.078-2.368.806-4.392-.38-2.825-2.117-4.512-4.646-4.512S7.734 3.343 7.354 6.17c-.272 2.022-.008 3.46.806 4.39.968 1.107 2.485 1.256 3.84 1.256zM8.84 6.368c.162-1.2.787-3.212 3.16-3.212s2.998 2.013 3.16 3.212c.207 1.55.057 2.627-.45 3.205-.455.52-1.266.743-2.71.743s-2.255-.223-2.71-.743c-.507-.578-.657-1.656-.45-3.205zm11.44 12.868c-.877-3.526-4.282-5.99-8.28-5.99s-7.403 2.464-8.28 5.99c-.172.692-.028 1.4.395 1.94.408.52 1.04.82 1.733.82h12.304c.693 0 1.325-.3 1.733-.82.424-.54.567-1.247.394-1.94zm-1.576 1.016c-.126.16-.316.246-.552.246H5.848c-.235 0-.426-.085-.552-.246-.137-.174-.18-.412-.12-.654.71-2.855 3.517-4.85 6.824-4.85s6.114 1.994 6.824 4.85c.06.242.017.48-.12.654z"
></path>
</g>
</svg>
<p class="hidden md:pl-4 md:block md:text-2xl text-white">Profile</p>
</div>
<div
class="hidden md:flex flex-row items-center md:py:3 font-bold text-xl hover:bg-gray-900 rounded-full md:w-32 bg-opacity-5"
>
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="26px"
height="26px"
class="more-icon"
>
<g>
<circle cx="17" cy="12" r="1.5"></circle>
<circle cx="12" cy="12" r="1.5"></circle>
<circle cx="7" cy="12" r="1.5"></circle>
<path
d="M12 22.75C6.072 22.75 1.25 17.928 1.25 12S6.072 1.25 12 1.25 22.75 6.072 22.75 12 17.928 22.75 12 22.75zm0-20C6.9 2.75 2.75 6.9 2.75 12S6.9 21.25 12 21.25s9.25-4.15 9.25-9.25S17.1 2.75 12 2.75z"
></path>
</g>
</svg>
<p class="hidden md:pl-4 md:block md:text-2xl text-white">More</p>
</div>
<button
class="bg-blue-500 hidden md:block md:w-48 h-11 rounded-full md:rounded-2xl fixed top-2/3 left-1/3 md:absolute md:left-4 mt-12 text-white font-bold text-2xl"
>
Post
</button>
<div class="hidden lg:block profile-expand mt-8 md:flex absolute bottom-0 top-120">
<div class="flex">
<img
class="w-8 h-8 rounded-full"
src="assets/IMG_-cq5hko.jpg"
alt="profile image"
/>
<p class="text-white font-bold text-opacity-90">
Perspective <br />
<span class="text-gray-100 text-opacity-40 font-normal"
> @iamthebuilder__
</span>
</p>
</div>
<div class="absolute left-16 top-4">
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="18px"
height="18px"
class="3-horizontal-dots-icon ml-36"
>
<g>
<circle cx="5" cy="12" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="19" cy="12" r="2"></circle>
</g>
</svg>
</div>
</div>
</div>
<!---------------------TWEET AREA MIDDLE COLUMN---------------------------->
<div
class="sm:w-screen md:w-1/2 md:ml-80 lg:h-screen sm:order-first border-opacity-25"
>
<div
class="home-toptweet border border-gray-50 border-b-0 border-opacity-25 h-12 px-4 flex justify-between items-center"
>
<p class="text-white font-bold text-sm md:text-xl text-opacity-90">Home</p>
<svg
viewBox="0 0 24 24"
fill="#ffffff"
width="25px"
height="25px"
class="settings-icon ml-36"
>
<g>
<path
d="M12 8.21c-2.09 0-3.79 1.7-3.79 3.79s1.7 3.79 3.79 3.79 3.79-1.7 3.79-3.79-1.7-3.79-3.79-3.79zm0 6.08c-1.262 0-2.29-1.026-2.29-2.29S10.74 9.71 12 9.71s2.29 1.026 2.29 2.29-1.028 2.29-2.29 2.29z"
></path>
<path
d="M12.36 22.375h-.722c-1.183 0-2.154-.888-2.262-2.064l-.014-.147c-.025-.287-.207-.533-.472-.644-.286-.12-.582-.065-.798.115l-.116.097c-.868.725-2.253.663-3.06-.14l-.51-.51c-.836-.84-.896-2.154-.14-3.06l.098-.118c.186-.222.23-.523.122-.787-.11-.272-.358-.454-.646-.48l-.15-.014c-1.18-.107-2.067-1.08-2.067-2.262v-.722c0-1.183.888-2.154 2.064-2.262l.156-.014c.285-.025.53-.207.642-.473.11-.27.065-.573-.12-.795l-.094-.116c-.757-.908-.698-2.223.137-3.06l.512-.512c.804-.804 2.188-.865 3.06-.14l.116.098c.218.184.528.23.79.122.27-.112.452-.358.477-.643l.014-.153c.107-1.18 1.08-2.066 2.262-2.066h.722c1.183 0 2.154.888 2.262 2.064l.014.156c.025.285.206.53.472.64.277.117.58.062.794-.117l.12-.102c.867-.723 2.254-.662 3.06.14l.51.512c.836.838.896 2.153.14 3.06l-.1.118c-.188.22-.234.522-.123.788.112.27.36.45.646.478l.152.014c1.18.107 2.067 1.08 2.067 2.262v.723c0 1.183-.888 2.154-2.064 2.262l-.155.014c-.284.024-.53.205-.64.47-.113.272-.067.574.117.795l.1.12c.756.905.696 2.22-.14 3.06l-.51.51c-.807.804-2.19.864-3.06.14l-.115-.096c-.217-.183-.53-.23-.79-.122-.273.114-.455.36-.48.646l-.014.15c-.107 1.173-1.08 2.06-2.262 2.06zm-3.773-4.42c.3 0 .593.06.87.175.79.328 1.324 1.054 1.4 1.896l.014.147c.037.4.367.7.77.7h.722c.4 0 .73-.3.768-.7l.014-.148c.076-.842.61-1.567 1.392-1.892.793-.33 1.696-.182 2.333.35l.113.094c.178.148.366.18.493.18.206 0 .4-.08.546-.227l.51-.51c.284-.284.305-.73.048-1.038l-.1-.12c-.542-.65-.677-1.54-.352-2.323.326-.79 1.052-1.32 1.894-1.397l.155-.014c.397-.037.7-.367.7-.77v-.722c0-.4-.303-.73-.702-.768l-.152-.014c-.846-.078-1.57-.61-1.895-1.393-.326-.788-.19-1.678.353-2.327l.1-.118c.257-.31.236-.756-.048-1.04l-.51-.51c-.146-.147-.34-.227-.546-.227-.127 0-.315.032-.492.18l-.12.1c-.634.528-1.55.67-2.322.354-.788-.327-1.32-1.052-1.397-1.896l-.014-.155c-.035-.397-.365-.7-.767-.7h-.723c-.4 0-.73.303-.768.702l-.014.152c-.076.843-.608 1.568-1.39 1.893-.787.326-1.693.183-2.33-.35l-.118-.096c-.18-.15-.368-.18-.495-.18-.206 0-.4.08-.546.226l-.512.51c-.282.284-.303.73-.046 1.038l.1.118c.54.653.677 1.544.352 2.325-.327.788-1.052 1.32-1.895 1.397l-.156.014c-.397.037-.7.367-.7.77v.722c0 .4.303.73.702.768l.15.014c.848.078 1.573.612 1.897 1.396.325.786.19 1.675-.353 2.325l-.096.115c-.26.31-.238.756.046 1.04l.51.51c.146.147.34.227.546.227.127 0 .315-.03.492-.18l.116-.096c.406-.336.923-.524 1.453-.524z"
></path>
</g>
</svg>
</div>
<!------Create tweet section----------->
<div
class="flex-wth-tweet-area flex border border-gray-50 border-opacity-20 flex-col"
>
<div class="wth flex-none">
<div class="hidden md:block tweet-area md:flex items-center ml-4 mt-4">
<img
class="w-11 h-11 rounded-full"
src="assets/IMG_-cq5hko.jpg"
alt="profile image"
/>
<p class="text-gray-100 text-opacity-40 text-xl pt-4 pl-4">
What's happening?
</p>
</div>
<div
class=" hidden md:block tweet-area-icon-button-wrapper border-gray-50 border-b-8 pb-4 border-opacity-20 md:flex justify-between pt-4 items-center"
>
<ul class="tweet-area-icons mt-4 ml-16 flex list-none">
<li class="px-2">
<svg
viewBox="0 0 24 24"
fill="#1da1f2"
width="25"
height="25"
class="media-icon"
>
<path
d="M19.75 2H4.25C3.01 2 2 3.01 2 4.25v15.5C2 20.99 3.01 22 4.25 22h15.5c1.24 0 2.25-1.01 2.25-2.25V4.25C22 3.01 20.99 2 19.75 2zM4.25 3.5h15.5c.413 0 .75.337.75.75v9.676l-3.858-3.858a.75.75 0 00-.53-.22h-.003a.74.74 0 00-.532.224l-4.317 4.384-1.813-1.806a.75.75 0 00-.53-.22c-.193-.03-.395.08-.535.227L3.5 17.642V4.25c0-.413.337-.75.75-.75zm-.744 16.28l5.418-5.534 6.282 6.254H4.25a.75.75 0 01-.744-.72zm16.244.72h-2.42l-5.007-4.987 3.792-3.85 4.385 4.384v3.703c0 .413-.337.75-.75.75z"
/>
<circle cx="8.868" cy="8.309" r="1.542" />
</svg>
</li>
<li class="px-2">
<svg
viewBox="0 0 24 24"
fill="#1da1f2"
width="25px"
height="25px"
class="gif-icon"
>
<g>
<path
d="M19 10.5V8.8h-4.4v6.4h1.7v-2h2v-1.7h-2v-1H19zm-7.3-1.7h1.7v6.4h-1.7V8.8zm-3.6 1.6c.4 0 .9.2 1.2.5l1.2-1C9.9 9.2 9 8.8 8.1 8.8c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2c1 0 1.8-.4 2.4-1.1v-2.5H7.7v1.2h1.2v.6c-.2.1-.5.2-.8.2-.9 0-1.6-.7-1.6-1.6 0-.8.7-1.6 1.6-1.6z"
></path>
<path
d="M20.5 2.02h-17c-1.24 0-2.25 1.007-2.25 2.247v15.507c0 1.238 1.01 2.246 2.25 2.246h17c1.24 0 2.25-1.008 2.25-2.246V4.267c0-1.24-1.01-2.247-2.25-2.247zm.75 17.754c0 .41-.336.746-.75.746h-17c-.414 0-.75-.336-.75-.746V4.267c0-.412.336-.747.75-.747h17c.414 0 .75.335.75.747v15.507z"
></path>
</g>
</svg>
</li>
<li class="px-2">
<svg
viewBox="0 0 24 24"
fill="#1da1f2"
width="25px"
height="25px"
class="poll-icon"
>
<g>
<path
d="M20.222 9.16h-1.334c.015-.09.028-.182.028-.277V6.57c0-.98-.797-1.777-1.778-1.777H3.5V3.358c0-.414-.336-.75-.75-.75s-.75.336-.75.75V20.83c0 .415.336.75.75.75s.75-.335.75-.75v-1.434h10.556c.98 0 1.778-.797 1.778-1.777v-2.313c0-.095-.014-.187-.028-.278h4.417c.98 0 1.778-.798 1.778-1.778v-2.31c0-.983-.797-1.78-1.778-1.78zM17.14 6.293c.152 0 .277.124.277.277v2.31c0 .154-.125.28-.278.28H3.5V6.29h13.64zm-2.807 9.014v2.312c0 .153-.125.277-.278.277H3.5v-2.868h10.556c.153 0 .277.126.277.28zM20.5 13.25c0 .153-.125.277-.278.277H3.5V10.66h16.722c.153 0 .278.124.278.277v2.313z"
></path>
</g>
</svg>
</li>
<li class="px-2">
<svg
viewBox="0 0 24 24"
fill="#1da1f2"
width="25px"
height="25px"
class="emoji-icon"
>
<g>
<path
d="M12 22.75C6.072 22.75 1.25 17.928 1.25 12S6.072 1.25 12 1.25 22.75 6.072 22.75 12 17.928 22.75 12 22.75zm0-20C6.9 2.75 2.75 6.9 2.75 12S6.9 21.25 12 21.25s9.25-4.15 9.25-9.25S17.1 2.75 12 2.75z"
></path>
<path
d="M12 17.115c-1.892 0-3.633-.95-4.656-2.544-.224-.348-.123-.81.226-1.035.348-.226.812-.124 1.036.226.747 1.162 2.016 1.855 3.395 1.855s2.648-.693 3.396-1.854c.224-.35.688-.45 1.036-.225.35.224.45.688.226 1.036-1.025 1.594-2.766 2.545-4.658 2.545z"
></path>
<circle cx="14.738" cy="9.458" r="1.478"></circle>
<circle cx="9.262" cy="9.458" r="1.478"></circle>
</g>
</svg>
</li>
<li class="px-2">
<svg
viewBox="0 0 24 24"
fill="#1da1f2"
width="25px"
height="25px"
class="schedule-icon"
>
<g>
<path d="M-37.9 18c-.1-.1-.1-.1-.1-.2.1 0 .1.1.1.2z"></path>
<path
d="M-37.9 18c-.1-.1-.1-.1-.1-.2.1 0 .1.1.1.2zM18 2.2h-1.3v-.3c0-.4-.3-.8-.8-.8-.4 0-.8.3-.8.8v.3H7.7v-.3c0-.4-.3-.8-.8-.8-.4 0-.8.3-.8.8v.3H4.8c-1.4 0-2.5 1.1-2.5 2.5v13.1c0 1.4 1.1 2.5 2.5 2.5h2.9c.4 0 .8-.3.8-.8 0-.4-.3-.8-.8-.8H4.8c-.6 0-1-.5-1-1V7.9c0-.3.4-.7 1-.7H18c.6 0 1 .4 1 .7v1.8c0 .4.3.8.8.8.4 0 .8-.3.8-.8v-5c-.1-1.4-1.2-2.5-2.6-2.5zm1 3.7c-.3-.1-.7-.2-1-.2H4.8c-.4 0-.7.1-1 .2V4.7c0-.6.5-1 1-1h1.3v.5c0 .4.3.8.8.8.4 0 .8-.3.8-.8v-.5h7.5v.5c0 .4.3.8.8.8.4 0 .8-.3.8-.8v-.5H18c.6 0 1 .5 1 1v1.2z"
></path>
<path
d="M15.5 10.4c-3.4 0-6.2 2.8-6.2 6.2 0 3.4 2.8 6.2 6.2 6.2 3.4 0 6.2-2.8 6.2-6.2 0-3.4-2.8-6.2-6.2-6.2zm0 11c-2.6 0-4.7-2.1-4.7-4.7s2.1-4.7 4.7-4.7 4.7 2.1 4.7 4.7c0 2.5-2.1 4.7-4.7 4.7z"
></path>
<path
d="M18.9 18.7c-.1.2-.4.4-.6.4-.1 0-.3 0-.4-.1l-3.1-2v-3c0-.4.3-.8.8-.8.4 0 .8.3.8.8v2.2l2.4 1.5c.2.2.3.6.1 1z"
></path>
</g>
</svg>
</li>
</ul>
<button
class=" bg-blue-500 w-20 h-11 mr-4 rounded-full text-white font-bold text-base text-opacity-80 opacity-50"
>
Post
</button>
</div>
</div>
<!--------TIMELINE SECTION ----------->
<div class="over flex-auto overflow-y-auto mb-32 lg:mb-6 px-4">
<div
class="flex flex-col border-gray-50 border-b border-t border-opacity-25"
>
<div class="tweet-area flex ml-4 mt-4">
<img
class="w-11 h-11 rounded-full"
src="assets/IMG_-cq5hko.jpg"
alt="profile image"
/>
<p class="text-white pl-4 font-bold text-opacity-90">
Perspective<span
class="text-gray-100 text-opacity-40 font-normal"
> @iamthebuilder__ · 1m</span
><br /><span class="font-normal text-gray-100 text-opacity-80">
Hi, I'm Ekeopre. I'm a self-taught frontend web
developer and content creator from Bayelsa, Nigeria with over 3 years of experience using various web development technologies and I
created this X clone from scratch using HTML and TailwindCSS.
</span>
</p>
</div>
<ul class="flex justify-around my-2 pl-12">
<li class="inline-flex relative">
<svg
viewBox="0 0 24 24"
fill="#FFFFFF"
width="18.75px"
height="18.75px"
class="comment-icon opacity-30"
>
<g>
<path
d="M14.046 2.242l-4.148-.01h-.002c-4.374 0-7.8 3.427-7.8 7.802 0 4.098 3.186 7.206 7.465 7.37v3.828c0 .108.044.286.12.403.142.225.384.347.632.347.138 0 .277-.038.402-.118.264-.168 6.473-4.14 8.088-5.506 1.902-1.61 3.04-3.97 3.043-6.312v-.017c-.006-4.367-3.43-7.787-7.8-7.788zm3.787 12.972c-1.134.96-4.862 3.405-6.772 4.643V16.67c0-.414-.335-.75-.75-.75h-.396c-3.66 0-6.318-2.476-6.318-5.886 0-3.534 2.768-6.302 6.3-6.302l4.147.01h.002c3.532 0 6.3 2.766 6.302 6.296-.003 1.91-.942 3.844-2.514 5.176z"
></path>
</g></svg>
<p
class="text-gray-100 text-xl lg:text-2xl text-opacity-40 font-normal absolute left-6 bottom-1"
>
4,564
</p>
</li>
<li class="inline-flex relative">
<svg
viewBox="0 0 24 24"
fill="#FFFFFF"
width="18.75px"
height="18.75px"
class="retweet-icon opacity-30"
>
<g>
<path
d="M23.77 15.67c-.292-.293-.767-.293-1.06 0l-2.22 2.22V7.65c0-2.068-1.683-3.75-3.75-3.75h-5.85c-.414 0-.75.336-.75.75s.336.75.75.75h5.85c1.24 0 2.25 1.01 2.25 2.25v10.24l-2.22-2.22c-.293-.293-.768-.293-1.06 0s-.294.768 0 1.06l3.5 3.5c.145.147.337.22.53.22s.383-.072.53-.22l3.5-3.5c.294-.292.294-.767 0-1.06zm-10.66 3.28H7.26c-1.24 0-2.25-1.01-2.25-2.25V6.46l2.22 2.22c.148.147.34.22.532.22s.384-.073.53-.22c.293-.293.293-.768 0-1.06l-3.5-3.5c-.293-.294-.768-.294-1.06 0l-3.5 3.5c-.294.292-.294.767 0 1.06s.767.293 1.06 0l2.22-2.22V16.7c0 2.068 1.683 3.75 3.75 3.75h5.85c.414 0 .75-.336.75-.75s-.337-.75-.75-.75z"
></path>
</g>
</svg>
<p
class="text-gray-100 text-xl lg:text-2xl text-opacity-40 font-normal absolute left-6 bottom-1"
>
43k
</p>
</li>
<li class="inline-flex relative">
<svg
viewBox="0 0 24 24"
fill="#FC2020"
width="18.75px"
height="18.75px"
class="like-icon-tag"
>
<g>
<path
d="M12 21.638h-.014C9.403 21.59 1.95 14.856 1.95 8.478c0-3.064 2.525-5.754 5.403-5.754 2.29 0 3.83 1.58 4.646 2.73.814-1.148 2.354-2.73 4.645-2.73 2.88 0 5.404 2.69 5.404 5.755 0 6.376-7.454 13.11-10.037 13.157H12z"
></path>
</g>
</svg>
<p
class="text-gray-100 text-xl lg:text-2xl text-opacity-40 font-normal absolute left-6 bottom-1"
>
51k
</p>
</li>
<li>
<svg
viewBox="0 0 24 24"
fill="#FFFFFF"
width="18.75px"
height="18.75px"
class="share-icon opacity-30"
>
<g>
<path
d="M17.53 7.47l-5-5c-.293-.293-.768-.293-1.06 0l-5 5c-.294.293-.294.768 0 1.06s.767.294 1.06 0l3.72-3.72V15c0 .414.336.75.75.75s.75-.336.75-.75V4.81l3.72 3.72c.146.147.338.22.53.22s.384-.072.53-.22c.293-.293.293-.767 0-1.06z"
></path>
<path
d="M19.708 21.944H4.292C3.028 21.944 2 20.916 2 19.652V14c0-.414.336-.75.75-.75s.75.336.75.75v5.652c0 .437.355.792.792.792h15.416c.437 0 .792-.355.792-.792V14c0-.414.336-.75.75-.75s.75.336.75.75v5.652c0 1.264-1.028 2.292-2.292 2.292z"
></path>
</g>
</svg>
</li>
</ul>
</div>
<div
class="flex flex-col border-gray-50 border-b pb-4 border-opacity-25"
>
<div class="tweet-area flex ml-4 mt-4">
<img
class="w-11 h-11 rounded-full"
src="assets/IMG_-cq5hko.jpg"
alt="profile image"
/>
<p class="text-white pl-4 font-bold text-opacity-90">
Perspective<span
class="text-gray-100 text-opacity-40 font-normal"
> @iamthebuilder__ · 1m</span
><br /><span class="font-normal text-gray-100 text-opacity-80"
>I developed a curiosity for web development and programming, and this
curiosity that led me to YouTube where I began learning web development, and then later moved on to take more advances courses to deepen my understanding. It's been 3 years since my journey began and I haven't stopped learning and building ever since. Web development and programming is a really challenging and exciting field!
</span>
</p>
</div>
<ul class="mt-2 flex justify-around pl-12">
<li class="inline-flex relative">
<svg
viewBox="0 0 24 24"
fill="#FFFFFF"
width="18.75px"
height="18.75px"
class="comment-icon opacity-30"
>
<g>
<path
d="M14.046 2.242l-4.148-.01h-.002c-4.374 0-7.8 3.427-7.8 7.802 0 4.098 3.186 7.206 7.465 7.37v3.828c0 .108.044.286.12.403.142.225.384.347.632.347.138 0 .277-.038.402-.118.264-.168 6.473-4.14 8.088-5.506 1.902-1.61 3.04-3.97 3.043-6.312v-.017c-.006-4.367-3.43-7.787-7.8-7.788zm3.787 12.972c-1.134.96-4.862 3.405-6.772 4.643V16.67c0-.414-.335-.75-.75-.75h-.396c-3.66 0-6.318-2.476-6.318-5.886 0-3.534 2.768-6.302 6.3-6.302l4.147.01h.002c3.532 0 6.3 2.766 6.302 6.296-.003 1.91-.942 3.844-2.514 5.176z"
></path>
</g></svg>
<p
class="text-gray-100 text-xl lg:text-2xl text-opacity-40 font-normal absolute left-6 bottom-1"
>
5,654
</p>
</li>
<li class="inline-flex relative">
<svg
viewBox="0 0 24 24"
fill="#FFFFFF"
width="18.75px"
height="18.75px"
class="retweet-icon opacity-30 hover:bg-green-200 rounded-full"
>
<g>
<path
d="M23.77 15.67c-.292-.293-.767-.293-1.06 0l-2.22 2.22V7.65c0-2.068-1.683-3.75-3.75-3.75h-5.85c-.414 0-.75.336-.75.75s.336.75.75.75h5.85c1.24 0 2.25 1.01 2.25 2.25v10.24l-2.22-2.22c-.293-.293-.768-.293-1.06 0s-.294.768 0 1.06l3.5 3.5c.145.147.337.22.53.22s.383-.072.53-.22l3.5-3.5c.294-.292.294-.767 0-1.06zm-10.66 3.28H7.26c-1.24 0-2.25-1.01-2.25-2.25V6.46l2.22 2.22c.148.147.34.22.532.22s.384-.073.53-.22c.293-.293.293-.768 0-1.06l-3.5-3.5c-.293-.294-.768-.294-1.06 0l-3.5 3.5c-.294.292-.294.767 0 1.06s.767.293 1.06 0l2.22-2.22V16.7c0 2.068 1.683 3.75 3.75 3.75h5.85c.414 0 .75-.336.75-.75s-.337-.75-.75-.75z"
></path>
</g></svg
>
<p
class="text-gray-100 text-xl lg:text-2xl text-opacity-40 font-normal absolute left-6 bottom-1"
>
43k
</p>
</li>
<li class="inline-flex relative">
<svg
viewBox="0 0 24 24"
fill="#FC2020"
width="18.75px"
height="18.75px"
class="like-icon-tag"
>
<g>
<path
d="M12 21.638h-.014C9.403 21.59 1.95 14.856 1.95 8.478c0-3.064 2.525-5.754 5.403-5.754 2.29 0 3.83 1.58 4.646 2.73.814-1.148 2.354-2.73 4.645-2.73 2.88 0 5.404 2.69 5.404 5.755 0 6.376-7.454 13.11-10.037 13.157H12z"
></path>
</g></svg
>
<p
class="text-gray-100 text-xl lg:text-2xl text-opacity-40 font-normal absolute left-6 bottom-1"
>
57k
</p>
</li>
<li>
<svg
viewBox="0 0 24 24"
fill="#FFFFFF"
width="18.75px"
height="18.75px"
class="share-icon opacity-30"
>
<g>
<path
d="M17.53 7.47l-5-5c-.293-.293-.768-.293-1.06 0l-5 5c-.294.293-.294.768 0 1.06s.767.294 1.06 0l3.72-3.72V15c0 .414.336.75.75.75s.75-.336.75-.75V4.81l3.72 3.72c.146.147.338.22.53.22s.384-.072.53-.22c.293-.293.293-.767 0-1.06z"
></path>
<path
d="M19.708 21.944H4.292C3.028 21.944 2 20.916 2 19.652V14c0-.414.336-.75.75-.75s.75.336.75.75v5.652c0 .437.355.792.792.792h15.416c.437 0 .792-.355.792-.792V14c0-.414.336-.75.75-.75s.75.336.75.75v5.652c0 1.264-1.028 2.292-2.292 2.292z"
></path>
</g>
</svg>
</li>
</ul>
</div>
<div
class="flex flex-col border-gray-50 border-b pb-4 border-opacity-25"
>
<div class="tweet-area flex ml-4 mt-4">
<img
class="w-11 h-11 rounded-full"
src="assets/IMG_-cq5hko.jpg"
alt="profile image"
/>
<p class="text-white pl-4 font-bold text-opacity-90">
Perspective<span
class="text-gray-100 text-opacity-40 font-normal"
> @iamthebuilder__ · 1m</span
><br /><span class="font-normal text-gray-100 text-opacity-80">
I'm currently open to freelance and full-time employment opportunities where I can learn and contribute to creating cool and exciting projects so if you;re looking to hire me, or maybe just have a chat about web development you can send me a DM on the real X 😁 Please retweet this
if it comes across your TL. TailwindCSS is awesome!
<span class="text-blue-500">@tailwindcss.</span>
</span>
</p>
</div>
<ul class="mt-2 flex justify-around pl-12">
<li class="inline-flex relative">
<svg
viewBox="0 0 24 24"
fill="#FFFFFF"
width="18.75px"
height="18.75px"
class="comment-icon opacity-30"
>
<g>
<path
d="M14.046 2.242l-4.148-.01h-.002c-4.374 0-7.8 3.427-7.8 7.802 0 4.098 3.186 7.206 7.465 7.37v3.828c0 .108.044.286.12.403.142.225.384.347.632.347.138 0 .277-.038.402-.118.264-.168 6.473-4.14 8.088-5.506 1.902-1.61 3.04-3.97 3.043-6.312v-.017c-.006-4.367-3.43-7.787-7.8-7.788zm3.787 12.972c-1.134.96-4.862 3.405-6.772 4.643V16.67c0-.414-.335-.75-.75-.75h-.396c-3.66 0-6.318-2.476-6.318-5.886 0-3.534 2.768-6.302 6.3-6.302l4.147.01h.002c3.532 0 6.3 2.766 6.302 6.296-.003 1.91-.942 3.844-2.514 5.176z"
></path>
</g></svg>
<p
class="text-gray-100 text-xl lg:text-2xl text-opacity-40 font-normal absolute left-6 bottom-1"
>
3,454
</p>
</li>
<li class="inline-flex relative">
<svg
viewBox="0 0 24 24"
fill="#FFFFFF"
width="18.75px"
height="18.75px"
class="retweet-icon opacity-30 hover:bg-green-200 rounded-full"
>
<g>
<path
d="M23.77 15.67c-.292-.293-.767-.293-1.06 0l-2.22 2.22V7.65c0-2.068-1.683-3.75-3.75-3.75h-5.85c-.414 0-.75.336-.75.75s.336.75.75.75h5.85c1.24 0 2.25 1.01 2.25 2.25v10.24l-2.22-2.22c-.293-.293-.768-.293-1.06 0s-.294.768 0 1.06l3.5 3.5c.145.147.337.22.53.22s.383-.072.53-.22l3.5-3.5c.294-.292.294-.767 0-1.06zm-10.66 3.28H7.26c-1.24 0-2.25-1.01-2.25-2.25V6.46l2.22 2.22c.148.147.34.22.532.22s.384-.073.53-.22c.293-.293.293-.768 0-1.06l-3.5-3.5c-.293-.294-.768-.294-1.06 0l-3.5 3.5c-.294.292-.294.767 0 1.06s.767.293 1.06 0l2.22-2.22V16.7c0 2.068 1.683 3.75 3.75 3.75h5.85c.414 0 .75-.336.75-.75s-.337-.75-.75-.75z"
></path>
</g></svg
>
<p
class="text-gray-100 text-xl lg:text-2xl text-opacity-40 font-normal absolute left-6 bottom-1"
>
23k
</p>
</li>
<li class="inline-flex relative">
<svg
viewBox="0 0 24 24"
fill="#FC2020"
width="18.75px"
height="18.75px"
class="like-icon-tag"
>
<g>
<path
d="M12 21.638h-.014C9.403 21.59 1.95 14.856 1.95 8.478c0-3.064 2.525-5.754 5.403-5.754 2.29 0 3.83 1.58 4.646 2.73.814-1.148 2.354-2.73 4.645-2.73 2.88 0 5.404 2.69 5.404 5.755 0 6.376-7.454 13.11-10.037 13.157H12z"
></path>
</g></svg
>
<p
class="text-gray-100 text-xl lg:text-2xl text-opacity-40 font-normal absolute left-6 bottom-1"
>
87k
</p>
</li>
<li>
<svg
viewBox="0 0 24 24"
fill="#FFFFFF"
width="18.75px"
height="18.75px"
class="share-icon opacity-30"
>
<g>
<path
d="M17.53 7.47l-5-5c-.293-.293-.768-.293-1.06 0l-5 5c-.294.293-.294.768 0 1.06s.767.294 1.06 0l3.72-3.72V15c0 .414.336.75.75.75s.75-.336.75-.75V4.81l3.72 3.72c.146.147.338.22.53.22s.384-.072.53-.22c.293-.293.293-.767 0-1.06z"
></path>
<path
d="M19.708 21.944H4.292C3.028 21.944 2 20.916 2 19.652V14c0-.414.336-.75.75-.75s.75.336.75.75v5.652c0 .437.355.792.792.792h15.416c.437 0 .792-.355.792-.792V14c0-.414.336-.75.75-.75s.75.336.75.75v5.652c0 1.264-1.028 2.292-2.292 2.292z"
></path>
</g>
</svg>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-------SEARCH TRENDS SECTION------------>
<div class="hidden lg:block">
<div class="relative w-86 ml-8 my-2">
<input
class="w-96 m-auto h-11 mr-8 ml-2 bg-blue-200 opacity-20 rounded-full"
placeholder=""
type="search"
/>
<div class="flex items-center absolute bottom-2 left-4">
<svg
viewBox="0 0 24 24"
width="18.75px"
height="18.75px"
fill="#B1B1B1"
class="search-icon"
>
<g>
<path
d="M21.53 20.47l-3.66-3.66C19.195 15.24 20 13.214 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c2.215 0 4.24-.804 5.808-2.13l3.66 3.66c.147.146.34.22.53.22s.385-.073.53-.22c.295-.293.295-.767.002-1.06zM3.5 11c0-4.135 3.365-7.5 7.5-7.5s7.5 3.365 7.5 7.5-3.365 7.5-7.5 7.5-7.5-3.365-7.5-7.5z"
></path>
</g>
</svg>
<p class="text-white text-base text-opacity-40 px-4">Search</p>
</div>
</div>
<div
class="trends-bar w-94 mt-4 ml-8 mr-4 mb-20 grid grid-cols-1 grid-row-8 md:gap-x-40 md:gap-y-4 bg-blue-200 bg-opacity-10 px-4 rounded-2xl"
>
<div class="flex mt-4 items-center">
<div class="font-bold text-xl w-48 text-white opacity-90">
Trends for you
</div>
<div>
<svg
viewBox="0 0 24 24"
fill="#1da1f2"
width="25px"
height="25px"
class="settings-icon ml-36"
>
<g>
<path
d="M12 8.21c-2.09 0-3.79 1.7-3.79 3.79s1.7 3.79 3.79 3.79 3.79-1.7 3.79-3.79-1.7-3.79-3.79-3.79zm0 6.08c-1.262 0-2.29-1.026-2.29-2.29S10.74 9.71 12 9.71s2.29 1.026 2.29 2.29-1.028 2.29-2.29 2.29z"
></path>
<path
d="M12.36 22.375h-.722c-1.183 0-2.154-.888-2.262-2.064l-.014-.147c-.025-.287-.207-.533-.472-.644-.286-.12-.582-.065-.798.115l-.116.097c-.868.725-2.253.663-3.06-.14l-.51-.51c-.836-.84-.896-2.154-.14-3.06l.098-.118c.186-.222.23-.523.122-.787-.11-.272-.358-.454-.646-.48l-.15-.014c-1.18-.107-2.067-1.08-2.067-2.262v-.722c0-1.183.888-2.154 2.064-2.262l.156-.014c.285-.025.53-.207.642-.473.11-.27.065-.573-.12-.795l-.094-.116c-.757-.908-.698-2.223.137-3.06l.512-.512c.804-.804 2.188-.865 3.06-.14l.116.098c.218.184.528.23.79.122.27-.112.452-.358.477-.643l.014-.153c.107-1.18 1.08-2.066 2.262-2.066h.722c1.183 0 2.154.888 2.262 2.064l.014.156c.025.285.206.53.472.64.277.117.58.062.794-.117l.12-.102c.867-.723 2.254-.662 3.06.14l.51.512c.836.838.896 2.153.14 3.06l-.1.118c-.188.22-.234.522-.123.788.112.27.36.45.646.478l.152.014c1.18.107 2.067 1.08 2.067 2.262v.723c0 1.183-.888 2.154-2.064 2.262l-.155.014c-.284.024-.53.205-.64.47-.113.272-.067.574.117.795l.1.12c.756.905.696 2.22-.14 3.06l-.51.51c-.807.804-2.19.864-3.06.14l-.115-.096c-.217-.183-.53-.23-.79-.122-.273.114-.455.36-.48.646l-.014.15c-.107 1.173-1.08 2.06-2.262 2.06zm-3.773-4.42c.3 0 .593.06.87.175.79.328 1.324 1.054 1.4 1.896l.014.147c.037.4.367.7.77.7h.722c.4 0 .73-.3.768-.7l.014-.148c.076-.842.61-1.567 1.392-1.892.793-.33 1.696-.182 2.333.35l.113.094c.178.148.366.18.493.18.206 0 .4-.08.546-.227l.51-.51c.284-.284.305-.73.048-1.038l-.1-.12c-.542-.65-.677-1.54-.352-2.323.326-.79 1.052-1.32 1.894-1.397l.155-.014c.397-.037.7-.367.7-.77v-.722c0-.4-.303-.73-.702-.768l-.152-.014c-.846-.078-1.57-.61-1.895-1.393-.326-.788-.19-1.678.353-2.327l.1-.118c.257-.31.236-.756-.048-1.04l-.51-.51c-.146-.147-.34-.227-.546-.227-.127 0-.315.032-.492.18l-.12.1c-.634.528-1.55.67-2.322.354-.788-.327-1.32-1.052-1.397-1.896l-.014-.155c-.035-.397-.365-.7-.767-.7h-.723c-.4 0-.73.303-.768.702l-.014.152c-.076.843-.608 1.568-1.39 1.893-.787.326-1.693.183-2.33-.35l-.118-.096c-.18-.15-.368-.18-.495-.18-.206 0-.4.08-.546.226l-.512.51c-.282.284-.303.73-.046 1.038l.1.118c.54.653.677 1.544.352 2.325-.327.788-1.052 1.32-1.895 1.397l-.156.014c-.397.037-.7.367-.7.77v.722c0 .4.303.73.702.768l.15.014c.848.078 1.573.612 1.897 1.396.325.786.19 1.675-.353 2.325l-.096.115c-.26.31-.238.756.046 1.04l.51.51c.146.147.34.227.546.227.127 0 .315-.03.492-.18l.116-.096c.406-.336.923-.524 1.453-.524z"
></path>
</g>
</svg>
</div>
</div>
<div class="flex pt-3">
<div class="trend-block">
<p class="text-white text-xl text-opacity-60 w-48">
Trending in Nigeria <br /><span class="text-white font-medium"
>TailwindCSS</span
><br /><span>100k Tweets</span>
</p>
</div>
<div>
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="18px"
height="18px"
class="3-horizontal-dots-icon ml-40"
>
<g>
<circle cx="5" cy="12" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="19" cy="12" r="2"></circle>
</g>
</svg>
</div>
</div>
<div class="flex pt-3">
<div class="trend-block">
<p class="text-white text-2xl text-opacity-60 w-48">
Trending in Nigeria <br /><span class="text-white font-medium"
>Web development</span
><br /><span>100k Tweets</span>
</p>
</div>
<div>
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="18px"
height="18px"
class="3-horizontal-dots-icon ml-40"
>
<g>
<circle cx="5" cy="12" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="19" cy="12" r="2"></circle>
</g>
</svg>
</div>
</div>
<div class="flex pt-3">
<div class="trend-block">
<p class="text-white text-2xl text-opacity-60 w-48">
Trending in Nigeria <br /><span class="text-white font-medium"
>#WebDevelopersNigeria</span
><br /><span>100k Tweets</span>
</p>
</div>
<div>
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="18px"
height="18px"
class="3-horizontal-dots-icon ml-40"
>
<g>
<circle cx="5" cy="12" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="19" cy="12" r="2"></circle>
</g>
</svg>
</div>
</div>
<div class="flex pb-3 pt-3">
<div class="trend-block">
<p class="text-white text-2xl text-opacity-60 w-48">
Trending in Nigeria <br /><span class="text-white font-medium"
>#WebDevelopmentJobs</span
><br />
<span>100k Tweets</span>
</p>
</div>
<div>
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="18px"
height="18px"
class="3-horizontal-dots-icon ml-40"
>
<g>
<circle cx="5" cy="12" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="19" cy="12" r="2"></circle>
</g>
</svg>
</div>
</div>
<div class="flex pt-3 pb-5">
<div class="trend-block">
<p class="text-blue-500 text-medium w-48">Show more</p>
</div>
<div>
<svg
viewBox="0 0 24 24"
fill="#d9d9d9"
width="18px"
height="18px"
class="3-horizontal-dots-icon ml-40"
>
<g>
<circle cx="5" cy="12" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="19" cy="12" r="2"></circle>
</g>
</svg>
</div>
</div>
</div>
<!-- </div> -->
</div>
</body>
</html>