-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1596 lines (1529 loc) · 115 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">
<!-- Mirrored from dadan.pw/ by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 12 Jul 2024 02:30:48 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link
rel="stylesheet"
href="./cdn.jsdelivr.net/npm/swiper%4011/swiper-bundle.min.css"
/>
<link href="./cdn.jsdelivr.net/npm/tailwindcss%402.2.19/dist/tailwind.min.css" rel="stylesheet">
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true });
</script>
<script src="./cdn.jsdelivr.net/npm/swiper%4011/swiper-bundle.min.js"></script>
<link rel="preload" as="style" href="build/assets/app-BTvbINok.css" /><link rel="modulepreload" href="build/assets/app-BrVPeIpY.js" /><link rel="stylesheet" href="build/assets/app-BTvbINok.css" /><script type="module" src="build/assets/app-BrVPeIpY.js"></script> <link rel="stylesheet" href="build/assets/swiper-bundle-D_JgF5ni.css">
<script src="build/assets/swiper-bundle.min-DTBvtxVg.js"></script>
<title>
</title>
<link rel="stylesheet" href="/cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" />
</head>
<body class="bg-gray-50">
<nav class="sticky top-0 z-50 shadow-lg backdrop-blur bg-white/90">
<div class="container">
<div class="flex items-center justify-between h-16">
<a href="index.html">
<img class=" w-44" src="logo.png" alt="">
</a>
<div
class="absolute w-full sm:w-auto bg-white sm:bg-transparent sm:top-0 top-16 left-0 sm:relative sm:!block menu_mobile">
<ul class="flex flex-col sm:items-center sm:justify-start sm:flex-row">
<li class="block sm:w-auto">
<a class="block px-2 py-2 text-sm tracking-wide transition-all rounded hover:text-warna1"
href="index.html">Home</a>
</li>
<li class="relative block sm:w-auto group">
<a class="flex items-center justify-between gap-2 px-2 py-2 text-sm tracking-wide transition-all rounded sm:justify-start hover:text-warna1"
href="javascript:void(0)">
<span>Riset</span>
<span>
<svg class="transition-all group-hover:rotate-180" xmlns="http://www.w3.org/2000/svg"
width="17" height="17" viewBox="0 0 256 256">
<rect width="256" height="256" fill="none" />
<path fill="currentColor"
d="m216.49 104.49l-80 80a12 12 0 0 1-17 0l-80-80a12 12 0 0 1 17-17L128 159l71.51-71.52a12 12 0 0 1 17 17Z" />
</svg>
</span>
</a>
<ul
class="relative hidden sm:absolute sm:flex top-0 transition-all invisible group-hover:visible group-hover:opacity-100 sm:border-t-2 group-hover:flex max-w-full sm:max-w-[200px] sm:top-14 sm:group-hover:top-10 p-4 flex-col gap-2 bg-white sm:shadow-lg sm:rounded-lg w-full sm:w-[200px] left-0">
<li>
<a class="text-sm hover:text-warna1" href="riset/pengabdian-kepada-masyarakat.html">Pengabdian Kepada Masyarakat</a>
</li>
</ul>
</li>
<li class="relative block sm:w-auto group">
<a class="flex items-center justify-between gap-2 px-2 py-2 text-sm tracking-wide transition-all rounded sm:justify-start hover:text-warna1"
href="javascript:void(0)">
<span>Journal</span>
<span>
<svg class="transition-all group-hover:rotate-180" xmlns="http://www.w3.org/2000/svg"
width="17" height="17" viewBox="0 0 256 256">
<rect width="256" height="256" fill="none" />
<path fill="currentColor"
d="m216.49 104.49l-80 80a12 12 0 0 1-17 0l-80-80a12 12 0 0 1 17-17L128 159l71.51-71.52a12 12 0 0 1 17 17Z" />
</svg>
</span>
</a>
<ul
class="relative hidden sm:absolute sm:flex top-0 transition-all invisible group-hover:visible group-hover:opacity-100 sm:border-t-2 group-hover:flex max-w-full sm:max-w-[200px] sm:top-14 sm:group-hover:top-10 p-4 flex-col gap-2 bg-white sm:shadow-lg sm:rounded-lg w-full sm:w-[200px] left-0">
<li>
<a class="flex items-center justify-between text-sm hover:text-warna1"
href="https://jurnal.stmik-mi.ac.id/index.php/imeisj">
<span>IMEISJ</span>
<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17"
viewBox="0 0 24 24" style="fill: rgba(0, 0, 0, 1);transform: ;msFilter:;">
<path d="m13 3 3.293 3.293-7 7 1.414 1.414 7-7L21 11V3z"></path>
<path
d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z">
</path>
</svg> </a>
</li>
<li>
<a class="flex items-center justify-between text-sm hover:text-warna1"
href="https://jurnal.stmik-mi.ac.id/index.php/jcb">
<span>JCB</span>
<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17"
viewBox="0 0 24 24" style="fill: rgba(0, 0, 0, 1);transform: ;msFilter:;">
<path d="m13 3 3.293 3.293-7 7 1.414 1.414 7-7L21 11V3z"></path>
<path
d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z">
</path>
</svg> </a>
</li>
</ul>
</li>
<li class="relative block sm:w-auto group">
<a class="flex items-center justify-between gap-2 px-2 py-2 text-sm tracking-wide transition-all rounded sm:justify-start hover:text-warna1"
href="javascript:void(0)">
<span>Profile</span>
<span>
<svg class="transition-all group-hover:rotate-180" xmlns="http://www.w3.org/2000/svg"
width="17" height="17" viewBox="0 0 256 256">
<rect width="256" height="256" fill="none" />
<path fill="currentColor"
d="m216.49 104.49l-80 80a12 12 0 0 1-17 0l-80-80a12 12 0 0 1 17-17L128 159l71.51-71.52a12 12 0 0 1 17 17Z" />
</svg>
</span>
</a>
<ul
class="relative hidden sm:absolute sm:flex top-0 transition-all invisible group-hover:visible group-hover:opacity-100 sm:border-t-2 group-hover:flex max-w-full sm:max-w-[200px] sm:top-14 sm:group-hover:top-10 p-4 flex-col gap-2 bg-white sm:shadow-lg sm:rounded-lg w-full sm:w-[200px] left-0">
<li>
<a class="text-sm hover:text-warna1" href="profile/tentang-kami.html">Tentang Kami</a>
</li>
<li>
<a class="text-sm hover:text-warna1" href="profile/struktur-organisasi.html">Struktur
Organisasi</a>
</li>
<li>
<a class="text-sm hover:text-warna1" href="profile/program-kerja.html">Program
Kerja</a>
</li>
<li>
<a class="text-sm hover:text-warna1" href="profile/kontak.html">Kontak</a>
</li>
</ul>
</li>
</ul>
</div>
<button id="toggle_menu" class="sm:!hidden block">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<path fill="currentColor" d="M3 18v-2h18v2zm0-5v-2h18v2zm0-5V6h18v2z" />
</svg>
</button>
</div>
</div>
</nav>
<div style="--swiper-navigation-color: #fff; --swiper-pagination-color: #fff" class="swiper mySwiper">
<div class="swiper-wrapper sm:max-h-[380px] sm:h-auto">
<div style="background-image: url('./stmik-mi.ac.id/assets/img/slider/1.jpg');background-repeat:no-repeat;background-size:cover;"
class="relative w-full h-full max-h-full py-10 overflow-hidden swiper-slide home_slider">
<div class="">
<img class="w-full h-full" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
</div>
<div class="container">
<div
class="absolute top-0 bottom-0 z-10 flex flex-col gap-2 px-3 py-12 font-bold text-white sm:px-14 sm:p-24 lef-0">
<div class="text-lg sm:text-4xl line-clamp-2 font-semibold bg-clip-text text-transparent bg-gradient-to-r from-[#E67E22] to-white"
data-swiper-parallax="-300">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru
</div>
<div class="text-sm" data-swiper-parallax="-200">Artikel</div>
<div class="text sm:pr-32" data-swiper-parallax="-100">
<p ata-swiper-parallax="-800"
class="text-sm line-clamp-2 break-before-all sm:line-clamp-none">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam
dictum mattis velit, sit amet faucibus felis iaculis nec. Nulla
laoreet justo vitae porttitor porttitor. Suspendisse in sem justo.
Integer laoreet magna nec elit suscipit, ac laoreet nibh
</p>
<a
href="berita/2024/18/test-detail-berita.html"
class="inline-block p-2 mt-3 text-sm text-white transition-all bg-transparent border border-white rounded hover:bg-white hover:text-warna1">Baca
Selengkapnya</a>
</div>
</div>
</div>
</div>
<div style="background-image: url('./stmik-mi.ac.id/assets/img/slider/1.jpg');background-repeat:no-repeat;background-size:cover;"
class="relative w-full h-full max-h-full py-10 overflow-hidden swiper-slide home_slider">
<div class="">
<img class="w-full h-full" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
</div>
<div class="container">
<div
class="absolute top-0 bottom-0 z-10 flex flex-col gap-2 px-3 py-12 font-bold text-white sm:px-14 sm:p-24 lef-0">
<div class="text-lg sm:text-4xl line-clamp-2 font-semibold bg-clip-text text-transparent bg-gradient-to-r from-[#E67E22] to-white"
data-swiper-parallax="-300">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru
</div>
<div class="text-sm" data-swiper-parallax="-200">Artikel</div>
<div class="text sm:pr-32" data-swiper-parallax="-100">
<p ata-swiper-parallax="-800"
class="text-sm line-clamp-2 break-before-all sm:line-clamp-none">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam
dictum mattis velit, sit amet faucibus felis iaculis nec. Nulla
laoreet justo vitae porttitor porttitor. Suspendisse in sem justo.
Integer laoreet magna nec elit suscipit, ac laoreet nibh
</p>
<a
href="berita/2024/18/test-detail-berita.html"
class="inline-block p-2 mt-3 text-sm text-white transition-all bg-transparent border border-white rounded hover:bg-white hover:text-warna1">Baca
Selengkapnya</a>
</div>
</div>
</div>
</div>
<div style="background-image: url('./stmik-mi.ac.id/assets/img/slider/1.jpg');background-repeat:no-repeat;background-size:cover;"
class="relative w-full h-full max-h-full py-10 overflow-hidden swiper-slide home_slider">
<div class="">
<img class="w-full h-full" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
</div>
<div class="container">
<div
class="absolute top-0 bottom-0 z-10 flex flex-col gap-2 px-3 py-12 font-bold text-white sm:px-14 sm:p-24 lef-0">
<div class="text-lg sm:text-4xl line-clamp-2 font-semibold bg-clip-text text-transparent bg-gradient-to-r from-[#E67E22] to-white"
data-swiper-parallax="-300">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru
</div>
<div class="text-sm" data-swiper-parallax="-200">Artikel</div>
<div class="text sm:pr-32" data-swiper-parallax="-100">
<p ata-swiper-parallax="-800"
class="text-sm line-clamp-2 break-before-all sm:line-clamp-none">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam
dictum mattis velit, sit amet faucibus felis iaculis nec. Nulla
laoreet justo vitae porttitor porttitor. Suspendisse in sem justo.
Integer laoreet magna nec elit suscipit, ac laoreet nibh
</p>
<a
href="berita/2024/18/test-detail-berita.html"
class="inline-block p-2 mt-3 text-sm text-white transition-all bg-transparent border border-white rounded hover:bg-white hover:text-warna1">Baca
Selengkapnya</a>
</div>
</div>
</div>
</div>
<div style="background-image: url('./stmik-mi.ac.id/assets/img/slider/1.jpg');background-repeat:no-repeat;background-size:cover;"
class="relative w-full h-full max-h-full py-10 overflow-hidden swiper-slide home_slider">
<div class="">
<img class="w-full h-full" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
</div>
<div class="container">
<div
class="absolute top-0 bottom-0 z-10 flex flex-col gap-2 px-3 py-12 font-bold text-white sm:px-14 sm:p-24 lef-0">
<div class="text-lg sm:text-4xl line-clamp-2 font-semibold bg-clip-text text-transparent bg-gradient-to-r from-[#E67E22] to-white"
data-swiper-parallax="-300">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru
</div>
<div class="text-sm" data-swiper-parallax="-200">Artikel</div>
<div class="text sm:pr-32" data-swiper-parallax="-100">
<p ata-swiper-parallax="-800"
class="text-sm line-clamp-2 break-before-all sm:line-clamp-none">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam
dictum mattis velit, sit amet faucibus felis iaculis nec. Nulla
laoreet justo vitae porttitor porttitor. Suspendisse in sem justo.
Integer laoreet magna nec elit suscipit, ac laoreet nibh
</p>
<a
href="berita/2024/18/test-detail-berita.html"
class="inline-block p-2 mt-3 text-sm text-white transition-all bg-transparent border border-white rounded hover:bg-white hover:text-warna1">Baca
Selengkapnya</a>
</div>
</div>
</div>
</div>
<div style="background-image: url('./stmik-mi.ac.id/assets/img/slider/1.jpg');background-repeat:no-repeat;background-size:cover;"
class="relative w-full h-full max-h-full py-10 overflow-hidden swiper-slide home_slider">
<div class="">
<img class="w-full h-full" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
</div>
<div class="container">
<div
class="absolute top-0 bottom-0 z-10 flex flex-col gap-2 px-3 py-12 font-bold text-white sm:px-14 sm:p-24 lef-0">
<div class="text-lg sm:text-4xl line-clamp-2 font-semibold bg-clip-text text-transparent bg-gradient-to-r from-[#E67E22] to-white"
data-swiper-parallax="-300">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru
</div>
<div class="text-sm" data-swiper-parallax="-200">Artikel</div>
<div class="text sm:pr-32" data-swiper-parallax="-100">
<p ata-swiper-parallax="-800"
class="text-sm line-clamp-2 break-before-all sm:line-clamp-none">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam
dictum mattis velit, sit amet faucibus felis iaculis nec. Nulla
laoreet justo vitae porttitor porttitor. Suspendisse in sem justo.
Integer laoreet magna nec elit suscipit, ac laoreet nibh
</p>
<a
href="berita/2024/18/test-detail-berita.html"
class="inline-block p-2 mt-3 text-sm text-white transition-all bg-transparent border border-white rounded hover:bg-white hover:text-warna1">Baca
Selengkapnya</a>
</div>
</div>
</div>
</div>
<div style="background-image: url('./stmik-mi.ac.id/assets/img/slider/1.jpg');background-repeat:no-repeat;background-size:cover;"
class="relative w-full h-full max-h-full py-10 overflow-hidden swiper-slide home_slider">
<div class="">
<img class="w-full h-full" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
</div>
<div class="container">
<div
class="absolute top-0 bottom-0 z-10 flex flex-col gap-2 px-3 py-12 font-bold text-white sm:px-14 sm:p-24 lef-0">
<div class="text-lg sm:text-4xl line-clamp-2 font-semibold bg-clip-text text-transparent bg-gradient-to-r from-[#E67E22] to-white"
data-swiper-parallax="-300">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru
</div>
<div class="text-sm" data-swiper-parallax="-200">Artikel</div>
<div class="text sm:pr-32" data-swiper-parallax="-100">
<p ata-swiper-parallax="-800"
class="text-sm line-clamp-2 break-before-all sm:line-clamp-none">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam
dictum mattis velit, sit amet faucibus felis iaculis nec. Nulla
laoreet justo vitae porttitor porttitor. Suspendisse in sem justo.
Integer laoreet magna nec elit suscipit, ac laoreet nibh
</p>
<a
href="berita/2024/18/test-detail-berita.html"
class="inline-block p-2 mt-3 text-sm text-white transition-all bg-transparent border border-white rounded hover:bg-white hover:text-warna1">Baca
Selengkapnya</a>
</div>
</div>
</div>
</div>
<div style="background-image: url('./stmik-mi.ac.id/assets/img/slider/1.jpg');background-repeat:no-repeat;background-size:cover;"
class="relative w-full h-full max-h-full py-10 overflow-hidden swiper-slide home_slider">
<div class="">
<img class="w-full h-full" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
</div>
<div class="container">
<div
class="absolute top-0 bottom-0 z-10 flex flex-col gap-2 px-3 py-12 font-bold text-white sm:px-14 sm:p-24 lef-0">
<div class="text-lg sm:text-4xl line-clamp-2 font-semibold bg-clip-text text-transparent bg-gradient-to-r from-[#E67E22] to-white"
data-swiper-parallax="-300">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru
</div>
<div class="text-sm" data-swiper-parallax="-200">Artikel</div>
<div class="text sm:pr-32" data-swiper-parallax="-100">
<p ata-swiper-parallax="-800"
class="text-sm line-clamp-2 break-before-all sm:line-clamp-none">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam
dictum mattis velit, sit amet faucibus felis iaculis nec. Nulla
laoreet justo vitae porttitor porttitor. Suspendisse in sem justo.
Integer laoreet magna nec elit suscipit, ac laoreet nibh
</p>
<a
href="berita/2024/18/test-detail-berita.html"
class="inline-block p-2 mt-3 text-sm text-white transition-all bg-transparent border border-white rounded hover:bg-white hover:text-warna1">Baca
Selengkapnya</a>
</div>
</div>
</div>
</div>
<div style="background-image: url('./stmik-mi.ac.id/assets/img/slider/1.jpg');background-repeat:no-repeat;background-size:cover;"
class="relative w-full h-full max-h-full py-10 overflow-hidden swiper-slide home_slider">
<div class="">
<img class="w-full h-full" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
</div>
<div class="container">
<div
class="absolute top-0 bottom-0 z-10 flex flex-col gap-2 px-3 py-12 font-bold text-white sm:px-14 sm:p-24 lef-0">
<div class="text-lg sm:text-4xl line-clamp-2 font-semibold bg-clip-text text-transparent bg-gradient-to-r from-[#E67E22] to-white"
data-swiper-parallax="-300">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru
</div>
<div class="text-sm" data-swiper-parallax="-200">Artikel</div>
<div class="text sm:pr-32" data-swiper-parallax="-100">
<p ata-swiper-parallax="-800"
class="text-sm line-clamp-2 break-before-all sm:line-clamp-none">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam
dictum mattis velit, sit amet faucibus felis iaculis nec. Nulla
laoreet justo vitae porttitor porttitor. Suspendisse in sem justo.
Integer laoreet magna nec elit suscipit, ac laoreet nibh
</p>
<a
href="berita/2024/18/test-detail-berita.html"
class="inline-block p-2 mt-3 text-sm text-white transition-all bg-transparent border border-white rounded hover:bg-white hover:text-warna1">Baca
Selengkapnya</a>
</div>
</div>
</div>
</div>
<div style="background-image: url('./stmik-mi.ac.id/assets/img/slider/1.jpg');background-repeat:no-repeat;background-size:cover;"
class="relative w-full h-full max-h-full py-10 overflow-hidden swiper-slide home_slider">
<div class="">
<img class="w-full h-full" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
</div>
<div class="container">
<div
class="absolute top-0 bottom-0 z-10 flex flex-col gap-2 px-3 py-12 font-bold text-white sm:px-14 sm:p-24 lef-0">
<div class="text-lg sm:text-4xl line-clamp-2 font-semibold bg-clip-text text-transparent bg-gradient-to-r from-[#E67E22] to-white"
data-swiper-parallax="-300">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru
</div>
<div class="text-sm" data-swiper-parallax="-200">Artikel</div>
<div class="text sm:pr-32" data-swiper-parallax="-100">
<p ata-swiper-parallax="-800"
class="text-sm line-clamp-2 break-before-all sm:line-clamp-none">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam
dictum mattis velit, sit amet faucibus felis iaculis nec. Nulla
laoreet justo vitae porttitor porttitor. Suspendisse in sem justo.
Integer laoreet magna nec elit suscipit, ac laoreet nibh
</p>
<a
href="berita/2024/18/test-detail-berita.html"
class="inline-block p-2 mt-3 text-sm text-white transition-all bg-transparent border border-white rounded hover:bg-white hover:text-warna1">Baca
Selengkapnya</a>
</div>
</div>
</div>
</div>
<div style="background-image: url('./stmik-mi.ac.id/assets/img/slider/1.jpg');background-repeat:no-repeat;background-size:cover;"
class="relative w-full h-full max-h-full py-10 overflow-hidden swiper-slide home_slider">
<div class="">
<img class="w-full h-full" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
</div>
<div class="container">
<div
class="absolute top-0 bottom-0 z-10 flex flex-col gap-2 px-3 py-12 font-bold text-white sm:px-14 sm:p-24 lef-0">
<div class="text-lg sm:text-4xl line-clamp-2 font-semibold bg-clip-text text-transparent bg-gradient-to-r from-[#E67E22] to-white"
data-swiper-parallax="-300">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru
</div>
<div class="text-sm" data-swiper-parallax="-200">Artikel</div>
<div class="text sm:pr-32" data-swiper-parallax="-100">
<p ata-swiper-parallax="-800"
class="text-sm line-clamp-2 break-before-all sm:line-clamp-none">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam
dictum mattis velit, sit amet faucibus felis iaculis nec. Nulla
laoreet justo vitae porttitor porttitor. Suspendisse in sem justo.
Integer laoreet magna nec elit suscipit, ac laoreet nibh
</p>
<a
href="berita/2024/18/test-detail-berita.html"
class="inline-block p-2 mt-3 text-sm text-white transition-all bg-transparent border border-white rounded hover:bg-white hover:text-warna1">Baca
Selengkapnya</a>
</div>
</div>
</div>
</div>
<div style="background-image: url('./stmik-mi.ac.id/assets/img/slider/1.jpg');background-repeat:no-repeat;background-size:cover;"
class="relative w-full h-full max-h-full py-10 overflow-hidden swiper-slide home_slider">
<div class="">
<img class="w-full h-full" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
</div>
<div class="container">
<div
class="absolute top-0 bottom-0 z-10 flex flex-col gap-2 px-3 py-12 font-bold text-white sm:px-14 sm:p-24 lef-0">
<div class="text-lg sm:text-4xl line-clamp-2 font-semibold bg-clip-text text-transparent bg-gradient-to-r from-[#E67E22] to-white"
data-swiper-parallax="-300">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru
</div>
<div class="text-sm" data-swiper-parallax="-200">Artikel</div>
<div class="text sm:pr-32" data-swiper-parallax="-100">
<p ata-swiper-parallax="-800"
class="text-sm line-clamp-2 break-before-all sm:line-clamp-none">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam
dictum mattis velit, sit amet faucibus felis iaculis nec. Nulla
laoreet justo vitae porttitor porttitor. Suspendisse in sem justo.
Integer laoreet magna nec elit suscipit, ac laoreet nibh
</p>
<a
href="berita/2024/18/test-detail-berita.html"
class="inline-block p-2 mt-3 text-sm text-white transition-all bg-transparent border border-white rounded hover:bg-white hover:text-warna1">Baca
Selengkapnya</a>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
<main class="block mt-4 mb-6">
<div class="container flex flex-col px-4 mx-auto mt-3 space-y-4">
<div class="flex flex-col w-full gap-3 sm:flex-row">
<div class="w-full">
<div class="flex items-center w-full gap-2 px-3 py-2 font-bold text-white rounded bg-primary">
<span class="">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 20 20">
<rect width="20" height="20" fill="none" />
<path fill="currentColor"
d="M7 0a2 2 0 0 0-2 2h9a2 2 0 0 1 2 2v12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z" />
<path fill="currentColor"
d="M13 20a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2zM9 5h4v5H9zM4 5h4v1H4zm0 2h4v1H4zm0 2h4v1H4zm0 2h9v1H4zm0 2h9v1H4zm0 2h9v1H4z" />
</svg>
</span>
<span class="font-bold">Berita Terbaru LPPM</span>
</div>
<div class="grid grid-cols-1 gap-3 mt-4 sm:grid-cols-2">
<a
href="berita/2024/18/test-detail-berita.html">
<div class="overflow-hidden bg-white rounded p-3 shadow-sm sm:p-4">
<img class="rounded-lg" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
<div class="flex flex-col gap-2 mt-2">
<h1 class="text-lg font-bold tracking-tight text-warna1 line-clamp-2">
Segenap Civitas Academica STMIK Mardira Indonesia mengucapkan,
</h1>
<div>
<span class="text-xs">18 Oktober 2023 18:00</span>
</div>
<p class="text-sm line-clamp-3">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru. Jangan sampai ketinggalan tanggal-tanggal penting yang bisa mempengaruhi
perjalanan akademik kamu. Mulai dari jadwal ujian, masa registrasi, hingga hari
libur akademik, semuanya penting untuk kamu ketahui dan simpan baik-baik. Share dan
save kalender akademik ini yaa, biar kamu selalu siap dan terencana dalam menjalani
masa studi di STMIK Mardira.
</p>
</div>
</div>
</a>
<a
href="berita/2024/18/test-detail-berita.html">
<div class="overflow-hidden bg-white rounded p-3 shadow-sm sm:p-4">
<img class="rounded-lg" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
<div class="flex flex-col gap-2 mt-2">
<h1 class="text-lg font-bold tracking-tight text-warna1 line-clamp-2">
Segenap Civitas Academica STMIK Mardira Indonesia mengucapkan,
</h1>
<div>
<span class="text-xs">18 Oktober 2023 18:00</span>
</div>
<p class="text-sm line-clamp-3">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru. Jangan sampai ketinggalan tanggal-tanggal penting yang bisa mempengaruhi
perjalanan akademik kamu. Mulai dari jadwal ujian, masa registrasi, hingga hari
libur akademik, semuanya penting untuk kamu ketahui dan simpan baik-baik. Share dan
save kalender akademik ini yaa, biar kamu selalu siap dan terencana dalam menjalani
masa studi di STMIK Mardira.
</p>
</div>
</div>
</a>
<a
href="berita/2024/18/test-detail-berita.html">
<div class="overflow-hidden bg-white rounded p-3 shadow-sm sm:p-4">
<img class="rounded-lg" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
<div class="flex flex-col gap-2 mt-2">
<h1 class="text-lg font-bold tracking-tight text-warna1 line-clamp-2">
Segenap Civitas Academica STMIK Mardira Indonesia mengucapkan,
</h1>
<div>
<span class="text-xs">18 Oktober 2023 18:00</span>
</div>
<p class="text-sm line-clamp-3">
Kami ingin mengingatkan kalian semua untuk selalu update dengan kalender akademik
terbaru. Jangan sampai ketinggalan tanggal-tanggal penting yang bisa mempengaruhi
perjalanan akademik kamu. Mulai dari jadwal ujian, masa registrasi, hingga hari
libur akademik, semuanya penting untuk kamu ketahui dan simpan baik-baik. Share dan
save kalender akademik ini yaa, biar kamu selalu siap dan terencana dalam menjalani
masa studi di STMIK Mardira.
</p>
</div>
</div>
</a>
<a
href="berita/2024/18/test-detail-berita.html">
<div class="p-0 overflow-hidden bg-white rounded p-3 shadow-sm sm:p-4">
<img class="rounded-lg" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
<div class="flex flex-col gap-2 mt-2">
<h1 class="text-lg font-bold tracking-tight text-warna1 line-clamp-2">
STMIK Mardira mengucapkan Selamat memperingati Isra Mi'raj! Semoga berkah dan rahmat
Allah senantiasa menyertai kita semua dalam setiap langkah kehidupan.
</h1>
<div>
<span class="text-xs">18 Oktober 2023 18:00</span>
</div>
<p class="text-sm line-clamp-3">
STMIK Mardira mengucapkan Selamat memperingati Isra Mi'raj! Semoga berkah dan rahmat
Allah senantiasa menyertai kita semua dalam setiap langkah kehidupan. Peristiwa Isra
Mi'raj adalah momen penting dalam sejarah Islam yang mengingatkan kita akan
kebesaran Allah dan kebesaran Rasulullah SAW dalam menjalankan misi kenabian.
Isra Mi'raj bukan hanya sebuah perjalanan fisik, tetapi juga perjalanan spiritual
yang menginspirasi kita semua untuk meningkatkan ketaqwaan, keimanan, dan kebaikan
dalam hidup kita. Semoga peristiwa ini menjadi momentum bagi kita untuk lebih
mendekatkan diri kepada Allah SWT dan selalu mendapatkan petunjuk serta hidayah-Nya
dalam setiap keputusan dan langkah yang kita ambil.
</p>
</div>
</div>
</a>
<a
href="berita/2024/18/test-detail-berita.html">
<div class="p-0 overflow-hidden bg-white rounded p-3 shadow-sm sm:p-4">
<img class="rounded-lg" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
<div class="flex flex-col gap-2 mt-2">
<h1 class="text-lg font-bold tracking-tight text-warna1 line-clamp-2">
Selamat Hari Kartini, para perempuan Indonesia yang hebat! Mari kenang perjuangan
R.A. Kartini yang telah membuka jalan bagi emansipasi perempuan di Indonesia
</h1>
<div>
<span class="text-xs">18 Oktober 2023 18:00</span>
</div>
<p class="text-sm line-clamp-3">
Selamat Hari Kartini, para perempuan Indonesia yang hebat! Mari kenang perjuangan
R.A. Kartini yang telah membuka jalan bagi emansipasi perempuan di Indonesia. Di era
modern ini, peran perempuan sangat penting dalam berbagai bidang. Jangan pernah
menyerah menghadapi tantangan dan teruslah berjuang untuk kemajuan dan kemandirian.
Tingkatkan kualitas diri dalam pendidikan, karier, dan kehidupan sosial. Sikap
positif dan semangat juang adalah kunci untuk mencapai impian dan tujuan.
</p>
</div>
</div>
</a>
<a
href="berita/2024/18/test-detail-berita.html">
<div class="p-0 overflow-hidden bg-white rounded p-3 shadow-sm sm:p-4">
<img class="rounded-lg" src="./stmik-mi.ac.id/assets/img/slider/1.jpg" alt="">
<div class="flex flex-col gap-2 mt-2">
<h1 class="text-lg font-bold tracking-tight text-warna1 line-clamp-2">
Selamat Hari Ramadhan! Mari sambut bulan suci dengan penuh keberkahan dan
kebahagiaan.
</h1>
<div>
<span class="text-xs">18 Oktober 2023 18:00</span>
</div>
<p class="text-sm line-clamp-3">
Selamat Hari Ramadhan! Mari sambut bulan suci dengan penuh keberkahan dan
kebahagiaan. Di bulan yang penuh berkah ini, mari tingkatkan kualitas ibadah dan
amal sholeh kita. Manfaatkan waktu untuk memperbaiki diri, memperkuat hubungan
dengan Allah SWT dan sesama, serta memperbanyak amal kebaikan.
</p>
</div>
</div>
</a>
</div>
</div>
<div class="sticky w-full sm:max-w-xs top-16">
<div class="grid space-y-3 ">
<div class="bg-white p-3 rounded-lg">
<div class="flex w-full gap-1 px-3 py-2 font-bold text-white rounded bg-primary">
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 48 48">
<rect width="48" height="48" fill="none" />
<g fill="currentColor">
<path fill-rule="evenodd"
d="M12 21a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2zm0 2v2h2v-2zm6 0a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2zm2 0h2v2h-2zm8-2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2zm0 2v2h2v-2zm-18 8a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2zm4 0v2h-2v-2zm6-2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2zm2 2h-2v2h2z"
clip-rule="evenodd" />
<path d="M36 32.5a1 1 0 1 0-2 0v2.914l1.293 1.293a1 1 0 0 0 1.414-1.414L36 34.586z" />
<path fill-rule="evenodd"
d="M12 7a1 1 0 1 1 2 0v5a1 1 0 1 0 2 0V9h10V7a1 1 0 1 1 2 0v5a1 1 0 1 0 2 0V9h3a3 3 0 0 1 3 3v16.07A7.001 7.001 0 0 1 35 42a6.99 6.99 0 0 1-5.745-3H9a3 3 0 0 1-3-3V12a3 3 0 0 1 3-3h3zm16 28a7 7 0 0 1 6-6.93V18H8v18a1 1 0 0 0 1 1h19.29a7 7 0 0 1-.29-2m12 0a5 5 0 1 1-10 0a5 5 0 0 1 10 0"
clip-rule="evenodd" />
</g>
</svg>
<span class="font-bold">Agenda</span>
</div>
<div class="flex flex-col grid-cols-2 gap-2 mt-3 sm:grid-cols-1">
<a href="#">
<div
class="flex bg-gray-200 group hover:bg-primary/10 transition-all hover:border-t-primary hover:text-primary border-t-gray-300 border-t-[3px] text-gray-800 p-2 rounded-lg items-center gap-3 agenda-item active">
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<g fill="none">
<path fill="currentColor" fill-opacity="0.25" fill-rule="evenodd"
d="M7 4.432c0-.155 0-.233-.05-.278c-.052-.045-.128-.035-.28-.015c-1.12.143-1.902.436-2.498 1.033C3 6.343 3 8.229 3 12c0 3.771 0 5.657 1.172 6.828C5.343 20 7.229 20 11 20h2c3.771 0 5.657 0 6.828-1.172C21 17.657 21 15.771 21 12c0-3.771 0-5.657-1.172-6.828c-.596-.597-1.378-.89-2.499-1.033c-.151-.02-.227-.03-.278.015C17 4.2 17 4.277 17 4.432V6.5a1.5 1.5 0 0 1-3 0V4.3c0-.141 0-.212-.044-.255C13.912 4 13.842 4 13.701 4H10.3c-.142 0-.212 0-.256.045C10 4.088 10 4.159 10 4.3v2.2a1.5 1.5 0 1 1-3 0z"
clip-rule="evenodd" />
<path stroke="currentColor" stroke-linecap="round" d="M8.5 2.5v4m7-4v4" />
<circle cx="7.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="7.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="7.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="16.5" r=".5" fill="currentColor" />
</g>
</svg>
</div>
<div class="flex flex-col">
<div class="flex gap-2">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14"
viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<path fill="currentColor"
d="M6.94 2c.416 0 .753.324.753.724v1.46c.668-.012 1.417-.012 2.26-.012h4.015c.842 0 1.591 0 2.259.013v-1.46c0-.4.337-.725.753-.725s.753.324.753.724V4.25c1.445.111 2.394.384 3.09 1.055c.698.67.982 1.582 1.097 2.972L22 9H2v-.724c.116-1.39.4-2.302 1.097-2.972c.697-.67 1.645-.944 3.09-1.055V2.724c0-.4.337-.724.753-.724" />
<path fill="currentColor"
d="M22 14v-2c0-.839-.004-2.335-.017-3H2.01c-.013.665-.01 2.161-.01 3v2c0 3.771 0 5.657 1.172 6.828C4.343 22 6.228 22 10 22h4c3.77 0 5.656 0 6.828-1.172C22 19.658 22 17.772 22 14"
opacity="0.5" />
<path fill="currentColor"
d="M18 17a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m-5 4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m-5 4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0" />
</svg>
</span>
<span class="text-xs">5 Februari 2023 18:00 - Indonesia</span>
</div>
<a href="#">
<p class="text-sm line-clamp-1 sm:line-clamp-4">
Penelitian bidang web development
</p>
</a>
</div>
</div>
</a>
<a href="#">
<div
class="flex bg-gray-200 group hover:bg-primary/10 transition-all hover:border-t-primary hover:text-primary border-t-gray-300 border-t-[3px] text-gray-800 p-2 rounded-lg items-center gap-3 agenda-item ">
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<g fill="none">
<path fill="currentColor" fill-opacity="0.25" fill-rule="evenodd"
d="M7 4.432c0-.155 0-.233-.05-.278c-.052-.045-.128-.035-.28-.015c-1.12.143-1.902.436-2.498 1.033C3 6.343 3 8.229 3 12c0 3.771 0 5.657 1.172 6.828C5.343 20 7.229 20 11 20h2c3.771 0 5.657 0 6.828-1.172C21 17.657 21 15.771 21 12c0-3.771 0-5.657-1.172-6.828c-.596-.597-1.378-.89-2.499-1.033c-.151-.02-.227-.03-.278.015C17 4.2 17 4.277 17 4.432V6.5a1.5 1.5 0 0 1-3 0V4.3c0-.141 0-.212-.044-.255C13.912 4 13.842 4 13.701 4H10.3c-.142 0-.212 0-.256.045C10 4.088 10 4.159 10 4.3v2.2a1.5 1.5 0 1 1-3 0z"
clip-rule="evenodd" />
<path stroke="currentColor" stroke-linecap="round" d="M8.5 2.5v4m7-4v4" />
<circle cx="7.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="7.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="7.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="16.5" r=".5" fill="currentColor" />
</g>
</svg>
</div>
<div class="flex flex-col">
<div class="flex gap-2">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14"
viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<path fill="currentColor"
d="M6.94 2c.416 0 .753.324.753.724v1.46c.668-.012 1.417-.012 2.26-.012h4.015c.842 0 1.591 0 2.259.013v-1.46c0-.4.337-.725.753-.725s.753.324.753.724V4.25c1.445.111 2.394.384 3.09 1.055c.698.67.982 1.582 1.097 2.972L22 9H2v-.724c.116-1.39.4-2.302 1.097-2.972c.697-.67 1.645-.944 3.09-1.055V2.724c0-.4.337-.724.753-.724" />
<path fill="currentColor"
d="M22 14v-2c0-.839-.004-2.335-.017-3H2.01c-.013.665-.01 2.161-.01 3v2c0 3.771 0 5.657 1.172 6.828C4.343 22 6.228 22 10 22h4c3.77 0 5.656 0 6.828-1.172C22 19.658 22 17.772 22 14"
opacity="0.5" />
<path fill="currentColor"
d="M18 17a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m-5 4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m-5 4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0" />
</svg>
</span>
<span class="text-xs">5 Februari 2023 18:00 - Indonesia</span>
</div>
<a href="#">
<p class="text-sm line-clamp-1 sm:line-clamp-4">
Penelitian bidang web development
</p>
</a>
</div>
</div>
</a>
<a href="#">
<div
class="flex bg-gray-200 group hover:bg-primary/10 transition-all hover:border-t-primary hover:text-primary border-t-gray-300 border-t-[3px] text-gray-800 p-2 rounded-lg items-center gap-3 agenda-item ">
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<g fill="none">
<path fill="currentColor" fill-opacity="0.25" fill-rule="evenodd"
d="M7 4.432c0-.155 0-.233-.05-.278c-.052-.045-.128-.035-.28-.015c-1.12.143-1.902.436-2.498 1.033C3 6.343 3 8.229 3 12c0 3.771 0 5.657 1.172 6.828C5.343 20 7.229 20 11 20h2c3.771 0 5.657 0 6.828-1.172C21 17.657 21 15.771 21 12c0-3.771 0-5.657-1.172-6.828c-.596-.597-1.378-.89-2.499-1.033c-.151-.02-.227-.03-.278.015C17 4.2 17 4.277 17 4.432V6.5a1.5 1.5 0 0 1-3 0V4.3c0-.141 0-.212-.044-.255C13.912 4 13.842 4 13.701 4H10.3c-.142 0-.212 0-.256.045C10 4.088 10 4.159 10 4.3v2.2a1.5 1.5 0 1 1-3 0z"
clip-rule="evenodd" />
<path stroke="currentColor" stroke-linecap="round" d="M8.5 2.5v4m7-4v4" />
<circle cx="7.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="7.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="7.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="16.5" r=".5" fill="currentColor" />
</g>
</svg>
</div>
<div class="flex flex-col">
<div class="flex gap-2">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14"
viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<path fill="currentColor"
d="M6.94 2c.416 0 .753.324.753.724v1.46c.668-.012 1.417-.012 2.26-.012h4.015c.842 0 1.591 0 2.259.013v-1.46c0-.4.337-.725.753-.725s.753.324.753.724V4.25c1.445.111 2.394.384 3.09 1.055c.698.67.982 1.582 1.097 2.972L22 9H2v-.724c.116-1.39.4-2.302 1.097-2.972c.697-.67 1.645-.944 3.09-1.055V2.724c0-.4.337-.724.753-.724" />
<path fill="currentColor"
d="M22 14v-2c0-.839-.004-2.335-.017-3H2.01c-.013.665-.01 2.161-.01 3v2c0 3.771 0 5.657 1.172 6.828C4.343 22 6.228 22 10 22h4c3.77 0 5.656 0 6.828-1.172C22 19.658 22 17.772 22 14"
opacity="0.5" />
<path fill="currentColor"
d="M18 17a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m-5 4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m-5 4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0" />
</svg>
</span>
<span class="text-xs">5 Februari 2023 18:00 - Indonesia</span>
</div>
<a href="#">
<p class="text-sm line-clamp-1 sm:line-clamp-4">
Penelitian bidang web development
</p>
</a>
</div>
</div>
</a>
<a href="#">
<div
class="flex bg-gray-200 group hover:bg-primary/10 transition-all hover:border-t-primary hover:text-primary border-t-gray-300 border-t-[3px] text-gray-800 p-2 rounded-lg items-center gap-3 agenda-item ">
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<g fill="none">
<path fill="currentColor" fill-opacity="0.25" fill-rule="evenodd"
d="M7 4.432c0-.155 0-.233-.05-.278c-.052-.045-.128-.035-.28-.015c-1.12.143-1.902.436-2.498 1.033C3 6.343 3 8.229 3 12c0 3.771 0 5.657 1.172 6.828C5.343 20 7.229 20 11 20h2c3.771 0 5.657 0 6.828-1.172C21 17.657 21 15.771 21 12c0-3.771 0-5.657-1.172-6.828c-.596-.597-1.378-.89-2.499-1.033c-.151-.02-.227-.03-.278.015C17 4.2 17 4.277 17 4.432V6.5a1.5 1.5 0 0 1-3 0V4.3c0-.141 0-.212-.044-.255C13.912 4 13.842 4 13.701 4H10.3c-.142 0-.212 0-.256.045C10 4.088 10 4.159 10 4.3v2.2a1.5 1.5 0 1 1-3 0z"
clip-rule="evenodd" />
<path stroke="currentColor" stroke-linecap="round" d="M8.5 2.5v4m7-4v4" />
<circle cx="7.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="7.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="7.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="16.5" r=".5" fill="currentColor" />
</g>
</svg>
</div>
<div class="flex flex-col">
<div class="flex gap-2">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14"
viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<path fill="currentColor"
d="M6.94 2c.416 0 .753.324.753.724v1.46c.668-.012 1.417-.012 2.26-.012h4.015c.842 0 1.591 0 2.259.013v-1.46c0-.4.337-.725.753-.725s.753.324.753.724V4.25c1.445.111 2.394.384 3.09 1.055c.698.67.982 1.582 1.097 2.972L22 9H2v-.724c.116-1.39.4-2.302 1.097-2.972c.697-.67 1.645-.944 3.09-1.055V2.724c0-.4.337-.724.753-.724" />
<path fill="currentColor"
d="M22 14v-2c0-.839-.004-2.335-.017-3H2.01c-.013.665-.01 2.161-.01 3v2c0 3.771 0 5.657 1.172 6.828C4.343 22 6.228 22 10 22h4c3.77 0 5.656 0 6.828-1.172C22 19.658 22 17.772 22 14"
opacity="0.5" />
<path fill="currentColor"
d="M18 17a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m-5 4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m-5 4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0" />
</svg>
</span>
<span class="text-xs">5 Februari 2023 18:00 - Indonesia</span>
</div>
<a href="#">
<p class="text-sm line-clamp-1 sm:line-clamp-4">
Penelitian bidang web development
</p>
</a>
</div>
</div>
</a>
<a href="#">
<div
class="flex bg-gray-200 group hover:bg-primary/10 transition-all hover:border-t-primary hover:text-primary border-t-gray-300 border-t-[3px] text-gray-800 p-2 rounded-lg items-center gap-3 agenda-item ">
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<g fill="none">
<path fill="currentColor" fill-opacity="0.25" fill-rule="evenodd"
d="M7 4.432c0-.155 0-.233-.05-.278c-.052-.045-.128-.035-.28-.015c-1.12.143-1.902.436-2.498 1.033C3 6.343 3 8.229 3 12c0 3.771 0 5.657 1.172 6.828C5.343 20 7.229 20 11 20h2c3.771 0 5.657 0 6.828-1.172C21 17.657 21 15.771 21 12c0-3.771 0-5.657-1.172-6.828c-.596-.597-1.378-.89-2.499-1.033c-.151-.02-.227-.03-.278.015C17 4.2 17 4.277 17 4.432V6.5a1.5 1.5 0 0 1-3 0V4.3c0-.141 0-.212-.044-.255C13.912 4 13.842 4 13.701 4H10.3c-.142 0-.212 0-.256.045C10 4.088 10 4.159 10 4.3v2.2a1.5 1.5 0 1 1-3 0z"
clip-rule="evenodd" />
<path stroke="currentColor" stroke-linecap="round" d="M8.5 2.5v4m7-4v4" />
<circle cx="7.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="10.5" r=".5" fill="currentColor" />
<circle cx="7.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="13.5" r=".5" fill="currentColor" />
<circle cx="7.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="10.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="13.5" cy="16.5" r=".5" fill="currentColor" />
<circle cx="16.5" cy="16.5" r=".5" fill="currentColor" />
</g>
</svg>
</div>
<div class="flex flex-col">
<div class="flex gap-2">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14"
viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<path fill="currentColor"
d="M6.94 2c.416 0 .753.324.753.724v1.46c.668-.012 1.417-.012 2.26-.012h4.015c.842 0 1.591 0 2.259.013v-1.46c0-.4.337-.725.753-.725s.753.324.753.724V4.25c1.445.111 2.394.384 3.09 1.055c.698.67.982 1.582 1.097 2.972L22 9H2v-.724c.116-1.39.4-2.302 1.097-2.972c.697-.67 1.645-.944 3.09-1.055V2.724c0-.4.337-.724.753-.724" />
<path fill="currentColor"
d="M22 14v-2c0-.839-.004-2.335-.017-3H2.01c-.013.665-.01 2.161-.01 3v2c0 3.771 0 5.657 1.172 6.828C4.343 22 6.228 22 10 22h4c3.77 0 5.656 0 6.828-1.172C22 19.658 22 17.772 22 14"
opacity="0.5" />
<path fill="currentColor"
d="M18 17a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m-5 4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m-5 4a1 1 0 1 1-2 0a1 1 0 0 1 2 0m0-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0" />
</svg>
</span>
<span class="text-xs">5 Februari 2023 18:00 - Indonesia</span>
</div>
<a href="#">
<p class="text-sm line-clamp-1 sm:line-clamp-4">
Penelitian bidang web development
</p>
</a>
</div>
</div>
</a>
</div>
<a href="#"
class="block w-full p-2 mt-4 text-sm text-center text-white rounded-lg bg-gradient-to-r from-red-500 bg-primary hover:bg-primary/80">Lebih
Banyak</a>
</div>
<div class=" rounded-lg p-3 bg-white">
<div class="flex items-center w-full gap-2 px-3 py-2 font-bold text-white rounded bg-primary">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
<rect width="20" height="20" fill="none" />
<path fill="currentColor"
d="M3 6c0-1.1.9-2 2-2h8l4-4h2v16h-2l-4-4H5a2 2 0 0 1-2-2H1V6zm8 9v5H8l-1.67-5H5v-2h8v2z" />
</svg>
</span>
<span class="font-bold">Pengumuman</span>
</div>
<div class="grid grid-cols-1 gap-2 mt-3">
<ul class="flex flex-col">
<li class="text-sm">
<a href="#"
class="flex items-start gap-2 p-2 transition-all border border-transparent rounded-lg hover:bg-primary/10 hover:text-primary hover:border-primary hover:border text-neutral-800 group hover:bg-secondary">
<span class="animate-pulse">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<g fill="none" fill-rule="evenodd">
<path
d="M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" />
<path fill="orange"
d="M19 4.741V8a3 3 0 1 1 0 6v3c0 1.648-1.881 2.589-3.2 1.6l-2.06-1.546A8.658 8.658 0 0 0 10 15.446v2.844a2.71 2.71 0 0 1-5.316.744l-1.57-5.496a4.7 4.7 0 0 1 3.326-7.73l3.018-.168a9.344 9.344 0 0 0 4.19-1.259l2.344-1.368C17.326 2.236 19 3.197 19 4.741M5.634 15.078l.973 3.407A.71.71 0 0 0 8 18.29v-3.01l-1.56-.087a4.723 4.723 0 0 1-.806-.115M17 4.741L14.655 6.11A11.343 11.343 0 0 1 10 7.604v5.819c1.787.246 3.488.943 4.94 2.031L17 17zM8 7.724l-1.45.08a2.7 2.7 0 0 0-.17 5.377l.17.015l1.45.08zM19 10v2a1 1 0 0 0 .117-1.993z" />
</g>
</svg>
</span>
Penerimaan Proposal Penelitian Dan PkM DRTPM Tahun Anggaran 2024
</a>
</li>
<li class="text-sm">
<a href="#"
class="flex items-start gap-2 p-2 transition-all border border-transparent rounded-lg hover:bg-primary/10 hover:text-primary hover:border-primary hover:border text-neutral-800 group hover:bg-secondary">
<span class="animate-pulse">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<g fill="none" fill-rule="evenodd">
<path
d="M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" />
<path fill="orange"
d="M19 4.741V8a3 3 0 1 1 0 6v3c0 1.648-1.881 2.589-3.2 1.6l-2.06-1.546A8.658 8.658 0 0 0 10 15.446v2.844a2.71 2.71 0 0 1-5.316.744l-1.57-5.496a4.7 4.7 0 0 1 3.326-7.73l3.018-.168a9.344 9.344 0 0 0 4.19-1.259l2.344-1.368C17.326 2.236 19 3.197 19 4.741M5.634 15.078l.973 3.407A.71.71 0 0 0 8 18.29v-3.01l-1.56-.087a4.723 4.723 0 0 1-.806-.115M17 4.741L14.655 6.11A11.343 11.343 0 0 1 10 7.604v5.819c1.787.246 3.488.943 4.94 2.031L17 17zM8 7.724l-1.45.08a2.7 2.7 0 0 0-.17 5.377l.17.015l1.45.08zM19 10v2a1 1 0 0 0 .117-1.993z" />
</g>
</svg>
</span>
Penerimaan Proposal Penelitian Dan PkM DRTPM Tahun Anggaran 2024
</a>
</li>