-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1261 lines (1175 loc) · 74.8 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
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">
<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> Light || Dark Mode </title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css" />
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<link rel="icon" href="Images/icon.png" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- ========== HEADER ========== -->
<!-- ========== HEADER ========== -->
<header
class="flex flex-wrap sm:justify-start sm:flex-nowrap z-50 w-full bg-white lg:text-lg py-3 sm:py-0 dark:bg-slate-900">
<nav class="relative max-w-[85rem] w-full mx-auto px-4 sm:flex sm:items-center sm:justify-between sm:px-6 lg:px-8"
aria-label="Global">
<div class="flex items-center justify-between">
<a class="flex-none text-xl font-semibold theme-color" href="/" aria-label="Brand">Black Rabbit</a>
<!-- <button id="themeToggle" type="button"
class="ml-4 hs-dark-mode-active:block hs-dark-mode group flex items-center text-gray-600 font-medium dark:text-gray-400"
data-hs-theme-click-value="light">
<svg class="flex-shrink-0 w-4 h-4" xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<circle cx="12" cy="12" r="4" />
<path d="M12 8a2 2 0 1 0 4 4" />
<path d="M12 2v2" />
<path d="M12 20v2" />
<path d="m4.93 4.93 1.41 1.41" />
<path d="m17.66 17.66 1.41 1.41" />
<path d="M2 12h2" />
<path d="M20 12h2" />
<path d="m6.34 17.66-1.41 1.41" />
<path d="m19.07 4.93-1.41 1.41" />
</svg>
</button> -->
<div class="sm:hidden flex">
<a class="font-medium text-white/[.8] hover:text-gray sm:py-6 mr-4" href="/js/blogs.html">Blogs</a>
</a>
<!-- <button type="button"
class="py-2 px-3 stndrd-btn inline-flex items-center gap-x-2 lg:text-lg font-semibold rounded-lg border border-transparent bg-red-600 text-white disabled:opacity-50 disabled:pointer-events-none dark:focus:outline-none dark:focus:ring-1">
Join Now
</button> -->
<button id="themeToggle" type="button"
class="ml-4 hs-dark-mode-active:hidden block hs-dark-mode group flex items-center text-gray-600 font-medium dark:text-gray-400"
data-hs-theme-click-value="dark">
<svg class="flex-shrink-0 w-4 h-4" xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" />
</svg>
</button>
</div>
</div>
<div class="hs-collapse hidden overflow-hidden transition-all duration-300 basis-full grow sm:block">
<div
class="flex flex-col gap-y-4 gap-x-0 mt-5 sm:flex-row sm:items-center sm:justify-end sm:gap-y-0 sm:gap-x-7 sm:mt-0 sm:ps-7">
<a class="font-medium sm:py-6 mr-4" href="#" aria-current="page">Landing</a>
<a class="font-medium text-white/[.8] hover:text-gray sm:py-6 mr-4" href="#">Account</a>
<a class="font-medium text-white/[.8] hover:text-gray sm:py-6 mr-4" href="#">Work</a>
<a class="font-medium text-white/[.8] hover:text-gray sm:py-6 mr-4" href="/js/blogs.html">Blogs</a>
</a>
<button id="themeToggleWeb" type="button"
class="ml-4 hs-dark-mode-active:hidden block hs-dark-mode group flex items-center text-gray-600 font-medium dark:text-gray-400"
data-hs-theme-click-value="dark">
<svg class="flex-shrink-0 w-4 h-4" xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" />
</svg>
</button>
</div>
</div>
</nav>
</header>
<!-- Hero -->
<div class="overflow-hidden cover-screen">
<div class="w-full mx-auto px-4 sm:px-2 lg:px-8 mt-20">
<!-- Grid -->
<div class="lg:grid lg:grid-cols-7 lg:gap-x-8 xl:gap-x-12 lg:items-center pl-5">
<div class="lg:col-span-4 sm:col-span-12">
<h1 class="block text-3xl font-bold text-gray sm:text-4xl md:text-5xl lg:text-6xl dark:text-white">Build Better Products</h1>
<p class="mt-3 text-lg text-gray dark:text-gray-400">Introducing a new way for your brand to reach the creative community.</p>
<div class="mt-2">
<h2 class="text-2xl font-bold md:text-3xl md:leading-tight dark:text-white">Subscribe to <span
class="theme-color">Newsletter</span></h2>
</div>
<div class="mt-5 lg:mt-8 flex flex-col items-center gap-2 sm:flex-row sm:gap-2">
<div class="w-full">
<label for="hero-input" class="sr-only">Search</label>
<input type="text" id="hero-input" name="hero-input" class="block py-3 px-4 block w-full subscribe xl:min-w-[18rem] border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 disabled:opacity-50 disabled:pointer-events-none dark:bg-slate-900 dark:border-gray-700 dark:text-gray-400 dark:focus:ring-gray-600" placeholder="Enter work email">
</div>
<a class="w-full block sm:w-auto stndrd-btn whitespace-nowrap py-3 px-4 inline-flex justify-center items-center gap-x-2 lg:text-lg font-semibold rounded-lg border border-transparent bg-blue-600 text-white hover:bg-blue-700 disabled:opacity-50 disabled:pointer-events-none dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
Subscribe
</a>
</div>
<!-- Brands -->
<!-- End Brands -->
</div>
<!-- End Col -->
<div class="lg:col-span-3 mt-10 lg:mt-0 coin">
<img class="w-full rounded-xl" src="./Images/ezgif.com-video-to-gif-converter.gif" alt="Image Description">
</div>
<!-- End Col -->
</div>
<!-- End Grid -->
</div></div>
<!-- End Hero -->
<!-- ========== END HEADER ========== -->
<!-- ========== END HEADER ========== -->
<div class="overflow-hidden">
<div class="max-w-[85rem] mx-auto px-4 sm:px-6 lg:px-8 py-20">
<div class="relative mx-auto max-w-4xl grid space-y-5 sm:space-y-10">
<!-- Title -->
<div class="text-center">
<h1 class="text-3xl text-grey font-bold sm:text-5xl lg:text-6xl lg:leading-tight dark:text-white">
The revolution for long term <span class="theme-color">crypto investors begin here</span>
</h1>
<p class="text-xl font-semibold text-gray tracking-wide uppercase mb-3 dark:text-white mt-2">
We are Industry-leading crypto research & analysis firm on a mission to make the world smarter, happier and
richer.
</p>
</div>
<!-- End Title -->
</div>
</div>
</div>
<div class="media-container">
<video width="90%" height="320" controls class="rounded-md">
<source src="https://www.youtube.com/watch?v=UFOgRmI6bg0&t=123s">
Your browser does not support the video tag.
</video>
</div>
<div class="mx-auto max-w-4xl grid space-y-5 p-2 sm:space-y-10 text-center lg:text-2xl mb-5 mt-5">
We specialize in researching crytocurrency, a unique asset class. Our mission is to help traditional finance enter
the digital asset world using our special knowledge and data.
</div>
<div class="max-w-[85rem] px-4 py-8 sm:px-8 lg:px-8 lg:py-8 mx-auto services-block heading-margin">
<div class="mb-5 block-title">
<h2 class="text-2xl font-bold md:text-4xl md:leading-tight dark:text-white ">BlackRabbit <span
class="theme-color">Services</span>
</h2>
</div>
<div class="grid sm:grid-cols-2 lg:grid-cols-3 items-center gap-6 md:gap-10 block-content">
<!-- Icon Block -->
<div class="service-card">
<div
class="relative flex justify-center items-center w-12 h-12 bg-white rounded-xl before:absolute before:-inset-px before:-z-[1] before:bg-gradient-to-br before:from-blue-600 before:via-transparent before:to-violet-600 before:rounded-xl dark:bg-slate-900">
<svg class="flex-shrink-0 w-6 h-6 text-orange-600 dark:text-blue-500" xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<rect width="10" height="14" x="3" y="8" rx="2" />
<path d="M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4" />
<path d="M8 18h.01" />
</svg>
</div>
<div class="mt-2">
<h3 class="text-lg font-semibold text-grey dark:text-white">Specialist Analysts</h3>
<p class="mt-1 text-grey dark:text-white">Experts providing deep insights into the web3 universe for investor
</p>
</div>
</div>
<!-- End Icon Block -->
<!-- Icon Block -->
<div class="service-card">
<div
class="relative flex justify-center items-center w-12 h-12 bg-white rounded-xl before:absolute before:-inset-px before:-z-[1] before:bg-gradient-to-br before:from-blue-600 before:via-transparent before:to-violet-600 before:rounded-xl dark:bg-slate-900">
<svg class="flex-shrink-0 w-6 h-6 text-orange-600 dark:text-blue-500" xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M20 7h-9" />
<path d="M14 17H5" />
<circle cx="17" cy="17" r="3" />
<circle cx="7" cy="7" r="3" />
</svg>
</div>
<div class="mt-2">
<h3 class="text-lg font-semibold text-grey dark:text-white">Actionable Reports</h3>
<p class="mt-1 text-grey dark:text-white">Industry-leading reports offering data-centric analysis and
strategix guidance</p>
</div>
</div>
<!-- End Icon Block -->
<!-- Icon Block -->
<div class="service-card">
<div
class="relative flex justify-center items-center w-12 h-12 bg-white rounded-xl before:absolute before:-inset-px before:-z-[1] before:bg-gradient-to-br before:from-blue-600 before:via-transparent before:to-violet-600 before:rounded-xl dark:bg-slate-900">
<svg class="flex-shrink-0 w-6 h-6 text-orange-600 dark:text-blue-500" xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z" />
<path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z" />
</svg>
</div>
<div class="mt-2">
<h3 class="text-lg font-semibold text-grey dark:text-white">10X decision Making</h3>
<p class="mt-1 text-grey dark:text-white">Synthesizing insights for a holistic view, enhacing both macro and
micro-level decisions.</p>
</div>
</div>
<!-- End Icon Block -->
<div class="service-card">
<div
class="relative flex justify-center items-center w-12 h-12 bg-white rounded-xl before:absolute before:-inset-px before:-z-[1] before:bg-gradient-to-br before:from-blue-600 before:via-transparent before:to-violet-600 before:rounded-xl dark:bg-slate-900">
<svg class="flex-shrink-0 w-6 h-6 text-orange-600 dark:text-blue-500" xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<rect width="10" height="14" x="3" y="8" rx="2" />
<path d="M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4" />
<path d="M8 18h.01" />
</svg>
</div>
<div class="mt-2">
<h3 class="text-lg font-semibold text-grey dark:text-white">Custom Analysis</h3>
<p class="mt-1 text-grey dark:text-white">Tailored digital assest research by analysts for strategic
decision-making.</p>
</div>
</div>
<!-- End Icon Block -->
<!-- Icon Block -->
<div class="service-card">
<div
class="relative flex justify-center items-center w-12 h-12 bg-white rounded-xl before:absolute before:-inset-px before:-z-[1] before:bg-gradient-to-br before:from-blue-600 before:via-transparent before:to-violet-600 before:rounded-xl dark:bg-slate-900">
<svg class="flex-shrink-0 w-6 h-6 text-orange-600 dark:text-blue-500" xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M20 7h-9" />
<path d="M14 17H5" />
<circle cx="17" cy="17" r="3" />
<circle cx="7" cy="7" r="3" />
</svg>
</div>
<div class="mt-2">
<h3 class="text-lg font-semibold text-grey dark:text-white">Connecting TradFi with
Crypto</h3>
<p class="mt-1 text-grey dark:text-white">Serving as a bridge, providing expert advisory for both traditional
finance and crypto players</p>
</div>
</div>
<!-- End Icon Block -->
<!-- Icon Block -->
<div class="service-card">
<div
class="relative flex justify-center items-center w-12 h-12 bg-white rounded-xl before:absolute before:-inset-px before:-z-[1] before:bg-gradient-to-br before:from-blue-600 before:via-transparent before:to-violet-600 before:rounded-xl dark:bg-slate-900">
<svg class="flex-shrink-0 w-6 h-6 text-orange-600 dark:text-blue-500" xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z" />
<path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z" />
</svg>
</div>
<div class="mt-2">
<h3 class="text-lg font-semibold text-grey dark:text-grey">Advisory Services</h3>
<p class="mt-1 text-grey dark:text-white">Advisory services guiding from traditional markets to crypto
innovation.</p>
</div>
</div>
<!-- End Card -->
</div>
</div>
<div
class="max-w-[85rem] px-4 py-8 sm:px-6 lg:px-8 lg:py-8 mx-auto benefits-containers benefits-block research-block heading-margin mt-10">
<!-- Title -->
<div class="mb-2 block-title">
<h2 class="text-2xl font-bold md:text-4xl md:leading-tight dark:text-white">Research backed
<span class="theme-color">data-driven research strategies</span>
</h2>
<!-- <p class="mt-1 text-gray-600 dark:text-gray-400">See how game-changing companies are making the most of every engagement with Preline.</p> -->
</div>
<!-- End Title -->
<!-- Grid -->
<div class="grid sm:grid-cols-2 lg:grid-cols-3 items-center gap-6 md:gap-10 block-content">
<!-- Card -->
<div class="card risk_targeting p-5" style="background-color: #ab68a1;">
<div class="card-body">
<img src="https://www.wrightresearch.in/static/img/investment/Group%205614.svg" alt="Factor Investing icon"
class="benefits-card-dimension">
<div>
<h3
class="mt-5 pr-2 text-3xl font-medium text-gray group-hover:text-orange-600 dark:text-whites dark:group-hover:text-white">
Asset Allocation</h3>
<p class="mb-0 pt-2">We choose the best mix of investment assets for the verticals we are tracking.</p>
</div>
</div>
</div>
<div class="card risk_targeting p-5" style="background-color: #276662;">
<div class="card-body">
<img src="https://www.wrightresearch.in/static/img/investment/Group%207323.svg" alt="Factor Investing icon"
class="benefits-card-dimension">
<div>
<h3
class="mt-5 pr-2 text-3xl font-medium text-gray group-hover:text-orange-600 dark:text-whites dark:group-hover:text-white">
Artificial Intelligence</h3>
<p class="mb-0 pt-2">We use machine learning models to identity gems that will outperform in the market.</p>
</div>
</div>
</div>
<div class="card risk_targeting p-5" style="background-color: #b49ce5;">
<div class="card-body">
<img src="https://www.wrightresearch.in/static/img/investment/Group%207324.svg" alt="Factor Investing icon"
class="benefits-card-dimension">
<div>
<h3
class="mt-5 pr-2 text-3xl font-medium text-gray group-hover:text-orange-600 dark:text-whites dark:group-hover:text-white">
Risk Modeling</h3>
<p class="mb-0 pt-2">Risk Management is at the core of our investing. We have a multi-level approach.</p>
</div>
</div>
</div>
<!-- End Card -->
</div>
<!-- End Grid -->
</div>
<div class="max-w-[85rem] px-4 py-8 sm:px-6 lg:px-8 lg:py-8 mx-auto reports-block heading-margin">
<!-- Title -->
<div class="max-w-8xl mb-3 lg:mb-14 flex justify-between ml-2 mr-2 block-title">
<h2 class="text-2xl font-bold md:text-4xl md:leading-tight dark:text-white">Reports</h2>
<hr class="h-px my-8 hidden md:block lg:block theme-color horizontal-line bg-gray-200 border-0 dark:bg-gray-700">
<a type="button" href="/js/blogs.html"
class="py-2 px-3 stndrd-btn inline-flex items-center gap-x-2 lg:text-lg font-semibold rounded-lg border border-transparent bg-red-600 text-white disabled:opacity-50 disabled:pointer-events-none dark:focus:outline-none dark:focus:ring-1">
View All
</a>
</div>
<!-- End Title -->
<!-- Grid -->
<div class="grid sm:grid-cols-2 lg:grid-cols-4 gap-6 block-content">
<!-- Card -->
<a class="reports-card-group report-cards rounded-md transition-all relative" href="/js/article.html">
<span
class="bg-green-100 text-green-800 lg:text-sm font-medium me-2 px-2.5 py-0.5 rounded-full dark:bg-green-900 dark:text-green-300 absolute report-new-tag">Pro</span>
<div class="">
<div class="aspect-w-16 aspect-h-9 image-container">
<img class="w-full object-cover zoomed-image"
src="https://images.unsplash.com/photo-1668869713519-9bcbb0da7171?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=988&q=80"
alt="Image Description" style="height: 180px;">
</div>
</div>
<div class="pr-2 pl-2 pb-2">
<div class="flex justify-between">
<p class="mt-2 lg:text-sm lg:text-sm text-gray dark:text-white">
Sept 12,2022
</p>
<!-- <p class="mt-2 lg:text-sm lg:text-lg text-gray dark:text-white">
By-Aman
</p> -->
</div>
<h3
class="mt-2 lg:text-lg lg:text-xl reports-card-txt-container text-gray dark:text-gray-300 dark:hover:text-white">
Unity’s inside sales team drives 80% of its revenue with Preline.
</h3>
<p class="text-gray text-xs lg:text-sm pt-2">Lorem ipsum dolor sit, amet consectetur adipisicing elit. </p>
</div>
<!-- <p class="mt-3 inline-flex items-center gap-x-1 lg:text-lg font-semibold text-gray dark:text-gray-200">
Learn more
<svg class="flex-shrink-0 w-4 h-4 transition ease-in-out group-hover:translate-x-1"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m9 18 6-6-6-6" />
</svg>
</p> -->
</a>
<!-- End Card -->
<!-- Card -->
<a class=" reports-card-group report-cards rounded-md p-2 transition-all dark:hover:bg-white/[.05] relative"
href="/js/article.html">
<span
class="bg-green-100 text-green-800 lg:text-sm font-medium me-2 px-2.5 py-0.5 rounded-full dark:bg-green-900 dark:text-green-300 absolute report-new-tag">Pro</span>
<div class="">
<div class="aspect-w-16 aspect-h-10 image-container">
<img class="w-full object-cover zoomed-image"
src="https://images.unsplash.com/photo-1668863699009-1e3b4118675d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=3387&q=80"
alt="Image Description" style="height: 180px;">
</div>
</div>
<div class="pl-2 pr-2 pb-2">
<div class="flex justify-between">
<p class="mt-2 lg:text-sm lg:text-sm text-gray dark:text-white">
Sept 12,2022
</p>
<!-- <p class="mt-2 lg:text-sm lg:text-lg text-gray dark:text-white">
By-Aman
</p> -->
</div>
<h3
class="mt-2 lg:text-lg lg:text-xl reports-card-txt-container text-gray dark:text-gray-300 dark:hover:text-white">
Living Spaces creates a unified experience across the customer journey.
</h3>
<p class="text-gray text-xs lg:text-sm pt-2">Lorem ipsum dolor sit, amet consectetur adipisicing elit. </p>
</div>
<!-- <p class="mt-3 inline-flex items-center gap-x-1 lg:text-lg font-semibold text-gray dark:text-gray-200">
Learn more
<svg class="flex-shrink-0 w-4 h-4 transition ease-in-out group-hover:translate-x-1"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m9 18 6-6-6-6" />
</svg>
</p> -->
</a>
<!-- End Card -->
<!-- Card -->
<a class="reports-card-group report-cards rounded-md p-2 transition-all dark:hover:bg-white/[.05] relative"
href="/js/article.html">
<span
class="bg-green-100 text-green-800 lg:text-sm font-medium me-2 px-2.5 py-0.5 rounded-full dark:bg-green-900 dark:text-green-300 absolute report-new-tag">Pro</span>
<div class="">
<div class="aspect-w-16 aspect-h-10 image-container">
<img class="w-full object-cover zoomed-image"
src="https://images.unsplash.com/photo-1668584054131-d5721c515211?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1064&q=80"
alt="Image Description" style="height: 180px;">
</div>
</div>
<div class="pl-2 pr-2 pb-2">
<div class="flex justify-between">
<p class="mt-2 lg:text-sm lg:text-sm text-gray dark:text-white">
Sept 12,2022
</p>
<!-- <p class="mt-2 lg:text-sm lg:text-lg text-gray dark:text-white">
By-Aman
</p> -->
</div>
<h3
class="mt-2 lg:text-lg lg:text-xl reports-card-txt-container text-gray dark:text-gray-300 dark:hover:text-white">
Atlassian powers sales and support at scale with Preline.
</h3>
<p class="text-gray text-xs lg:text-sm pt-2">Lorem ipsum dolor sit, amet consectetur adipisicing elit. </p>
</div>
<!-- <p class="mt-3 inline-flex items-center gap-x-1 lg:text-lg font-semibold text-gray dark:text-gray-200">
Learn more
<svg class="flex-shrink-0 w-4 h-4 transition ease-in-out group-hover:translate-x-1"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m9 18 6-6-6-6" />
</svg>
</p> -->
</a>
<!-- End Card -->
<!-- Card -->
<a class="reports-card-group report-cards rounded-md p-2 transition-all dark:hover:bg-white/[.05] relative"
href="/js/article.html">
<span
class="bg-green-100 text-green-800 lg:text-sm font-medium me-2 px-2.5 py-0.5 rounded-full dark:bg-green-900 dark:text-green-300 absolute report-new-tag">Pro</span>
<div class="">
<div class="aspect-w-16 aspect-h-10 image-container">
<img class="w-full object-cover zoomed-image"
src="https://images.unsplash.com/photo-1661956602116-aa6865609028?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1064&q=80"
alt="Image Description" style="height: 180px;">
</div>
</div>
<div class="pl-2 pr-2 pb-2">
<div class="flex justify-between">
<p class="mt-2 lg:text-sm lg:text-sm text-gray dark:text-white">
Sept 12,2022
</p>
<!-- <p class="mt-2 lg:text-sm lg:text-lg text-gray dark:text-white">
By-Aman
</p> -->
</div>
<h3
class="mt-2 lg:text-lg lg:text-xl reports-card-txt-container text-gray dark:text-gray-300 dark:hover:text-white">
Atlassian powers sales and support at scale with Preline.
</h3>
<p class="text-gray text-xs lg:text-sm pt-2">Lorem ipsum dolor sit, amet consectetur adipisicing elit. </p>
</div>
<!-- <p class="mt-3 inline-flex items-center gap-x-1 lg:text-lg font-semibold text-gray dark:text-gray-200">
Learn more
<svg class="flex-shrink-0 w-4 h-4 transition ease-in-out group-hover:translate-x-1"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m9 18 6-6-6-6" />
</svg>
</p> -->
</a>
<!-- End Card -->
</div>
<!-- End Grid -->
</div>
<div class="text-center px-2 heading-margin">
<h1 class="text-xl text-grey font-bold sm:text-xl lg:text-2xl lg:leading-tight dark:text-white">
Our Mission: To empower investor success.
<div class="theme-color">Allow Blackrabbit to help you take the next step in your crypto journey.</div>
</h1>
<p class="text-xl font-semibold text-gray tracking-wide uppercase mb-3 dark:text-white mt-2">
No spam. No noise. Unsubscribe any time
</p>
</div>
<div class="max-w-6xl py-8 px-4 sm:px-6 lg:px-8 lg:py-8 mx-auto">
<div class="max-w-xl text-center mx-auto">
<div class="mb-5">
<h2 class="text-2xl font-bold md:text-3xl md:leading-tight dark:text-white">Subscribe to <span
class="theme-color">Newsletter</span></h2>
</div>
<form>
<div class="mt-5 lg:mt-8 flex flex-col items-center gap-2 sm:flex-row sm:gap-3">
<div class="w-full">
<label for="hero-input" class="sr-only">Search</label>
<input type="text" id="hero-input" name="hero-input"
class="py-3 px-4 email-border block w-full border-gray-200 rounded-lg lg:text-lg focus:border-blue-500 focus:ring-blue-500 disabled:opacity-50 disabled:pointer-events-none dark:bg-slate-900 dark:border-gray-700 dark:text-gray-400 dark:focus:ring-gray-600"
placeholder="Enter your email">
</div>
<a class="w-full sm:w-auto stndrd-btn whitespace-nowrap py-3 px-4 inline-flex justify-center items-center gap-x-2 lg:text-lg font-semibold rounded-lg border border-transparent bg-blue-600 text-white hover:bg-blue-700 disabled:opacity-50 disabled:pointer-events-none dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
Subscribe
</a>
</div>
</form>
</div>
</div>
<div class="max-w-[85rem] px-4 py-8 sm:px-6 lg:px-8 lg:py-8 mx-auto reports-block heading-margin">
<!-- Title -->
<div class="max-w-8xl mb-2 lg:mb-14 flex justify-between ml-2 mr-2 block-title">
<h2 class="text-2xl font-bold md:text-4xl md:leading-tight dark:text-white">Crypto <span
class="theme-color">Ideas</span></h2>
<hr class="h-px hidden md:block lg:block my-8 theme-color crypto-horizontal-line bg-gray-200 border-0 dark:bg-gray-700">
<a type="button" href="/js/blogs.html"
class="py-2 px-3 stndrd-btn inline-flex items-center gap-x-2 lg:text-lg font-semibold rounded-lg border border-transparent bg-red-600 text-white disabled:opacity-50 disabled:pointer-events-none dark:focus:outline-none dark:focus:ring-1">
View All
</a>
</div>
<!-- End Title -->
<div class="grid sm:grid-cols-2 lg:grid-cols-4 gap-6 block-content">
<!-- Card -->
<a class="reports-card-group report-cards rounded-md transition-all relative" href="/js/article.html">
<span
class="bg-green-100 text-green-800 lg:text-sm font-medium me-2 px-2.5 py-0.5 rounded-full dark:bg-green-900 dark:text-green-300 absolute report-new-tag">Pro</span>
<div class="">
<div class="aspect-w-16 aspect-h-9 image-container">
<img class="w-full object-cover zoomed-image"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTmVlWr_K61Okc8rczqUymTlUzc0QCVvDqIMy85A8VCQqXuCbTzAAK8b4g_s1tb3ZjP-vQ&usqp=CAU"
alt="Image Description" style="height: 180px;">
</div>
</div>
<div class="pr-2 pl-2 pb-2">
<div class="flex justify-between">
<p class="mt-2 lg:text-sm lg:text-sm text-gray dark:text-white">
Sept 12,2022
</p>
<!-- <p class="mt-2 lg:text-sm lg:text-lg text-gray dark:text-white">
By-Aman
</p> -->
</div>
<h3
class="mt-2 lg:text-lg lg:text-xl reports-card-txt-container text-gray dark:text-gray-300 dark:hover:text-white">
Unity’s inside sales team drives 80% of its revenue with Preline.
</h3>
<p class="text-gray text-xs lg:text-sm pt-2">Lorem ipsum dolor sit, amet consectetur adipisicing elit. </p>
</div>
<!-- <p class="mt-3 inline-flex items-center gap-x-1 lg:text-lg font-semibold text-gray dark:text-gray-200">
Learn more
<svg class="flex-shrink-0 w-4 h-4 transition ease-in-out group-hover:translate-x-1"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m9 18 6-6-6-6" />
</svg>
</p> -->
</a>
<!-- End Card -->
<!-- Card -->
<a class=" reports-card-group report-cards rounded-md p-2 transition-all dark:hover:bg-white/[.05] relative"
href="/js/article.html">
<span
class="bg-green-100 text-green-800 lg:text-sm font-medium me-2 px-2.5 py-0.5 rounded-full dark:bg-green-900 dark:text-green-300 absolute report-new-tag">Pro</span>
<div class="">
<div class="aspect-w-16 aspect-h-10 image-container">
<img class="w-full object-cover zoomed-image"
src="https://www.financialexpress.com/wp-content/uploads/2022/07/crypto-crash-opinion.jpg?w=350"
alt="Image Description" style="height: 180px;">
</div>
</div>
<div class="pl-2 pr-2 pb-2">
<div class="flex justify-between">
<p class="mt-2 lg:text-sm lg:text-sm text-gray dark:text-white">
Sept 12,2022
</p>
<!-- <p class="mt-2 lg:text-sm lg:text-lg text-gray dark:text-white">
By-Aman
</p> -->
</div>
<h3
class="mt-2 lg:text-lg lg:text-xl reports-card-txt-container text-gray dark:text-gray-300 dark:hover:text-white">
Living Spaces creates a unified experience across the customer journey.
</h3>
<p class="text-gray text-xs lg:text-sm pt-2">Lorem ipsum dolor sit, amet consectetur adipisicing elit. </p>
</div>
<!-- <p class="mt-3 inline-flex items-center gap-x-1 lg:text-lg font-semibold text-gray dark:text-gray-200">
Learn more
<svg class="flex-shrink-0 w-4 h-4 transition ease-in-out group-hover:translate-x-1"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m9 18 6-6-6-6" />
</svg>
</p> -->
</a>
<!-- End Card -->
<!-- Card -->
<a class="reports-card-group report-cards rounded-md p-2 transition-all dark:hover:bg-white/[.05] relative"
href="/js/article.html">
<span
class="bg-green-100 text-green-800 lg:text-sm font-medium me-2 px-2.5 py-0.5 rounded-full dark:bg-green-900 dark:text-green-300 absolute report-new-tag">Pro</span>
<div class="">
<div class="aspect-w-16 aspect-h-10 image-container">
<img class="w-full object-cover zoomed-image"
src="https://bitcoinist.com/wp-content/uploads/2018/08/AdobeStock_197910537-1.jpeg"
alt="Image Description" style="height: 180px;">
</div>
</div>
<div class="pl-2 pr-2 pb-2">
<div class="flex justify-between">
<p class="mt-2 lg:text-sm lg:text-sm text-gray dark:text-white">
Sept 12,2022
</p>
<!-- <p class="mt-2 lg:text-sm lg:text-lg text-gray dark:text-white">
By-Aman
</p> -->
</div>
<h3
class="mt-2 lg:text-lg lg:text-xl reports-card-txt-container text-gray dark:text-gray-300 dark:hover:text-white">
Atlassian powers sales and support at scale with Preline.
</h3>
<p class="text-gray text-xs lg:text-sm pt-2">Lorem ipsum dolor sit, amet consectetur adipisicing elit. </p>
</div>
<!-- <p class="mt-3 inline-flex items-center gap-x-1 lg:text-lg font-semibold text-gray dark:text-gray-200">
Learn more
<svg class="flex-shrink-0 w-4 h-4 transition ease-in-out group-hover:translate-x-1"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m9 18 6-6-6-6" />
</svg>
</p> -->
</a>
<!-- End Card -->
<!-- Card -->
<a class="reports-card-group report-cards rounded-md p-2 transition-all dark:hover:bg-white/[.05] relative"
href="/js/article.html">
<span
class="bg-green-100 text-green-800 lg:text-sm font-medium me-2 px-2.5 py-0.5 rounded-full dark:bg-green-900 dark:text-green-300 absolute report-new-tag">Pro</span>
<div class="">
<div class="aspect-w-16 aspect-h-10 image-container">
<img class="w-full object-cover zoomed-image"
src="https://images.unsplash.com/photo-1661956602116-aa6865609028?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1064&q=80"
alt="Image Description" style="height: 180px;">
</div>
</div>
<div class="pl-2 pr-2 pb-2">
<div class="flex justify-between">
<p class="mt-2 lg:text-sm lg:text-sm text-gray dark:text-white">
Sept 12,2022
</p>
<!-- <p class="mt-2 lg:text-sm lg:text-lg text-gray dark:text-white">
By-Aman
</p> -->
</div>
<h3
class="mt-2 lg:text-lg lg:text-xl reports-card-txt-container text-gray dark:text-gray-300 dark:hover:text-white">
Atlassian powers sales and support at scale with Preline.
</h3>
<p class="text-gray text-xs lg:text-sm pt-2">Lorem ipsum dolor sit, amet consectetur adipisicing elit. </p>
</div>
<!-- <p class="mt-3 inline-flex items-center gap-x-1 lg:text-lg font-semibold text-gray dark:text-gray-200">
Learn more
<svg class="flex-shrink-0 w-4 h-4 transition ease-in-out group-hover:translate-x-1"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m9 18 6-6-6-6" />
</svg>
</p> -->
</a>
<!-- End Card -->
</div>
<!-- Grid -->
<!-- End Grid -->
</div>
<div class="max-w-[85rem] px-4 py-8 sm:px-6 lg:px-8 lg:py-8 mx-auto experts-block heading-margin">
<div class="mb-5 block-title">
<h2 class="text-2xl font-bold md:text-3xl md:leading-tight dark:text-white">Weekly calls /<span
class="theme-color">expert insights</span>(Comming Soon)</h2>
</div>
<div class="flex flex-row block-content comming-soon">
<div class="me-5 hidden sm:block" style="max-width: 30%;">
<img style="width: 80%; height: 100%" class="rounded-lg"
src="https://images.unsplash.com/photo-1568602471122-7832951cc4c5?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=900&h=900&q=80"
alt="Image Description">
</div>
<div class="grid grid-cols-1 sm:grid-cols-1 lg:grid-cols-3 gap-8 md:gap-8 w-full experts-cards mt-3">
<div class="flex sm:flex sm:items-center gap-y-3 gap-x-4 justify-between weekly-cards">
<div class="sm:flex sm:flex-col sm:h-full">
<div>
<h3 class="font-medium text-gray dark:text-white theme-color">
David Forren
</h3>
<p class="mt-1 lg:text-sm uppercase text-gray-500">
Founder / CEO
</p>
</div>
<!-- Social Brands -->
<div class="mt-2 sm:mt-auto space-x-2.5">
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z" />
</svg>
</a>
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M3.362 10.11c0 .926-.756 1.681-1.681 1.681S0 11.036 0 10.111C0 9.186.756 8.43 1.68 8.43h1.682v1.68zm.846 0c0-.924.756-1.68 1.681-1.68s1.681.756 1.681 1.68v4.21c0 .924-.756 1.68-1.68 1.68a1.685 1.685 0 0 1-1.682-1.68v-4.21zM5.89 3.362c-.926 0-1.682-.756-1.682-1.681S4.964 0 5.89 0s1.68.756 1.68 1.68v1.682H5.89zm0 .846c.924 0 1.68.756 1.68 1.681S6.814 7.57 5.89 7.57H1.68C.757 7.57 0 6.814 0 5.89c0-.926.756-1.682 1.68-1.682h4.21zm6.749 1.682c0-.926.755-1.682 1.68-1.682.925 0 1.681.756 1.681 1.681s-.756 1.681-1.68 1.681h-1.681V5.89zm-.848 0c0 .924-.755 1.68-1.68 1.68A1.685 1.685 0 0 1 8.43 5.89V1.68C8.43.757 9.186 0 10.11 0c.926 0 1.681.756 1.681 1.68v4.21zm-1.681 6.748c.926 0 1.682.756 1.682 1.681S11.036 16 10.11 16s-1.681-.756-1.681-1.68v-1.682h1.68zm0-.847c-.924 0-1.68-.755-1.68-1.68 0-.925.756-1.681 1.68-1.681h4.21c.924 0 1.68.756 1.68 1.68 0 .926-.756 1.681-1.68 1.681h-4.21z" />
</svg>
</a>
</div>
<!-- End Social Brands -->
</div>
<img class="rounded-lg w-20 h-20"
src="https://images.unsplash.com/photo-1568602471122-7832951cc4c5?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=900&h=900&q=80"
alt="Image Description">
</div>
<!-- End Col -->
<div class="flex sm:flex sm:items-center gap-y-3 gap-x-4 justify-between weekly-cards">
<div class="sm:flex sm:flex-col sm:h-full">
<div>
<h3 class="font-medium text-gray dark:text-white theme-color">
Amil Evara
</h3>
<p class="mt-1 lg:text-sm uppercase text-gray-500">
UI/UX Designer
</p>
</div>
<!-- Social Brands -->
<div class="mt-2 sm:mt-auto space-x-2.5">
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z" />
</svg>
</a>
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M3.362 10.11c0 .926-.756 1.681-1.681 1.681S0 11.036 0 10.111C0 9.186.756 8.43 1.68 8.43h1.682v1.68zm.846 0c0-.924.756-1.68 1.681-1.68s1.681.756 1.681 1.68v4.21c0 .924-.756 1.68-1.68 1.68a1.685 1.685 0 0 1-1.682-1.68v-4.21zM5.89 3.362c-.926 0-1.682-.756-1.682-1.681S4.964 0 5.89 0s1.68.756 1.68 1.68v1.682H5.89zm0 .846c.924 0 1.68.756 1.68 1.681S6.814 7.57 5.89 7.57H1.68C.757 7.57 0 6.814 0 5.89c0-.926.756-1.682 1.68-1.682h4.21zm6.749 1.682c0-.926.755-1.682 1.68-1.682.925 0 1.681.756 1.681 1.681s-.756 1.681-1.68 1.681h-1.681V5.89zm-.848 0c0 .924-.755 1.68-1.68 1.68A1.685 1.685 0 0 1 8.43 5.89V1.68C8.43.757 9.186 0 10.11 0c.926 0 1.681.756 1.681 1.68v4.21zm-1.681 6.748c.926 0 1.682.756 1.682 1.681S11.036 16 10.11 16s-1.681-.756-1.681-1.68v-1.682h1.68zm0-.847c-.924 0-1.68-.755-1.68-1.68 0-.925.756-1.681 1.68-1.681h4.21c.924 0 1.68.756 1.68 1.68 0 .926-.756 1.681-1.68 1.681h-4.21z" />
</svg>
</a>
</div>
<!-- End Social Brands -->
</div>
<img class="rounded-lg w-20 h-20"
src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=900&h=900&q=80"
alt="Image Description">
</div>
<!-- End Col -->
<div class="flex sm:flex sm:items-center gap-y-3 gap-x-4 justify-between weekly-cards">
<div class="sm:flex sm:flex-col sm:h-full">
<div>
<h3 class="font-medium text-gray dark:text-white theme-color">
Ebele Egbuna
</h3>
<p class="mt-1 lg:text-sm uppercase text-gray-500">
Support Consultant
</p>
</div>
<!-- Social Brands -->
<div class="mt-2 sm:mt-auto space-x-2.5">
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z" />
</svg>
</a>
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M3.362 10.11c0 .926-.756 1.681-1.681 1.681S0 11.036 0 10.111C0 9.186.756 8.43 1.68 8.43h1.682v1.68zm.846 0c0-.924.756-1.68 1.681-1.68s1.681.756 1.681 1.68v4.21c0 .924-.756 1.68-1.68 1.68a1.685 1.685 0 0 1-1.682-1.68v-4.21zM5.89 3.362c-.926 0-1.682-.756-1.682-1.681S4.964 0 5.89 0s1.68.756 1.68 1.68v1.682H5.89zm0 .846c.924 0 1.68.756 1.68 1.681S6.814 7.57 5.89 7.57H1.68C.757 7.57 0 6.814 0 5.89c0-.926.756-1.682 1.68-1.682h4.21zm6.749 1.682c0-.926.755-1.682 1.68-1.682.925 0 1.681.756 1.681 1.681s-.756 1.681-1.68 1.681h-1.681V5.89zm-.848 0c0 .924-.755 1.68-1.68 1.68A1.685 1.685 0 0 1 8.43 5.89V1.68C8.43.757 9.186 0 10.11 0c.926 0 1.681.756 1.681 1.68v4.21zm-1.681 6.748c.926 0 1.682.756 1.682 1.681S11.036 16 10.11 16s-1.681-.756-1.681-1.68v-1.682h1.68zm0-.847c-.924 0-1.68-.755-1.68-1.68 0-.925.756-1.681 1.68-1.681h4.21c.924 0 1.68.756 1.68 1.68 0 .926-.756 1.681-1.68 1.681h-4.21z" />
</svg>
</a>
</div>
<!-- End Social Brands -->
</div>
<img class="rounded-lg w-20 h-20"
src="https://images.unsplash.com/photo-1548142813-c348350df52b?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=900&h=900&q=80"
alt="Image Description">
</div>
<!-- End Col -->
<div class="flex sm:flex sm:items-center gap-y-3 gap-x-4 justify-between weekly-cards">
<div class="sm:flex sm:flex-col sm:h-full">
<div>
<h3 class="font-medium text-gray dark:text-white theme-color">
Maria Powers
</h3>
<p class="mt-1 lg:text-sm uppercase text-gray-500">
Director of sales
</p>
</div>
<!-- Social Brands -->
<div class="mt-2 sm:mt-auto space-x-2.5">
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z" />
</svg>
</a>
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M3.362 10.11c0 .926-.756 1.681-1.681 1.681S0 11.036 0 10.111C0 9.186.756 8.43 1.68 8.43h1.682v1.68zm.846 0c0-.924.756-1.68 1.681-1.68s1.681.756 1.681 1.68v4.21c0 .924-.756 1.68-1.68 1.68a1.685 1.685 0 0 1-1.682-1.68v-4.21zM5.89 3.362c-.926 0-1.682-.756-1.682-1.681S4.964 0 5.89 0s1.68.756 1.68 1.68v1.682H5.89zm0 .846c.924 0 1.68.756 1.68 1.681S6.814 7.57 5.89 7.57H1.68C.757 7.57 0 6.814 0 5.89c0-.926.756-1.682 1.68-1.682h4.21zm6.749 1.682c0-.926.755-1.682 1.68-1.682.925 0 1.681.756 1.681 1.681s-.756 1.681-1.68 1.681h-1.681V5.89zm-.848 0c0 .924-.755 1.68-1.68 1.68A1.685 1.685 0 0 1 8.43 5.89V1.68C8.43.757 9.186 0 10.11 0c.926 0 1.681.756 1.681 1.68v4.21zm-1.681 6.748c.926 0 1.682.756 1.682 1.681S11.036 16 10.11 16s-1.681-.756-1.681-1.68v-1.682h1.68zm0-.847c-.924 0-1.68-.755-1.68-1.68 0-.925.756-1.681 1.68-1.681h4.21c.924 0 1.68.756 1.68 1.68 0 .926-.756 1.681-1.68 1.681h-4.21z" />
</svg>
</a>
</div>
<!-- End Social Brands -->
</div>
<img class="rounded-lg w-20 h-20"
src="https://images.unsplash.com/photo-1492562080023-ab3db95bfbce?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=900&h=900&q=80"
alt="Image Description">
</div>
<!-- End Col -->
<div class="flex sm:flex sm:items-center gap-y-3 gap-x-4 justify-between weekly-cards">
<div class="sm:flex sm:flex-col sm:h-full">
<div>
<h3 class="font-medium text-gray dark:text-white theme-color">
Delia Pawelke
</h3>
<p class="mt-1 lg:text-sm uppercase text-gray-500">
Front-end Developer
</p>
</div>
<!-- Social Brands -->
<div class="mt-2 sm:mt-auto space-x-2.5">
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z" />
</svg>
</a>
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M3.362 10.11c0 .926-.756 1.681-1.681 1.681S0 11.036 0 10.111C0 9.186.756 8.43 1.68 8.43h1.682v1.68zm.846 0c0-.924.756-1.68 1.681-1.68s1.681.756 1.681 1.68v4.21c0 .924-.756 1.68-1.68 1.68a1.685 1.685 0 0 1-1.682-1.68v-4.21zM5.89 3.362c-.926 0-1.682-.756-1.682-1.681S4.964 0 5.89 0s1.68.756 1.68 1.68v1.682H5.89zm0 .846c.924 0 1.68.756 1.68 1.681S6.814 7.57 5.89 7.57H1.68C.757 7.57 0 6.814 0 5.89c0-.926.756-1.682 1.68-1.682h4.21zm6.749 1.682c0-.926.755-1.682 1.68-1.682.925 0 1.681.756 1.681 1.681s-.756 1.681-1.68 1.681h-1.681V5.89zm-.848 0c0 .924-.755 1.68-1.68 1.68A1.685 1.685 0 0 1 8.43 5.89V1.68C8.43.757 9.186 0 10.11 0c.926 0 1.681.756 1.681 1.68v4.21zm-1.681 6.748c.926 0 1.682.756 1.682 1.681S11.036 16 10.11 16s-1.681-.756-1.681-1.68v-1.682h1.68zm0-.847c-.924 0-1.68-.755-1.68-1.68 0-.925.756-1.681 1.68-1.681h4.21c.924 0 1.68.756 1.68 1.68 0 .926-.756 1.681-1.68 1.681h-4.21z" />
</svg>
</a>
</div>
<!-- End Social Brands -->
</div>
<img class="rounded-lg w-20 h-20"
src="https://images.unsplash.com/photo-1580489944761-15a19d654956?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=900&h=900&q=80"
alt="Image Description">
</div>
<!-- End Col -->
<div class="flex sm:flex sm:items-center gap-y-3 gap-x-4 justify-between weekly-cards">
<div class="sm:flex sm:flex-col sm:h-full">
<div>
<h3 class="font-medium text-gray dark:text-white theme-color">
Tom Lowry
</h3>
<p class="mt-1 lg:text-sm uppercase text-gray-500">
UI/UX Designer
</p>
</div>
<!-- Social Brands -->
<div class="mt-2 sm:mt-auto space-x-2.5">
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z" />
</svg>
</a>
<a class="inline-flex justify-center items-center text-gray-500 rounded-full hover:text-gray-800 dark:hover:text-gray-200 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-gray-600"
href="#">
<svg class="flex-shrink-0 w-3.5 h-3.5" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>