-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
845 lines (834 loc) · 35.5 KB
/
about.html
File metadata and controls
845 lines (834 loc) · 35.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Thrive</title>
<link href="dist/output.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
</head>
<body class="font-poppins">
<!-- Header Start -->
<header>
<section class="shadow-lg bg-white">
<div class="max-w-6xl px-4 mx-auto" x-data="{open:false}">
<nav class="flex items-center justify-between py-4">
<a href="" class="text-3xl font-semibold leading-none text-black"
>Thrive<span class="text-yellow-400">In</span></a
>
<div class="flex justify-between lg:space-x-9">
<div class="lg:hidden">
<button
class="flex items-center px-3 py-2 text-blue-600 border border-blue-200 rounded navbar-burger hover:text-blue-800 hover:border-blue-300 lg:hidden"
@click="open =true"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="18"
height="18"
fill="currentColor"
class="bi bi-list"
viewBox="0 0 16 16"
>
<path
fill-rule="evenodd"
d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"
/>
</svg>
</button>
</div>
<ul
class="hidden lg:w-auto lg:space-x-9 lg:items-center lg:flex font-medium"
>
<li>
<a
href="index.html"
class="text-sm text-gray-700 hover:text-blue-700"
>Beranda</a
>
</li>
<li>
<a
href="about.html"
class="text-sm text-gray-700 hover:text-blue-700"
>Tentang Kami</a
>
</li>
<li>
<a
href="campaign.html"
class="text-sm text-gray-700 hover:text-blue-700"
>Campaign</a
>
</li>
<li>
<a
href="artikel.html"
class="text-sm text-gray-700 hover:text-blue-700"
>Artikel
</a>
</li>
<li>
<a
href="pricing.html"
class="text-sm text-gray-700 hover:text-blue-700"
>Paket
</a>
</li>
</ul>
<div class="hidden lg:block">
<a
href="contact.html"
class="inline-block px-4 py-3 mr-2 text-xs font-medium leading-none text-gray-100 bg-blue-600 rounded-full hover:bg-blue-700"
>
Kontak Kami
</a>
</div>
</div>
</nav>
<!-- Mobile Sidebar -->
<div
class="fixed inset-0 w-full bg-gray-900 opacity-25 lg:hidden"
:class="{'translate-x-0 ease-in-opacity-100' :open===true, '-translate-x-full ease-out opacity-0' : open===false}"
></div>
<div
class="absolute inset-0 z-10 h-screen p-3 text-gray-400 duration-500 transform bg-blue-100 w-80 lg:hidden lg:transform-none lg:relative"
:class="{'translate-x-0 ease-in-opacity-100' :open===true, '-translate-x-full ease-out opacity-0' : open===false}"
>
<div class="flex justify-between lg:">
<a class="p-2 text-2xl font-bold text-gray-700" href="#"
>Thrive<span class="text-yellow-400">In</span></a
>
<button
class="p-2 text-gray-700 rounded-md hover:text-blue-300 lg:hidden"
@click="open=false"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
class="bi bi-x-circle"
viewBox="0 0 16 16"
>
<path
d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"
/>
<path
d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"
/>
</svg>
</button>
</div>
<ul class="px-4 text-left mt-7">
<li class="pb-3">
<a
href="index.html"
class="text-sm text-gray-700 hover:text-blue-400"
>Beranda</a
>
</li>
<li class="pb-3">
<a
href="about.html"
class="text-sm text-gray-700 hover:text-blue-400"
>Tentang Kami</a
>
</li>
<li class="pb-3">
<a
href="campaign.html"
class="text-sm text-gray-700 hover:text-blue-400"
>Campaign</a
>
</li>
<li class="pb-3">
<a
href="artikel.html"
class="text-sm text-gray-700 hover:text-blue-400"
>Artikel
</a>
</li>
<li class="pb-3">
<a
href="pricing.html"
class="text-sm text-gray-700 hover:text-blue-400"
>Paket
</a>
</li>
</ul>
<div class="block mt-5 lg:hidden">
<a
href="contact.html"
class="inline-block w-full px-4 py-3 mr-2 text-xs font-semibold leading-none text-center text-gray-100 bg-blue-600 rounded-full hover:bg-blue-700"
>
Kontak Kami
</a>
</div>
</div>
</div>
</section>
<script
defer
src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"
></script>
</header>
<!-- Header End -->
<!-- Hero Start -->
<section class="relative pb-8" style="height: 750px">
<div>
<img
src="https://storage.googleapis.com/thrivein-asset/website/About/hero.png"
class="absolute top-0 bottom-0 left-0 right-0 object-cover w-full h-full"
alt=""
/>
<div
class="absolute top-0 bottom-0 left-0 right-0 flex items-center bg-gray-900/75"
>
<div class="z-10 max-w-6xl px-4 mx-auto animate-fade-up">
<h2
class="mt-2 mb-4 text-3xl font-bold leading-tight text-white md:text-4xl md:leading-tight lg:text-7xl lg:leading-tight g"
>
Thrive<span class="text-yellow-400">In</span>
</h2>
<p class="mb-8 text-base leading-8 text-gray-400 lg:text-xl">
Pemberdayaan bisnis melalui solusi berkelanjutan, UMKM tumbuh
bersama inovasi terdepan.
</p>
</div>
</div>
</div>
</section>
<!-- Hero End -->
<!-- Visi Misi start -->
<section class="flex items-center justify-center bg-p-100">
<div class="px-4 py-10 mx-auto lg:py-20 max-w-7xl">
<div class="max-w-xl mx-auto">
<h1 class="mb-4 text-4xl font-semibold text-center">Tentang Kami</h1>
<p class="mb-16 text-base text-center text-gray-500">
Kami berkomitmen untuk memberikan layanan terdepan bagi UMKM dengan
teknologi dan inovasi yang berkelanjutan.
</p>
</div>
<!-- Visi -->
<div
class="w-full mb-10 p-8 transition-all bg-white rounded shadow hover:shadow-lg text-center"
>
<h3 class="mb-4 text-2xl font-semibold">Visi</h3>
<p class="text-base text-gray-500">
Menjadikan ThriveIn sebagai platform Inovasi UMKM dalam melakukan
pengembangan yang cepat serta sustainable.
</p>
</div>
<div
class="grid grid-cols-1 gap-4 lg:gap-8 md:grid-cols-2 lg:grid-cols-3"
>
<!-- Misi 1 -->
<div
class="w-full p-8 transition-all bg-white rounded shadow hover:shadow-lg"
>
<h3 class="mb-4 text-2xl font-semibold">Misi 1</h3>
<p class="text-base text-gray-500">
Menawarkan layanan berbasis Machine Learning dalam pengembangan
UMKM
</p>
</div>
<!-- Misi 2 -->
<div
class="w-full p-8 transition-all bg-white rounded shadow hover:shadow-lg"
>
<h3 class="mb-4 text-2xl font-semibold">Misi 2</h3>
<p class="text-base text-gray-500">
ThriveIn sebagai mitra UMKM dalam merancang pengembangan yang
sustainable.
</p>
</div>
<!-- Misi 3 -->
<div
class="w-full p-8 transition-all bg-white rounded shadow hover:shadow-lg"
>
<h3 class="mb-4 text-2xl font-semibold">Misi 3</h3>
<p class="text-base text-gray-500">
Pemberdayaan UMKM pada platform ThriveIn agar bisa bersaing secara
Nasional maupun secara International
</p>
</div>
</div>
</div>
</section>
<!-- Visi Misi End -->
<!-- Roadmap ThriveIn Start -->
<section class="items-center py-16 bg-white lg:h-full">
<div class="justify-center max-w-6xl px-4 py-4 mx-auto lg:py-8 md:px-6">
<div class="max-w-xl mx-auto">
<div class="text-center">
<div class="relative flex flex-col items-center">
<h1 class="text-5xl font-bold leading-tight">
<span class="text-blue-500">Roadmap</span> Thrive<span
class="text-yellow-400"
>In</span
>
</h1>
<div class="flex w-24 mt-1 mb-10 overflow-hidden rounded">
<div class="flex-1 h-2 bg-blue-200"></div>
<div class="flex-1 h-2 bg-blue-400"></div>
<div class="flex-1 h-2 bg-blue-300"></div>
</div>
</div>
<p class="mb-16 text-base text-center text-gray-500">
Jelajahi langkah-langkah perubahan kami untuk pemberdayaan UMKM
Indonesia. Bersama, kita gapai puncak kesuksesan! 🚀🌟
</p>
</div>
</div>
<div class="w-full mx-auto lg:max-w-3xl">
<div class="relative flex justify-between">
<div class="hidden w-24 py-3 md:block">
<h2 class="text-base font-medium text-gray-700">Dec 2023</h2>
</div>
<div
class="absolute inline-block w-24 py-3 left-16 -top-12 md:hidden"
>
<h2 class="text-base font-medium text-gray-700">Dec 2023</h2>
</div>
<div class="flex flex-col items-center w-10 mr-4 md:w-24">
<div>
<div
class="flex items-center justify-center w-10 h-10 border border-blue-500 rounded-full"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="w-4 h-4 text-blue-500 bi bi-building"
viewBox="0 0 16 16"
>
<path
fill-rule="evenodd"
d="M14.763.075A.5.5 0 0 1 15 .5v15a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5V14h-1v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V10a.5.5 0 0 1 .342-.474L6 7.64V4.5a.5.5 0 0 1 .276-.447l8-4a.5.5 0 0 1 .487.022zM6 8.694 1 10.36V15h5V8.694zM7 15h2v-1.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5V15h2V1.309l-7 3.5V15z"
></path>
<path
d="M2 11h1v1H2v-1zm2 0h1v1H4v-1zm-2 2h1v1H2v-1zm2 0h1v1H4v-1zm4-4h1v1H8V9zm2 0h1v1h-1V9zm-2 2h1v1H8v-1zm2 0h1v1h-1v-1zm2-2h1v1h-1V9zm0 2h1v1h-1v-1zM8 7h1v1H8V7zm2 0h1v1h-1V7zm2 0h1v1h-1V7zM8 5h1v1H8V5zm2 0h1v1h-1V5zm2 0h1v1h-1V5zm0-2h1v1h-1V3z"
></path>
</svg>
</div>
</div>
<div class="w-px h-full bg-blue-300"></div>
</div>
<div class="relative flex-1 mb-16 bg-white rounded shadow md:mb-8">
<div
class="absolute inline-block w-4 overflow-hidden -translate-y-1/2 top-7 -left-4"
>
<div
class="h-10 origin-top-right transform -rotate-45 bg-white drop-shadow-lg"
></div>
</div>
<div class="relative z-20 p-6">
<p class="mb-2 text-xl font-bold text-gray-600">
Peluncuran Aplikasi ThriveIn App
</p>
<p class="text-gray-700">
ThriveIn App hadir! Hasil dari Capstone Project di Bangkit
Academy, kami membawa inovasi ke tangan Anda untuk
mengoptimalkan potensi bisnis Anda.
</p>
</div>
</div>
</div>
<div class="relative flex justify-between">
<div class="hidden w-24 py-1 md:block">
<h2 class="text-base font-medium text-gray-700">
Jan - Feb 2024
</h2>
</div>
<div
class="absolute inline-block w-24 py-1 left-16 -top-12 md:hidden"
>
<h2 class="text-base font-medium text-gray-700">
Jan - Feb 2024
</h2>
</div>
<div class="flex flex-col items-center w-10 mr-4 md:w-24">
<div>
<div
class="flex items-center justify-center w-10 h-10 border border-blue-500 rounded-full"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="w-4 h-4 text-blue-500 bi bi-globe"
viewBox="0 0 16 16"
>
<path
d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855A7.97 7.97 0 0 0 5.145 4H7.5V1.077zM4.09 4a9.267 9.267 0 0 1 .64-1.539 6.7 6.7 0 0 1 .597-.933A7.025 7.025 0 0 0 2.255 4H4.09zm-.582 3.5c.03-.877.138-1.718.312-2.5H1.674a6.958 6.958 0 0 0-.656 2.5h2.49zM4.847 5a12.5 12.5 0 0 0-.338 2.5H7.5V5H4.847zM8.5 5v2.5h2.99a12.495 12.495 0 0 0-.337-2.5H8.5zM4.51 8.5a12.5 12.5 0 0 0 .337 2.5H7.5V8.5H4.51zm3.99 0V11h2.653c.187-.765.306-1.608.338-2.5H8.5zM5.145 12c.138.386.295.744.468 1.068.552 1.035 1.218 1.65 1.887 1.855V12H5.145zm.182 2.472a6.696 6.696 0 0 1-.597-.933A9.268 9.268 0 0 1 4.09 12H2.255a7.024 7.024 0 0 0 3.072 2.472zM3.82 11a13.652 13.652 0 0 1-.312-2.5h-2.49c.062.89.291 1.733.656 2.5H3.82zm6.853 3.472A7.024 7.024 0 0 0 13.745 12H11.91a9.27 9.27 0 0 1-.64 1.539 6.688 6.688 0 0 1-.597.933zM8.5 12v2.923c.67-.204 1.335-.82 1.887-1.855.173-.324.33-.682.468-1.068H8.5zm3.68-1h2.146c.365-.767.594-1.61.656-2.5h-2.49a13.65 13.65 0 0 1-.312 2.5zm2.802-3.5a6.959 6.959 0 0 0-.656-2.5H12.18c.174.782.282 1.623.312 2.5h2.49zM11.27 2.461c.247.464.462.98.64 1.539h1.835a7.024 7.024 0 0 0-3.072-2.472c.218.284.418.598.597.933zM10.855 4a7.966 7.966 0 0 0-.468-1.068C9.835 1.897 9.17 1.282 8.5 1.077V4h2.355z"
></path>
</svg>
</div>
</div>
<div class="w-px h-full bg-blue-300"></div>
</div>
<div class="relative flex-1 mb-16 bg-white rounded shadow md:mb-8">
<div
class="absolute inline-block w-4 overflow-hidden -translate-y-1/2 top-7 -left-4"
>
<div
class="h-10 origin-top-right transform -rotate-45 bg-white drop-shadow-lg"
></div>
</div>
<div class="relative z-20 p-6">
<p class="mb-2 text-xl font-bold text-gray-600">
Mengincar Pendanaan dari Program Bangkit Academy
</p>
<p class="text-gray-700">
Ambisi besar kami! Dengan pendanaan $10,000 dari Bangkit
Academy, kami akan tingkatkan fitur, layanan, dan operasional.
Bersiaplah untuk pengalaman terdepan dalam dunia UMKM!
</p>
</div>
<div class="relative z-20 p-6">
<p class="mb-2 text-xl font-bold text-gray-600">
Merancang Layanan Baru Berbasis Machine Learning
</p>
<p class="text-gray-700">
Inovasi tanpa batas! Kami sedang merancang layanan
revolusioner berbasis Machine Learning untuk memberdayakan
UMKM. Ayo bersama-sama menciptakan masa depan yang
berkelanjutan.
</p>
</div>
</div>
</div>
<div class="relative flex justify-between">
<div class="hidden w-24 py-3 md:block">
<h2 class="text-base font-medium text-gray-700">
Mar - Apr 2024
</h2>
</div>
<div
class="absolute inline-block w-24 py-1 left-16 -top-12 md:hidden"
>
<h2 class="text-base font-medium text-gray-700">
Mar - Apr 2024
</h2>
</div>
<div class="flex flex-col items-center w-10 mr-4 md:w-24">
<div>
<div
class="flex items-center justify-center w-10 h-10 border border-blue-500 rounded-full"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="w-4 h-4 text-blue-500 bi bi-code-slash"
viewBox="0 0 16 16"
>
<path
d="M10.478 1.647a.5.5 0 1 0-.956-.294l-4 13a.5.5 0 0 0 .956.294l4-13zM4.854 4.146a.5.5 0 0 1 0 .708L1.707 8l3.147 3.146a.5.5 0 0 1-.708.708l-3.5-3.5a.5.5 0 0 1 0-.708l3.5-3.5a.5.5 0 0 1 .708 0zm6.292 0a.5.5 0 0 0 0 .708L14.293 8l-3.147 3.146a.5.5 0 0 0 .708.708l3.5-3.5a.5.5 0 0 0 0-.708l-3.5-3.5a.5.5 0 0 0-.708 0z"
></path>
</svg>
</div>
</div>
<div class="w-px h-full bg-blue-300"></div>
</div>
<div class="relative flex-1 mb-16 bg-white rounded shadow md:mb-8">
<div
class="absolute inline-block w-4 overflow-hidden -translate-y-1/2 top-7 -left-4"
>
<div
class="h-10 origin-top-right transform -rotate-45 bg-white drop-shadow-lg"
></div>
</div>
<!-- 1 -->
<div class="relative z-20 p-6">
<p class="mb-2 text-xl font-bold text-gray-600">
Open Internship di ThriveIn
</p>
<p class="text-gray-700">
Kami membuka pintu bagi talenta muda! Dapatkan kesempatan
berkontribusi di bidang Mobile Development, Machine Learning,
dan Bisnis
</p>
</div>
<!-- 2 -->
<div class="relative z-20 p-6">
<p class="mb-2 text-xl font-bold text-gray-600">
Merancang Program Inovatif dalam Pemberdayaan UMKM Sekala
Nasional
</p>
<p class="text-gray-700">
Merancang program inovatif berupa workshop dan artikel untuk
membantu UMKM. Workshop kami dirancang untuk memberikan
pemahaman mendalam tentang teknologi dan strategi digital bagi
UMKM.
</p>
</div>
</div>
</div>
<div class="relative flex justify-between">
<div class="hidden w-24 py-3 md:block">
<h2 class="text-base font-medium text-gray-700">
May - Jun 2024
</h2>
</div>
<div
class="absolute inline-block w-24 py-1 left-16 -top-12 md:hidden"
>
<h2 class="text-base font-medium text-gray-700">
May - Jun 2024
</h2>
</div>
<div class="flex flex-col items-center w-10 mr-4 md:w-24">
<div>
<div
class="flex items-center justify-center w-10 h-10 border border-blue-500 rounded-full"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="w-4 h-4 text-blue-500 bi bi-clock"
viewBox="0 0 16 16"
>
<path
d="M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71V3.5z"
></path>
<path
d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm7-8A7 7 0 1 1 1 8a7 7 0 0 1 14 0z"
></path>
</svg>
</div>
</div>
<div class="w-px h-full bg-blue-300"></div>
</div>
<div class="relative flex-1 bg-white rounded shadow">
<div
class="absolute inline-block w-4 overflow-hidden -translate-y-1/2 top-7 -left-4"
>
<div
class="h-10 origin-top-right transform -rotate-45 bg-white drop-shadow-lg"
></div>
</div>
<!-- 1 -->
<div class="relative z-20 p-6">
<p class="mb-2 text-xl font-bold text-gray-600">
Peluncuran Program Pemberdayaan Nasional
</p>
<p class="text-gray-700">
ThriveIn berkomitmen membantu UMKM Indonesia! Meluncurkan
program pelatihan berupa workshop dan articles bermanfaat
untuk memajukan digitalisasi usaha kecil dan menengah sekala
nasional.
</p>
</div>
<!-- 2 -->
<div class="relative z-20 p-6">
<p class="mb-2 text-xl font-bold text-gray-600">
Peluncuran Layanan Baru Berbasis Machine Learning
</p>
<p class="text-gray-700">
Kami tak pernah berhenti berinovasi! Segera hadir layanan baru
berbasis Machine Learning untuk meningkatkan bisnis Anda.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Roadmap ThriveIn End -->
<!-- Our Team Start -->
<section class="bg-white">
<div
class="py-8 px-4 mx-auto max-w-screen-xl text-center lg:py-16 lg:px-6"
>
<div class="mx-auto mb-8 max-w-screen-sm lg:mb-16">
<h2 class="mb-4 text-4xl tracking-tight font-extrabold text-gray-900">
Team Thrive<span class="text-yellow-400">In</span>
</h2>
<p class="font-light text-gray-500 sm:text-xl">
Meet the dedicated members of Capstone Project CH2-PS170. 🚀
</p>
</div>
<div
class="grid gap-8 lg:gap-16 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4"
>
<!-- Team 1 -->
<div class="text-center text-gray-500">
<img
class="mx-auto mb-4"
src="https://storage.googleapis.com/thrivein-asset/website/About/pp_Rama.png"
alt="RA"
/>
<h3 class="mb-1 text-2xl font-bold tracking-tight text-gray-900">
<a href="#">Rama Artha</a>
</h3>
<p>Cloud Computing</p>
</div>
<!-- Team 2 -->
<div class="text-center text-gray-500">
<img
class="mx-auto mb-4"
src="https://storage.googleapis.com/thrivein-asset/website/About/pp_Danar_Pro.png"
alt="DB"
/>
<h3 class="mb-1 text-2xl font-bold tracking-tight text-gray-900">
<a href="#">Danar Baadilla</a>
</h3>
<p>Cloud Computing</p>
</div>
<!-- Team 3 -->
<div class="text-center text-gray-500">
<img
class="mx-auto mb-4"
src="https://storage.googleapis.com/thrivein-asset/website/About/pp_Mahesa.png"
alt="MW"
/>
<h3 class="mb-1 text-2xl font-bold tracking-tight text-gray-900">
<a href="#">Mahesa Widiana</a>
</h3>
<p>Mobile Developer</p>
</div>
<!-- Team 4 -->
<div class="text-center text-gray-500">
<img
class="mx-auto mb-4"
src="https://storage.googleapis.com/thrivein-asset/website/About/pp_Rafika.png"
alt="RW"
/>
<h3 class="mb-1 text-2xl font-bold tracking-tight text-gray-900">
<a href="#">Rafika Wardah</a>
</h3>
<p>Mobile Developer</p>
</div>
<!-- Team 5 -->
<div class="text-center text-gray-500">
<img
class="mx-auto mb-4"
src="https://storage.googleapis.com/thrivein-asset/website/About/pp_yudis.png"
alt="YH"
/>
<h3 class="mb-1 text-2xl font-bold tracking-tight text-gray-900">
<a href="#">Yudhistira Hadi</a>
</h3>
<p>Machine Learning</p>
</div>
<!-- Team 6 -->
<div class="text-center text-gray-500">
<img
class="mx-auto mb-4"
src="https://storage.googleapis.com/thrivein-asset/website/About/pp_Ilham.png"
alt="IR"
/>
<h3 class="mb-1 text-2xl font-bold tracking-tight text-gray-900">
<a href="#">Ilham Ramadhan</a>
</h3>
<p>Machine Learning</p>
</div>
<!-- Team 7 -->
<div class="text-center text-gray-500">
<img
class="mx-auto mb-4"
src="https://storage.googleapis.com/thrivein-asset/website/About/pp_Brillian.png"
alt="MB"
/>
<h3 class="mb-1 text-2xl font-bold tracking-tight text-gray-900">
<a href="#">Muhammad Brillian</a>
</h3>
<p>Machine Learning</p>
</div>
</div>
</div>
</section>
<!-- Our Team End -->
<!-- Support By Start -->
<section class="bg-white">
<div class="container px-6 py-12 mx-auto">
<div class="text-center">
<h1 class="mt-2 text-2xl font-semibold text-gray-800 md:text-3xl">
Didukung Oleh
</h1>
<p class="mt-3 text-gray-500">
Project Ini Hasil keluaran Capstone Group CH2-PS170
</p>
</div>
<div
class="grid grid-cols-1 gap-12 mt-10 md:grid-cols-2 lg:grid-cols-2"
>
<div class="flex flex-col items-center justify-center text-center">
<img
src="https://storage.googleapis.com/thrivein-asset/website/About/Bangkit%20Logo.png"
class="mx-auto my-auto"
/>
</div>
<div class="flex flex-col items-center justify-center text-center">
<img
src="https://storage.googleapis.com/thrivein-asset/website/About/km.png"
class="mx-auto my-auto"
/>
</div>
</div>
</div>
</section>
<!-- Support By End -->
<!--Footer Start -->
<footer>
<section class="flex flex-col h- font-poppins">
<div class="relative py-10 bg-center bg-no-repeat bg-cover">
<div class="absolute top-0 left-0 w-full h-full bg-black"></div>
<div
class="relative z-10 justify-center flex-1 max-w-6xl px-4 py-4 mx-auto lg:py-0"
>
<div class="flex flex-wrap pb-10 -mx-3">
<div class="w-full px-4 mb-11 md:w-1/2 lg:w-4/12 lg:mb-0">
<a
href="#"
class="inline-block pb-2 text-lg font-bold text-gray-300"
>Thrive<span class="text-yellow-500">In</span></a
>
<div class="w-16 mb-4 border-b-2 border-gray-300"></div>
<p
class="text-base font-normal leading-6 text-gray-400 lg:w-64"
>
Pemberdayaan bisnis melalui solusi berkelanjutan, UMKM tumbuh
bersama inovasi terdepan.
</p>
</div>
<div class="w-full px-4 md:w-1/4 lg:w-2/12 mb-11 lg:mb-0">
<h2 class="pb-2 text-lg font-bold text-gray-300">Jelajahi</h2>
<div class="w-16 mb-4 border-b-2 border-gray-300"></div>
<ul>
<li class="mb-4">
<a
href="index.html"
class="inline-block text-base font-normal text-gray-400"
>Beranda</a
>
</li>
<li class="mb-4">
<a
href="about.html"
class="inline-block text-base font-normal text-gray-400"
>
Tentang Kami</a
>
</li>
<li class="mb-4">
<a
href="campaign.html"
class="inline-block text-base font-normal text-gray-400"
>Campaign</a
>
</li>
</ul>
</div>
<div class="w-full px-4 mb-11 lg:mb-0 md:w-1/4 lg:w-2/12">
<h2 class="pb-2 text-lg font-bold text-gray-300">Penting</h2>
<div class="w-16 mb-4 border-b-2 border-gray-300"></div>
<ul>
<li class="mb-4">
<a
href="tac.html"
class="inline-block text-base font-normal text-gray-400"
>TaC</a
>
</li>
<li class="mb-4">
<a
href="faq.html"
class="inline-block text-base font-normal text-gray-400"
>
FAQ</a
>
</li>
<li class="mb-4">
<a
href="contact.html"
class="inline-block text-base font-normal text-gray-400"
>Kontak</a
>
</li>
</ul>
</div>
<div class="w-full px-4 mb-11 lg:mb-0 md:w-1/3 lg:w-3/12">
<h2 class="pb-2 text-lg font-bold text-gray-300">
Terhubung dengan Kami!
</h2>
<div class="w-16 mb-4 border-b-2 border-gray-300"></div>
<div class="flex justify-start mt-4">
<a
href="index.html"
type="button"
class="m-1 leading-normal text-gray-300 uppercase transition duration-150 ease-in-out border-2 border-gray-400 rounded-full hover:border-blue-600 text-text-gray-50 hover:bg-blue-600 w-9 h-9"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="w-4 h-full mx-auto text-gray-100 bi bi-google"
viewBox="0 0 16 16"
>
<path
d="M15.545 6.558a9.42 9.42 0 0 1 .139 1.626c0 2.434-.87 4.492-2.384 5.885h.002C11.978 15.292 10.158 16 8 16A8 8 0 1 1 8 0a7.689 7.689 0 0 1 5.352 2.082l-2.284 2.284A4.347 4.347 0 0 0 8 3.166c-2.087 0-3.86 1.408-4.492 3.304a4.792 4.792 0 0 0 0 3.063h.003c.635 1.893 2.405 3.301 4.492 3.301 1.078 0 2.004-.276 2.722-.764h-.003a3.702 3.702 0 0 0 1.599-2.431H8v-3.08h7.545z"
/>
</svg>
</a>
<a
href="#"
type="button"
class="m-1 flex items-center justify-center leading-normal text-gray-400 uppercase transition duration-150 ease-in-out border-2 border-gray-400 rounded-full hover:border-blue-600 hover:bg-blue-600 w-9 h-9"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="23"
height="23"
viewBox="25 -5 200 256"
>
<g
fill="#ffffff"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<g transform="scale(16,16)">
<path
d="M4.77344,1c-2.07812,0 -3.77344,1.69531 -3.77344,3.77344v5.45703c0,2.07422 1.69531,3.76953 3.77344,3.76953h5.45703c2.07422,0 3.76953,-1.69531 3.76953,-3.77344v-5.45313c0,-2.07812 -1.69531,-3.77344 -3.77344,-3.77344zM4.77344,2h5.45313c1.53906,0 2.77344,1.23438 2.77344,2.77344v5.45313c0,1.53906 -1.23437,2.77344 -2.76953,2.77344h-5.45703c-1.53906,0 -2.77344,-1.23437 -2.77344,-2.76953v-5.45703c0,-1.53906 1.23438,-2.77344 2.77344,-2.77344zM11.5,3c-0.27734,0 -0.5,0.22266 -0.5,0.5c0,0.27734 0.22266,0.5 0.5,0.5c0.27734,0 0.5,-0.22266 0.5,-0.5c0,-0.27734 -0.22266,-0.5 -0.5,-0.5zM7.5,4c-1.92578,0 -3.5,1.57422 -3.5,3.5c0,1.92578 1.57422,3.5 3.5,3.5c1.92578,0 3.5,-1.57422 3.5,-3.5c0,-1.92578 -1.57422,-3.5 -3.5,-3.5zM7.5,5c1.38672,0 2.5,1.11328 2.5,2.5c0,1.38672 -1.11328,2.5 -2.5,2.5c-1.38672,0 -2.5,-1.11328 -2.5,-2.5c0,-1.38672 1.11328,-2.5 2.5,-2.5z"
></path>
</g>
</g>
</svg>
</a>
</div>
</div>
</div>
<div class="pt-4 text-center text-gray-300">
<span>© Copyright 2023 . ThriveIn All Rights Reserved</span>
</div>
</div>
</div>
</section>
</footer>
<!-- Footer End -->
</body>
</html>