-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrending.html
1293 lines (1174 loc) · 79.3 KB
/
trending.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
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<!-- Made By Nivedita-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link href="assets/images/favicon.png" rel="icon" type="image/png">
<!-- Basic Page Needs
================================================== -->
<title>Instello Sharing Photos</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Instello - Sharing Photos platform HTML Template">
<!-- icons
================================================== -->
<link rel="stylesheet" href="assets/css/icons.css">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="assets/css/uikit.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/tailwind.css">
</head>
<body>
<div id="wrapper">
<div class="sidebar">
<div class="sidebar_header border-b border-gray-200 from-gray-100 to-gray-50 bg-gradient-to-t uk-visible@s">
<a href="#">
<img src="assets/images/logo.png">
<img src="assets/images/logo-light.png" class="logo_inverse">
</a>
<!-- btn night mode -->
<a href="#" id="night-mode" class="btn-night-mode" data-tippy-placement="left" title="Switch to dark mode"></a>
</div>
<div class="border-b border-gray-20 flex justify-between items-center p-3 pl-5 relative uk-hidden@s">
<h3 class="text-xl"> Navigation </h3>
<span class="btn-mobile" uk-toggle="target: #wrapper ; cls: sidebar-active"></span>
</div>
<div class="sidebar_inner" data-simplebar>
<div class="flex flex-col items-center my-6 uk-visible@s">
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transition m-0.5 mr-2 w-24 h-24">
<img src="assets/images/avatars/avatar-2.jpg"
class="bg-gray-200 border-4 border-white rounded-full w-full h-full">
</div>
<a href="profile.html" class="text-xl font-medium capitalize mt-4 uk-link-reset"> Stella Johnson
</a>
<div class="flex justify-around w-full items-center text-center uk-link-reset text-gray-800 mt-6">
<div>
<a href="#">
<strong>Post</strong>
<div> 130</div>
</a>
</div>
<div>
<a href="#">
<strong>Following</strong>
<div> 1,230</div>
</a>
</div>
<div>
<a href="#">
<strong>Followers</strong>
<div> 2,430</div>
</a>
</div>
</div>
</div>
<hr class="-mx-4 -mt-1 uk-visible@s">
<ul>
<li>
<a href="feed.html">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2V6zM14 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2V6zM4 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2v-2zM14 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2v-2z" />
</svg>
<span> Feed </span> </a>
</li>
<li>
<a href="explore.html">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
</svg>
<span> Explore </span> </a>
</li>
<li>
<a href="chat.html">
<i class="uil-location-arrow"></i>
<span> Messages </span> <span class="nav-tag"> 3</span> </a>
</li>
<li class="active">
<a href="trending.html">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 18.657A8 8 0 016.343 7.343S7 9 9 10c0-2 .5-5 2.986-7C14 5 16.09 5.777 17.656 7.343A7.975 7.975 0 0120 13a7.975 7.975 0 01-2.343 5.657z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.879 16.121A3 3 0 1012.015 11L11 14H9c0 .768.293 1.536.879 2.121z" />
</svg>
<span> Trending </span> </a>
</li>
<li>
<a href="market.html">
<i class="uil-store"></i>
<span> Marketplace </span> </a>
</li>
<li>
<a href="setting.html">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
<span> Settings </span>
</a>
<ul>
<li><a href="setting.html">General </a></li>
<li><a href="setting.html"> Account setting </a></li>
<li><a href="setting.html">Billing <span class="nav-tag">3</span> </a></li>
</ul>
</li>
<li>
<a href="profile.html">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
</svg>
<span> My Profile </span> </a>
</li>
<li>
<hr class="my-2">
</li>
<li>
<a href="form-login.html">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1" />
</svg>
<span> Logout </span> </a>
</li>
</ul>
</div>
</div>
<div class="main_content">
<header>
<div class="header_inner">
<div class="left-side">
<!-- Logo -->
<div id="logo" class=" uk-hidden@s">
<a href="home.html">
<img src="assets/images/logo-mobile.png" alt="">
<img src="assets/images/logo-mobile-light.png" class="logo_inverse">
</a>
</div>
<div class="triger" uk-toggle="target: #wrapper ; cls: sidebar-active">
<i class="uil-bars"></i>
</div>
<div class="header_search">
<input type="text" placeholder="Search..">
<div class="icon-search">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
</svg>
</div>
</div>
</div>
<div class="right-side lg:pr-4">
<!-- upload -->
<a href="#"
class="bg-pink-500 flex font-bold hidden hover:bg-pink-600 hover:text-white inline-block items-center lg:block max-h-10 mr-4 px-4 py-2 rounded shado text-white">
<ion-icon name="add-circle" class="-mb-1
mr-1 opacity-90 text-xl uilus-circle"></ion-icon> Upload
</a>
<!-- upload dropdown box -->
<div uk-dropdown="pos: top-right;mode:click ; animation: uk-animation-slide-bottom-small" class="header_dropdown">
<!-- notivication header -->
<div class="px-4 py-3 -mx-5 -mt-4 mb-5 border-b">
<h4>Upload Video</h4>
</div>
<!-- notification contents -->
<div class="flex justify-center flex-center text-center dark:text-gray-300">
<div class="flex flex-col choose-upload text-center">
<div class="bg-gray-100 border-2 border-dashed flex flex-col h-24 items-center justify-center relative w-full rounded-lg dark:bg-gray-800 dark:border-gray-600">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-12">
<path d="M5.5 13a3.5 3.5 0 01-.369-6.98 4 4 0 117.753-1.977A4.5 4.5 0 1113.5 13H11V9.413l1.293 1.293a1 1 0 001.414-1.414l-3-3a1 1 0 00-1.414 0l-3 3a1 1 0 001.414 1.414L9 9.414V13H5.5z" />
<path d="M9 13h2v5a1 1 0 11-2 0v-5z" />
</svg>
</div>
<p class="my-3 leading-6"> Do you have a video wants to share us <br> please upload her ..
</p>
<div uk-form-custom>
<input type="file">
<a href="#" class="button soft-warning small"> Choose file</a>
</div>
<a href="#" class="uk-text-muted mt-3 uk-link"
uk-toggle="target: .choose-upload ; animation: uk-animation-slide-right-small, uk-animation-slide-left-medium; queued: true">
Or Import Video </a>
</div>
<div class="uk-flex uk-flex-column choose-upload" hidden>
<div class="mx-auto flex flex-col h-24 items-center justify-center relative w-full rounded-lg">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-12">
<path fill-rule="evenodd" d="M2 9.5A3.5 3.5 0 005.5 13H9v2.586l-1.293-1.293a1 1 0 00-1.414 1.414l3 3a1 1 0 001.414 0l3-3a1 1 0 00-1.414-1.414L11 15.586V13h2.5a4.5 4.5 0 10-.616-8.958 4.002 4.002 0 10-7.753 1.977A3.5 3.5 0 002 9.5zm9 3.5H9V8a1 1 0 012 0v5z" clip-rule="evenodd" />
</svg>
</div>
<p class="my-3 leading-6"> Import videos from YouTube <br> Copy / Paste your video link here </p>
<form class="uk-grid-small" uk-grid>
<div class="uk-width-expand">
<input type="text" class="uk-input uk-form-small bg-gray-200 dark:bg-gray-700" style="box-shadow:none" placeholder="Paste link">
</div>
<div class="uk-width-auto"> <button type="submit" class="button soft-warning -ml-2">
Import </button> </div>
</form>
<a href="#" class="uk-text-muted mt-3 uk-link"
uk-toggle="target: .choose-upload ; animation: uk-animation-slide-left-small, uk-animation-slide-right-medium; queued: true">
Or Upload Video </a>
</div>
</div>
<div class="px-4 py-3 -mx-5 -mb-4 mt-5 border-t text-sm dark:border-gray-500 dark:text-gray-500">
Your Video size Must be Maxmium 999MB
</div>
</div>
<!-- Notification -->
<a href="#" class="header-links-item">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9" />
</svg>
</a>
<div uk-drop="mode: click;offset: 4" class="header_dropdown">
<h4
class="-mt-5 -mx-5 bg-gradient-to-t from-gray-100 to-gray-50 border-b font-bold px-6 py-3">
Notification </h4>
<ul class="dropdown_scrollbar" data-simplebar>
<li>
<a href="#">
<div class="drop_avatar"> <img src="assets/images/avatars/avatar-1.jpg" alt="">
</div>
<div class="drop_content">
<p> <strong>Adrian Mohani</strong> Lorem ipsum dolor cursus
<span class="text-link"> Adipiscing massa convallis </span>
</p>
<span class="time-ago"> 2 hours ago </span>
</div>
</a>
</li>
<li>
<a href="#">
<div class="drop_avatar"> <img src="assets/images/avatars/avatar-2.jpg" alt="">
</div>
<div class="drop_content">
<p>
<strong>Stella Johnson</strong> Nonummy nibh euismod
<span class="text-link"> Imperdiet doming </span>
</p>
<span class="time-ago"> 9 hours ago </span>
</div>
</a>
</li>
<li>
<a href="#">
<div class="drop_avatar"> <img src="assets/images/avatars/avatar-3.jpg" alt="">
</div>
<div class="drop_content">
<p>
<strong>Alex Dolgove</strong> Lorem ipsum dolor cursus
<span class="text-link"> Adipiscing massa convallis </span>
</p>
<span class="time-ago"> 12 hours ago </span>
</div>
</a>
</li>
<li>
<a href="#">
<div class="drop_avatar"> <img src="assets/images/avatars/avatar-1.jpg" alt="">
</div>
<div class="drop_content">
<p>
<strong>Stella Johnson</strong> Nonummy nibh euismod
<span class="text-link"> Imperdiet doming </span>
</p>
<span class="time-ago"> Yesterday </span>
</div>
</a>
</li>
<li>
<a href="#">
<div class="drop_avatar"> <img src="assets/images/avatars/avatar-3.jpg" alt="">
</div>
<div class="drop_content">
<p>
<strong>Alex Dolgove</strong> Lorem ipsum dolor cursus
<span class="text-link"> Adipiscing massa convallis </span>
</p>
<span class="time-ago"> 12 hours ago </span>
</div>
</a>
</li>
</ul>
<a href="#" class="see-all">See all</a>
</div>
<!-- Messages -->
<a href="#" class="header-links-item">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M7 8h10M7 12h4m1 8l-4-4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-3l-4 4z" />
</svg>
</a>
<div uk-drop="mode: click;offset: 4" class="header_dropdown">
<h4
class="-mt-5 -mx-5 bg-gradient-to-t from-gray-100 to-gray-50 border-b font-bold px-6 py-3">
Messages </h4>
<ul class="dropdown_scrollbar" data-simplebar>
<li>
<a href="#">
<div class="drop_avatar"> <img src="assets/images/avatars/avatar-1.jpg" alt="">
</div>
<div class="drop_content">
<strong> John menathon </strong> <time> 6:43 PM</time>
<p> Lorem ipsum dolor sit amet, consectetur </p>
</div>
</a>
</li>
<li>
<a href="#">
<div class="drop_avatar"> <img src="assets/images/avatars/avatar-2.jpg" alt="">
</div>
<div class="drop_content">
<strong> Zara Ali </strong> <time>12:43 PM</time>
<p> Sediam nonummy nibh euismod tincidunt laoreet dolore </p>
</div>
</a>
</li>
<li>
<a href="#">
<div class="drop_avatar"> <img src="assets/images/avatars/avatar-3.jpg" alt="">
</div>
<div class="drop_content">
<strong> Mohamed Ali </strong> <time> Wed </time>
<p> Lorem ipsum dolor sit amet, consectetur </p>
</div>
</a>
</li>
<li>
<a href="#">
<div class="drop_avatar"> <img src="assets/images/avatars/avatar-1.jpg" alt="">
</div>
<div class="drop_content">
<strong> John menathon </strong> <time> Sun</time>
<p> Namliber tempor cumsoluta nobis eleifend option adipiscing </p>
</div>
</a>
</li>
<li>
<a href="#">
<div class="drop_avatar"> <img src="assets/images/avatars/avatar-2.jpg" alt="">
</div>
<div class="drop_content">
<strong> Zara Ali </strong> <time> Fri</time>
<p> Lorem ipsum dolor sit amet, consectetur </p>
</div>
</a>
</li>
<li>
<a href="#">
<div class="drop_avatar"> <img src="assets/images/avatars/avatar-3.jpg" alt="">
</div>
<div class="drop_content">
<strong> Mohamed Ali </strong> <time>1 Week ago</time>
<p> Sediam nonummy nibh euismod tincidunt laoreet dolore </p>
</div>
</a>
</li>
</ul>
<a href="#" class="see-all">See all</a>
</div>
<!-- profile -->
<a href="#">
<img src="assets/images/avatars/avatar-2.jpg" class="header-avatar" alt="">
</a>
<div uk-drop="mode: click;offset:9" class="header_dropdown profile_dropdown border-t">
<ul>
<li><a href="#"> Account setting </a> </li>
<li><a href="#"> Payments </a> </li>
<li><a href="#"> Help </a> </li>
<li><a href="form-login.html"> Log Out</a></li>
</ul>
</div>
</div>
</div>
</header>
<div class="container m-auto">
<div class="flex justify-between items-baseline lg:mr-8 uk-visible@s">
<h1 class="font-extrabold leading-none mb-6 lg:text-2xl text-lg text-gray-900 tracking-tight"> Stories </h1>
<a href="#" class="text-blue-400 hover:text-blue-500"> See all</a>
</div>
<!-- users-->
<div class="relative uk-visible@s" uk-slider="finite: true">
<a class="-left-2 absolute bg-white bottom-1/2 flex items-center justify-center p-2 rounded-full shadow text-xl w-9 z-10 dark:bg-gray-800 dark:text-white"
href="#" uk-slider-item="previous"> <i class="icon-feather-chevron-left"></i> </a>
<a class="absolute bg-white bottom-1/2 flex items-center justify-center p-2 right-4 rounded-full shadow text-xl w-9 z-10 dark:bg-gray-800 dark:text-white"
href="#" uk-slider-item="next"> <i class="icon-feather-chevron-right"></i></a>
<div class="uk-slider-container pb-3 lg:mr-3">
<ul class="uk-slider-items uk-grid uk-grid-small">
<li>
<div
class="relative bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-1">
<img src="assets/images/avatars/avatar-2.jpg"
class="w-20 h-20 rounded-full border-2 border-white bg-gray-200">
<a href="#"
class=" bg-gray-400 p-2 rounded-full w-8 h-8 flex justify-center items-center text-white border-4 border-white absolute right-2 bottom-0 bg-blue-600">
+ </a>
</div>
<a href="profile.html" class="block font-medium text-center text-gray-500 text-x truncate w-24">
You </a>
</li>
<li>
<a href="#story-view" uk-toggle>
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-1">
<img src="assets/images/avatars/avatar-1.jpg"
class="w-20 h-20 rounded-full border-2 border-white bg-gray-200">
</div>
</a>
<a href="profile.html" class="block font-medium text-center text-gray-500 text-x truncate w-24">
Dennis </a>
</li>
<li>
<a href="#story-view" uk-toggle>
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-1">
<img src="assets/images/avatars/avatar-3.jpg"
class="w-20 h-20 rounded-full border-2 border-white bg-gray-200">
</div>
</a>
<a href="profile.html" class="block font-medium text-center text-gray-500 text-x truncate w-24">
Jonathan </a>
</li>
<li>
<a href="#story-view" uk-toggle>
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-1">
<img src="assets/images/avatars/avatar-4.jpg"
class="w-20 h-20 rounded-full border-2 border-white bg-gray-200">
</div>
</a>
<a href="profile.html" class="block font-medium text-center text-gray-500 text-x truncate w-24">
Stella </a>
</li>
<li>
<a href="#story-view" uk-toggle>
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-1">
<img src="assets/images/avatars/avatar-5.jpg"
class="w-20 h-20 rounded-full border-2 border-white bg-gray-200">
</div>
</a>
</a>
<a href="profile.html" class="block font-medium text-center text-gray-500 text-x truncate w-24">
Alex </a>
</li>
<li>
<a href="#story-view" uk-toggle>
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-1">
<img src="assets/images/avatars/avatar-6.jpg"
class="w-20 h-20 rounded-full border-2 border-white bg-gray-200">
</div>
<a href="profile.html"
class="block font-medium text-center text-gray-500 text-x truncate w-24"> Adrian
</a>
</li>
<li>
<a href="#story-view" uk-toggle>
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-1">
<img src="assets/images/avatars/avatar-1.jpg"
class="w-20 h-20 rounded-full border-2 border-white bg-gray-200">
</div>
</a>
<a href="profile.html" class="block font-medium text-center text-gray-500 text-x truncate w-24">
Jonathan </a>
</li>
<li>
<a href="#story-view" uk-toggle>
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-1">
<img src="assets/images/avatars/avatar-2.jpg"
class="w-20 h-20 rounded-full border-2 border-white bg-gray-200">
</div>
</a>
<a href="profile.html" class="block font-medium text-center text-gray-500 text-x truncate w-24">
Dennis </a>
</li>
<li>
<a href="#story-view" uk-toggle>
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-1">
<img src="assets/images/avatars/avatar-3.jpg"
class="w-20 h-20 rounded-full border-2 border-white bg-gray-200">
</div>
</a>
<a href="profile.html" class="block font-medium text-center text-gray-500 text-x truncate w-24">
Stella </a>
</li>
<li>
<a href="#story-view" uk-toggle>
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-1">
<img src="assets/images/avatars/avatar-4.jpg"
class="w-20 h-20 rounded-full border-2 border-white bg-gray-200">
</div>
</a>
<a href="profile.html" class="block font-medium text-center text-gray-500 text-x truncate w-24">
Adrian </a>
</li>
<li>
<a href="#story-view" uk-toggle>
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-1">
<img src="assets/images/avatars/avatar-5.jpg"
class="w-20 h-20 rounded-full border-2 border-white bg-gray-200">
</div>
</a>
<a href="profile.html" class="block font-medium text-center text-gray-500 text-x truncate w-24">
Dennis </a>
</li>
</ul>
</div>
</div>
<div class="flex justify-between items-baseline uk-visible@s">
<h1 class="font-extrabold leading-none mb-6 mt-8 lg:text-2xl text-lg text-gray-900 tracking-tight"> Suggestion
</h1>
<a href="#" class="text-blue-400 hover:text-blue-500"> See all</a>
</div>
<div class="relative" uk-slider="finite: true">
<div class="uk-slider-container pb-3 -ml-3">
<ul
class="uk-slider-items uk-child-width-1-2 uk-child-width-1-3@s uk-child-width-1-4@m uk-grid-small">
<li>
<div class="bg-gray-200 max-w-full lg:h-64 h-52 rounded-lg relative overflow-hidden">
<a href="profile.html">
<img src="assets/images/post/img7.jpg"
class="w-full h-full absolute object-cover inset-0">
</a>
<a href="#" class="absolute right-3 top-3 bg-black bg-opacity-60 rounded-full"
data-tippy-placement="left" title="Hide">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor" class="fill-current h-6 m-1.5 text-white w-6">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12" />
</svg>
</a>
<div class="absolute bottom-0 p-4 w-full custom-overly1">
<div class="flex justify-between align-bottom flex-wrap text-white">
<div class="w-full truncate text-lg"> John Michael </div>
<div class="leading-5 text-sm">
<div> 21, Turkey </div>
</div>
<a href="#"
class="absolute right-3 bottom-3 rounded-full bg-gradient-to-tr from-blue-500 to-purple-700">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"
fill="currentColor" class="fill-current h-6 m-1.5 text-white w-6">
<path
d="M8 9a3 3 0 100-6 3 3 0 000 6zM8 11a6 6 0 016 6H2a6 6 0 016-6zM16 7a1 1 0 10-2 0v1h-1a1 1 0 100 2h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1V7z" />
</svg>
</a>
</div>
</div>
</div>
</li>
<li>
<div class="bg-gray-200 max-w-full lg:h-64 h-52 rounded-lg relative overflow-hidden">
<a href="profile.html">
<img src="assets/images/avatars/avatar-6.jpg"
class="w-full h-full absolute object-cover inset-0">
</a>
<a href="#" class="absolute right-3 top-3 bg-black bg-opacity-60 rounded-full"
data-tippy-placement="left" title="Hide">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor" class="fill-current h-6 m-1.5 text-white w-6">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12" />
</svg>
</a>
<div class="absolute bottom-0 p-4 w-full custom-overly1">
<div class="flex justify-between align-bottom flex-wrap text-white">
<div class="w-full truncate text-lg"> Monroe Parker </div>
<div class="leading-5 text-sm">
<div> 19, Austria </div>
</div>
<a href="#"
class="absolute right-3 bottom-3 rounded-full bg-gradient-to-tr from-blue-500 to-purple-700">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"
fill="currentColor" class="fill-current h-6 m-1.5 text-white w-6">
<path
d="M8 9a3 3 0 100-6 3 3 0 000 6zM8 11a6 6 0 016 6H2a6 6 0 016-6zM16 7a1 1 0 10-2 0v1h-1a1 1 0 100 2h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1V7z" />
</svg>
</a>
</div>
</div>
</div>
</li>
<li>
<div class="bg-gray-200 max-w-full lg:h-64 h-52 rounded-lg relative overflow-hidden">
<a href="profile.html">
<img src="assets/images/avatars/avatar-4.jpg"
class="w-full h-full absolute object-cover inset-0">
</a>
<a href="#" class="absolute right-3 top-3 bg-black bg-opacity-60 rounded-full"
data-tippy-placement="left" title="Hide">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor" class="fill-current h-6 m-1.5 text-white w-6">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12" />
</svg>
</a>
<div class="absolute bottom-0 p-4 w-full custom-overly1">
<div class="flex justify-between align-bottom flex-wrap text-white">
<div class="w-full truncate text-lg"> Martin Gray </div>
<div class="leading-5 text-sm">
<div> 19, New York </div>
</div>
<a href="#"
class="absolute right-3 bottom-3 rounded-full bg-gradient-to-tr from-blue-500 to-purple-700">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"
fill="currentColor" class="fill-current h-6 m-1.5 text-white w-6">
<path
d="M8 9a3 3 0 100-6 3 3 0 000 6zM8 11a6 6 0 016 6H2a6 6 0 016-6zM16 7a1 1 0 10-2 0v1h-1a1 1 0 100 2h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1V7z" />
</svg>
</a>
</div>
</div>
</div>
</li>
<li>
<div class="bg-gray-200 max-w-full lg:h-64 h-52 rounded-lg relative overflow-hidden">
<a href="profile.html">
<img src="assets/images/avatars/avatar-7.jpg"
class="w-full h-full absolute object-cover inset-0">
</a>
<a href="#" class="absolute right-3 top-3 bg-black bg-opacity-60 rounded-full"
data-tippy-placement="left" title="Hide">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor" class="fill-current h-6 m-1.5 text-white w-6">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12" />
</svg>
</a>
<div class="absolute bottom-0 p-4 w-full custom-overly1">
<div class="flex justify-between align-bottom flex-wrap text-white">
<div class="w-full truncate text-lg"> Jesse Stevens</div>
<div class="leading-5 text-sm">
<div> 19, London </div>
</div>
<a href="#"
class="absolute right-3 bottom-3 rounded-full bg-gradient-to-tr from-blue-500 to-purple-700">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"
fill="currentColor" class="fill-current h-6 m-1.5 text-white w-6">
<path
d="M8 9a3 3 0 100-6 3 3 0 000 6zM8 11a6 6 0 016 6H2a6 6 0 016-6zM16 7a1 1 0 10-2 0v1h-1a1 1 0 100 2h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1V7z" />
</svg>
</a>
</div>
</div>
</div>
</li>
<li>
<div class="bg-gray-200 max-w-full lg:h-64 h-52 rounded-lg relative overflow-hidden">
<a href="profile.html">
<img src="assets/images/avatars/avatar-1.jpg"
class="w-full h-full absolute object-cover inset-0">
</a>
<a href="#" class="absolute right-3 top-3 bg-black bg-opacity-60 rounded-full"
data-tippy-placement="left" title="Hide">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor" class="fill-current h-6 m-1.5 text-white w-6">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12" />
</svg>
</a>
<div class="absolute bottom-0 p-4 w-full custom-overly1">
<div class="flex justify-between align-bottom flex-wrap text-white">
<div class="w-full truncate text-lg"> James Lewis </div>
<div class="leading-5 text-sm">
<div> 19, Austria </div>
</div>
<a href="#"
class="absolute right-3 bottom-3 rounded-full bg-gradient-to-tr from-blue-500 to-purple-700">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"
fill="currentColor" class="fill-current h-6 m-1.5 text-white w-6">
<path
d="M8 9a3 3 0 100-6 3 3 0 000 6zM8 11a6 6 0 016 6H2a6 6 0 016-6zM16 7a1 1 0 10-2 0v1h-1a1 1 0 100 2h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1V7z" />
</svg>
</a>
</div>
</div>
</div>
</li>
</ul>
<a class="uk-position-center-left uk-position-small p-3.5 bg-white rounded-full w-10 h-10 flex justify-center items-center -mx-4 mb-6 shadow-md dark:bg-gray-800 dark:text-white"
href="#" uk-slidenav-previous uk-slider-item="previous"></a>
<a class="uk-position-center-right uk-positsion-small p-3.5 bg-white rounded-full w-10 h-10 flex justify-center items-center -mx-4 shadow-md dark:bg-gray-800 dark:text-white"
href="#" uk-slidenav-next uk-slider-item="next"></a>
</div>
</div>
<h1 class="font-extrabold leading-none mb-6 mt-8 lg:text-2xl text-lg text-gray-900 tracking-tight"> Explore </h1>
<div class="mt-6 grid lg:grid-cols-3 grid-cols-2 gap-3 hover:text-yellow-700 uk-link-reset">
<div>
<div
class="bg-red-400 max-w-full lg:h-60 h-48 rounded-lg relative overflow-hidden shadow uk-transition-toggle">
<a href="#story-modal" uk-toggle>
<img src="assets/images/post/img8.jpg"
class="w-full h-full absolute object-cover inset-0">
</a>
<a href="#story-modal" uk-toggle
class="absolute flex h-full items-center justify-center w-8 w-full uk-transition-scale-up bg-black bg-opacity-10">
<img src="assets/images/icon-play.svg" alt="" class="w-16 h-16 -mt-5">
</a>
<div
class="flex flex-1 items-center absolute bottom-0 w-full p-3 text-white custom-overly1 uk-transition-slide-bottom-medium">
<a href="profile.html" class="lg:flex flex-1 items-center hidden">
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-0.5 mr-2">
<img src="assets/images/avatars/avatar-2.jpg"
class="bg-gray-200 border border-white rounded-full w-8">
</div>
<div> James Lewis </div>
</a>
<div class="flex space-x-2 flex-1 lg:flex-initial justify-around">
<a href="#"> <i class="uil-heart"></i> 150 </a>
<a href="#"> <i class="uil-heart"></i> 30 </a>
</div>
</div>
</div>
</div>
<div>
<div
class="bg-green-400 max-w-full lg:h-72 h-48 rounded-lg relative overflow-hidden shadow uk-transition-toggle">
<a href="#story-modal" uk-toggle>
<img src="assets/images/post/img2.jpg"
class="w-full h-full absolute object-cover inset-0">
</a>
<div
class="flex flex-1 items-center absolute bottom-0 w-full p-3 text-white custom-overly1 uk-transition-slide-bottom-medium">
<a href="profile.html" class="lg:flex flex-1 items-center hidden">
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-0.5 mr-2">
<img src="assets/images/avatars/avatar-2.jpg"
class="bg-gray-200 border border-white rounded-full w-8">
</div>
<div> James Lewis </div>
</a>
<div class="flex space-x-2 flex-1 lg:flex-initial justify-around">
<a href="#"> <i class="uil-heart"></i> 150 </a>
<a href="#"> <i class="uil-heart"></i> 30 </a>
</div>
</div>
</div>
</div>
<div>
<div
class="bg-yellow-400 max-w-full lg:h-60 h-48 rounded-lg relative overflow-hidden shadow uk-transition-toggle">
<a href="#story-modal" uk-toggle>
<img src="assets/images/post/img3.jpg"
class="w-full h-full absolute object-cover inset-0">
</a>
<a href="#story-modal" uk-toggle
class="absolute flex h-full items-center justify-center w-8 w-full uk-transition-scale-up bg-black bg-opacity-10">
<img src="assets/images/icon-play.svg" alt="" class="w-16 h-16 -mt-5">
</a>
<div
class="flex flex-1 items-center absolute bottom-0 w-full p-3 text-white custom-overly1 uk-transition-slide-bottom-medium">
<a href="profile.html" class="lg:flex flex-1 items-center hidden">
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-0.5 mr-2">
<img src="assets/images/avatars/avatar-2.jpg"
class="bg-gray-200 border border-white rounded-full w-8">
</div>
<div> John Michael </div>
</a>
<div class="flex space-x-2 flex-1 lg:flex-initial justify-around">
<a href="#"> <i class="uil-heart"></i> 150 </a>
<a href="#"> <i class="uil-heart"></i> 30 </a>
</div>
</div>
</div>
</div>
<div>
<div
class="bg-pink-400 max-w-full lg:h-72 h-48 rounded-lg relative overflow-hidden shadow uk-transition-toggle lg:-mt-12">
<a href="#story-modal" uk-toggle>
<img src="assets/images/post/img7.jpg"
class="w-full h-full absolute object-cover inset-0">
</a>
<div
class="flex flex-1 items-center absolute bottom-0 w-full p-3 text-white custom-overly1 uk-transition-slide-bottom-medium">
<a href="profile.html" class="lg:flex flex-1 items-center hidden">
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-0.5 mr-2">
<img src="assets/images/avatars/avatar-2.jpg"
class="bg-gray-200 border border-white rounded-full w-8">
</div>
<div> Monroe Parker </div>
</a>
<div class="flex space-x-2 flex-1 lg:flex-initial justify-around">
<a href="#"> <i class="uil-heart"></i> 150 </a>
<a href="#"> <i class="uil-heart"></i> 30 </a>
</div>
</div>
</div>
</div>
<div>
<div
class="bg-purple-400 max-w-full lg:h-60 h-48 rounded-lg relative overflow-hidden shadow uk-transition-toggle">
<a href="#story-modal" uk-toggle>
<img src="assets/images/post/img5.jpg"
class="w-full h-full absolute object-cover inset-0">
</a>
<div
class="flex flex-1 items-center absolute bottom-0 w-full p-3 text-white custom-overly1 uk-transition-slide-bottom-medium">
<a href="profile.html" class="lg:flex flex-1 items-center hidden">
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-0.5 mr-2">
<img src="assets/images/avatars/avatar-2.jpg"
class="bg-gray-200 border border-white rounded-full w-8">
</div>
<div> Martin Gray </div>
</a>
<div class="flex space-x-2 flex-1 lg:flex-initial justify-around">
<a href="#"> <i class="uil-heart"></i> 150 </a>
<a href="#"> <i class="uil-heart"></i> 30 </a>
</div>
</div>
</div>
</div>
<div>
<div
class="bg-pink-400 max-w-full lg:h-72 h-48 rounded-lg relative overflow-hidden shadow uk-transition-toggle lg:-mt-12">
<a href="#story-modal" uk-toggle>
<img src="assets/images/post/img1.jpg"
class="w-full h-full absolute object-cover inset-0">
</a>
<div
class="flex flex-1 items-center absolute bottom-0 w-full p-3 text-white custom-overly1 uk-transition-slide-bottom-medium">
<a href="profile.html" class="lg:flex flex-1 items-center hidden">
<div
class="bg-gradient-to-tr from-yellow-600 to-pink-600 p-1 rounded-full transform -rotate-2 hover:rotate-3 transition hover:scale-105 m-0.5 mr-2">
<img src="assets/images/avatars/avatar-2.jpg"
class="bg-gray-200 border border-white rounded-full w-8">
</div>
<div> Jesse Stevens </div>
</a>
<div class="flex space-x-2 flex-1 lg:flex-initial justify-around">
<a href="#"> <i class="uil-heart"></i> 150 </a>
<a href="#"> <i class="uil-heart"></i> 30 </a>
</div>
</div>
</div>
</div>
</div>
<div class="my-3 grid lg:grid-cols-4 grid-cols-2 gap-3 hover:text-yellow-700 uk-link-reset">
<div>
<div
class="bg-red-400 max-w-full lg:h-56 h-48 rounded-lg relative overflow-hidden shadow uk-transition-toggle">
<a href="#story-modal" uk-toggle>
<img src="assets/images/post/img2.jpg" class="w-full h-full absolute object-cover inset-0 scale-150 transform">
</a>
<div
class="flex flex-1 items-center absolute bottom-0 w-full p-3 text-white custom-overly1 uk-transition-slide-bottom-medium">
<a href="profile.html" class="lg:flex flex-1 items-center hidden">
<div> James Lewis </div>
</a>
<div class="flex space-x-2 flex-1 lg:flex-initial justify-around">
<a href="#"> <i class="uil-heart"></i> 150 </a>
<a href="#"> <i class="uil-heart"></i> 30 </a>
</div>
</div>
</div>
</div>
<div>
<div
class="bg-yellow-400 max-w-full lg:h-56 h-48 rounded-lg relative overflow-hidden shadow uk-transition-toggle">
<a href="#story-modal" uk-toggle>
<img src="assets/images/post/img6.jpg" class="w-full h-full absolute object-cover inset-0 scale-150 transform">
</a>
<div
class="flex flex-1 items-center absolute bottom-0 w-full p-3 text-white custom-overly1 uk-transition-slide-bottom-medium">
<a href="#" class="lg:flex flex-1 items-center hidden">
<div> James Lewis </div>
</a>
<div class="flex space-x-2 flex-1 lg:flex-initial justify-around">
<a href="#"> <i class="uil-heart"></i> 150 </a>
<a href="#"> <i class="uil-heart"></i> 30 </a>
</div>
</div>
</div>
</div>
<div>
<div
class="bg-green-400 max-w-full lg:h-56 h-48 rounded-lg relative overflow-hidden shadow uk-transition-toggle">
<a href="#story-modal" uk-toggle>
<img src="assets/images/avatars/avatar-1.jpg" class="w-full h-full absolute object-cover inset-0">
</a>
<div
class="flex flex-1 items-center absolute bottom-0 w-full p-3 text-white custom-overly1 uk-transition-slide-bottom-medium">
<a href="#" class="lg:flex flex-1 items-center hidden">
<div> James Lewis </div>
</a>
<div class="flex space-x-2 flex-1 lg:flex-initial justify-around">
<a href="#"> <i class="uil-heart"></i> 150 </a>
<a href="#"> <i class="uil-heart"></i> 30 </a>
</div>
</div>
</div>
</div>
<div>
<div
class="bg-blue-400 max-w-full lg:h-56 h-48 rounded-lg relative overflow-hidden shadow uk-transition-toggle">
<a href="#story-modal" uk-toggle>
<img src="assets/images/post/img7.jpg" class="w-full h-full absolute object-cover inset-0">
</a>
<div
class="flex flex-1 items-center absolute bottom-0 w-full p-3 text-white custom-overly1 uk-transition-slide-bottom-medium">
<a href="#" class="lg:flex flex-1 items-center hidden">
<div> James Lewis </div>
</a>