home.pt
34 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
<!DOCTYPE html>
<html lang="en" tal:define="home request.home;">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="${home}/static/landing/favicon.svg"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="${home}/static/landing/css/style.css" />
<script type="module" src="${home}/static/landing/js/main.js"></script>
<title tal:content="request.title" />
</head>
<body
class="font-urbanist font-lg m-0 min-h-screen min-w-[320px] bg-[#ffffff] text-lg text-[#213547]"
>
<header
id="navbar"
class="fixed inset-x-0 top-0 z-[60] w-full border-b border-transparent bg-transparent transition-all duration-300 [&.nav-sticky]:bg-white/90 [&.nav-sticky]:shadow-md [&nav.sticky]:backdrop-blur-3xl"
>
<div class="flex h-full items-center py-4">
<div class="container">
<nav
class="flex flex-wrap items-center justify-between gap-4 lg:flex-nowrap"
>
<div class="flex w-full items-center justify-between lg:w-auto">
<a href="#">
<img
src="${home}/static/landing/img/logo-text.png"
alt="logo"
class="flex h-14"
/>
<span class="text-sm font-bold text-slate-800"
>Portal Pelayanan Pajak & Retribusi</span
>
</a>
</div>
<ul
class="menu relative mx-auto hidden grow items-center justify-center lg:flex"
>
<li
class="menu-item text-default-800 hover:text-primary [&.active]:text-primary active mx-2 transition-all duration-300"
>
<a
class="inline-flex items-center rounded-full px-2 py-0.5 text-sm font-bold capitalize lg:text-base"
href="#home"
>Beranda</a
>
</li>
<!-- <li
class="menu-item text-default-800 hover:text-primary [&.active]:text-primary mx-2 transition-all duration-300"
>
<a
class="inline-flex items-center rounded-full px-2 py-0.5 text-sm font-bold capitalize lg:text-base"
href="#causes"
>Berita</a
>
</li> -->
<li
class="menu-item text-default-800 hover:text-primary [&.active]:text-primary mx-2 transition-all duration-300"
>
<a
class="inline-flex items-center rounded-full px-2 py-0.5 text-sm font-bold capitalize lg:text-base"
href="#blog"
>Pengumuman</a
>
</li>
<li
class="menu-item text-default-800 hover:text-primary [&.active]:text-primary mx-2 transition-all duration-300"
>
<a
class="inline-flex items-center rounded-full px-2 py-0.5 text-sm font-bold capitalize lg:text-base"
href="#contact"
>Peraturan</a
>
</li>
</ul>
<div
tal:condition="not:request.user"
class="ms-auto hidden shrink gap-2 lg:inline-flex"
>
<a
class="inline-flex items-center gap-2 rounded-full border border-sky-300 bg-[#0184b0] px-6 py-1.5 text-base font-bold text-slate-100 transition-all hover:border-sky-900 hover:bg-[#0184b0]/70"
href="${home}/login"
><span class="hidden sm:block">Masuk</span></a
>
</div>
<div
tal:condition="not:request.user"
class="ms-auto hidden shrink gap-2 lg:inline-flex"
>
<a
class="inline-flex items-center gap-2 rounded-full border border-amber-100 bg-[#faaf18] px-6 py-1.5 text-base font-bold text-slate-600 transition-all hover:border-amber-600 hover:bg-[#faaf18]/70"
href="${home}/register"
><span class="hidden sm:block">Daftar</span></a
>
</div>
<div
tal:condition="request.user"
class="ms-auto hidden shrink gap-2 lg:inline-flex"
>
<a
class="inline-flex items-center gap-2 rounded-full border border-sky-300 bg-[#0184b0] px-6 py-1.5 text-base font-bold text-slate-100 transition-all hover:border-sky-900 hover:bg-[#0184b0]/70"
href="${home}/logout"
><span class="hidden sm:block">Keluar</span></a
>
</div>
</nav>
</div>
</div>
</header>
<section
id="hero"
class="bg-default-100 dark:bg-default-50 relative bg-cover bg-no-repeat py-24 lg:py-32"
style="
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAB24AAAOzAQMAAABK5rRXAAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMACHhIRQoAAATeSURBVHja7NuxDYRAEATBC+Hzj/UlIAW8EV3ntDuFcPc873dOKBsrcHFxcXFxG9lYgYuL+y5X6f3Pxkf3M+Pi4uLiVrKxAhcXFxcXt5GNFbi4uLi4uI1srMDFxcXFxW1kYwUuLi4uLm4jGytwcXFxcXEb2ViBi4uLixvlXqXnjujr2ViBi4uLi4vbyMYKXFxcXFzcRjZW4OLi4uLiNrKxAhcXFxcXt5GNFbi4uLi4uI1srMDFxcXFxW1kYwUuLi6uOyJ3RI1srMDFxcXFxW1kYwUuLi4uLm4jGytwcXFxcXEb2ViBi4uLi4vbyMYKXFxcXFzcRjZW4OLi4uLiNrKxAhcXF9cdkTuiRjZW4OLi4uLiNrKxAhcXFxcXt5GNFbi4uLi4uI1srMDFxcXFxW1kYwUuLi4uLm4jGytwcXFxcXEb2ViBi4uL647IHVEjGytwcXFxcXEb2ViBi4uLi4t7s2/HNAAAAAjD/LvGBsl68a4CaMxHBS4uLi4ubmM+KnBxcXFxcRvzUYGLi4uLi9uYjwpcXFxcXNzGfFTg4uLi+hH5ETXmowIXFxcXF7cxHxW4uLi4uLiN+ajAxcXFxcVtzEcFLi4uLi5uYz4qcHFxcXFxG/NRgYuLi4uL25iPClxcXFw/Ij+ixnxU4OLi4uLiNuajAhcXFxcXtzEfFbi4uLi4uI35qMDFxcXFxW3MRwUuLi4uLm5jPipwcXFxcXEb81GBi4uL60fkR9SYjwpcXFxcXNzGfFTg4uLi4uI25qMCFxcXFxe3MR8VuLi4uLi4jfmowMXFxcXFbcxHBS4uLi4ubmM+KnBxcXH9iPyIGvNRgYuLi4uL25iPClxcXFxc3MZ8VODi4uLi4jbmowIXFxcXF7cxHxW4uLi4uLiN+ajAxcXFxR37dkwDAACAMMy/a2yQrBfvKgDcxnxU4OLi4voR+RE15qMCFxcXFxe3MR8VuLi4uLi4jfmowMXFxcXFbcxHBS4uLi4ubmM+KnBxcXFxcRvzUYGLi4uLi9uYjwpcXFxcPyI/osZ8VODi4uLi4jbmowIXFxcXF7cxHxW4uLi4uLiN+ajAxcXFxcVtzEcFLi4uLi5uYz4qcHFxcXFxG/NRgYuLi+tH5EfUmI8KXFxcXFzcxnxU4OLi4uLiNuajAhcXFxcXtzEfFbi4uLi4uI35qMDFxcXFxW3MRwUuLi4uLm5jPipwcXFx/Yj8iBrzUYGLi4uLi9uYjwpcXFxcXNzGfFTg4uLi4uI25qMCFxcXFxe3MR8VuLi4uLi4jfmowMXFxcXFbcxHBS4uLq4fkR9RYz4qcHFxcXFxG/NRgYuLi4uL25iPClxcXNy1b8c0AAAwDMP4sx6IPZXiK28NoLi4jWyswMXFxcXFbWRjBS4uLi4ubiMbK3BxcXFxcRvZWIGLi4vrR+RH1MjGClxcXFxc3EY2VuDi4uLi4jaysQIXFxcXF7eRjRW4uLi4uLiNbKzAxcXFxcVtZGMFLi4uLi5uIxsrcHFxcf2I/Iga2ViBi4uLi4vbyMYKXFxcXFzcRjZW4OLi4uLiNrKxAhcXFxcXt5GNFbi4uLi4uI1srMDFxcXFxW1kYwUuLi6uH5EfUSMbK3BxcXFxcRvZWIGLi4uLi9vIxgpcXFxcXNxGNlbg4uLi4uI2srECF/ebA3EEd5kr8tCIAAAAAElFTkSuQmCC');
"
>
<div
class="flex items-center overflow-hidden before:absolute before:inset-0 before:left-[63.67%] before:hidden before:rounded-bl-3xl before:bg-[#faaf18] lg:before:block"
>
<div
class="hero-right absolute -top-80 right-0 bottom-0 w-2/6 bg-contain bg-right bg-no-repeat"
></div>
<div class="container">
<div class="grid grid-cols-1 items-center gap-10 lg:grid-cols-2 mt-4">
<div>
<div class="flex flex-col justify-center">
<h2
class="text-default-950 mb-4 text-2xl font-medium sm:text-3xl xl:text-6xl/tight"
>
Bayar Pajak Kini Lebih Cepat dan Mudah!
</h2>
<p class="mt-2 text-sm md:text-base">
Halo, Warga Tangerang Selatan!<br />
Kini pembayaran Pajak Bumi dan Bangunan (PBB) jadi lebih
mudah. Cukup gunakan
<span class="font-medium">Nomor Objek Pajak (NOP)</span>
Anda, dan selesaikan pembayaran tanpa ribet! Cepat dan
Praktis, Tanpa Perlu Ribet ke Kantor, Akses Kapan Saja &
Di Mana Saja
</p>
<!-- <div class="mt-10">
<a
class="inline-flex items-center justify-center gap-2 rounded-md bg-[#faaf18] px-8 py-2 text-base text-white transition-all duration-300 hover:bg-[#faaf18]/80"
href="#"
>Lebih Lanjut<svg
stroke="currentColor"
fill="none"
stroke-width="2"
viewBox="0 0 24 24"
stroke-linecap="round"
stroke-linejoin="round"
class="h-6 w-6"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M18 8L22 12L18 16"></path>
<path d="M2 12H22"></path></svg
></a>
</div> -->
</div>
</div>
<div class="z-10">
<div class="tilt flex items-center gap-4 md:gap-6">
<div
class="-mt-4 md:mt-0 mb-4 flex w-full flex-col gap-4 md:gap-6"
>
<img
src="${home}/static/landing/img/hero.png"
class="h-full w-full object-cover"
/>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="jenis-pajak" class="relative -mt-44 py-10 md:-mt-46 z-10">
<div class="container">
<div
class="mx-auto max-w-6xl rounded-xl bg-gradient-to-t from-white via-sky-50 to-sky-100 shadow"
>
<div
class="divide-default-300 grid divide-y md:grid-cols-${len(modules)} lg:divide-x lg:divide-y-0"
>
<div tal:repeat="modul modules" class="p-8">
<img
src="${home}/static/landing/img/${modul.replace('/','_')}.png"
class="h-16 w-16"
/>
<h2 class="text-default-950 mt-5 text-xl font-medium">
${modules[modul]}
</h2>
<p class="mt-4 text-sm" tal:condition="modules[modul] == 'ESPPT'">
ESPPT adalah Surat Pemberitahuan Pajak Terutang (SPPT) dalam
bentuk elektronik, sebagai memberitahukan besarnya Pajak Bumi
dan Bangunan sektor Perdesaan dan Perkotaan (PBB-P2) kepada
Wajib Pajak.
</p>
<p class="mt-4 text-sm" tal:condition="modules[modul] == 'BPHTB'">
bphtb
</p>
<p
class="mt-4 text-sm"
tal:condition="modules[modul] == 'ESPTPD'"
>
esptpd
</p>
<p
class="mt-4 text-sm"
tal:condition="modules[modul] == 'PBB MONITORING'"
>
Terobosan inovatif sebagai upaya untuk meningkatkan efisiensi
dalam proses monitoring dan pelaporan PBB, peningkatan capaian
PBB, transparansi dan akuntabilitas, dan kemudahan akses bagi
warga
</p>
<p
class="mt-4 text-sm"
tal:condition="modules[modul] == 'UNDUH E SPPT'"
>
Fasilitas bagi wajib pajak untuk mengakses SPPT elektronik yang
telah diterbitkan dan mengunduhnya melalui sistem pengaksesan
SPPT yang dapat diakses secara online dan bersifat publik.
</p>
<div class="group mt-5">
<a
class="text-default-900 text-base font-medium"
href="${modul}"
>Lebih Lanjut<svg
stroke="currentColor"
fill="none"
stroke-width="2"
viewBox="0 0 24 24"
stroke-linecap="round"
stroke-linejoin="round"
class="inline-block h-6 w-6 opacity-0 transition-all duration-500 will-change-transform group-hover:translate-x-2 group-hover:opacity-100"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M18 8L22 12L18 16"></path>
<path d="M2 12H22"></path></svg
></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="berita-pengumuman" class="py-10 lg:py-20">
<div class="container">
<div class="mx-auto max-w-2xl text-center">
<span
class="rounded-md border border-[#faaf18] bg-[#faaf18]/20 px-3 py-1 text-lg font-medium tracking-wider text-[#faaf18] uppercase"
>Informasi & Pengumuman</span
>
<h2 class="text-default-950 mt-4 text-2xl/snug font-medium">
Informasi & Pengumuman Seputar Pelayanan Pajak
</h2>
<p class="mt-5 text-base">
Berbagai berita mengenai kegiatan yang dilakukan oleh BAPENDA Kota
Tangerang Selatan dalam rangka pelayanan pajak dan retribusi, serta
pengumuman penting bagi Wajib Pajak.
</p>
</div>
<div class="mt-10">
<div class="grid grid-cols-3 gap-6">
<div class="col-span-2">
<div class="group relative h-full">
<img
src="${home}/static/landing/img/content/1.jpg"
class="h-full w-full rounded-xl"
/>
</div>
</div>
<div class="space-y-5">
<div class="group relative">
<img
src="${home}/static/landing/img/content/2.jpg"
class="rounded-xl"
/>
<div
class="absolute bottom-0 left-0 rounded-lg bg-slate-950/60 p-4 text-base font-medium text-white"
>
Panduan Penggunaan Platform Pajak Online Kota Tangerang
Selatan
<p>
<a class="text-[#faaf18]" href="#"
>Lebih Lanjut<svg
stroke="currentColor"
fill="none"
stroke-width="2"
viewBox="0 0 24 24"
stroke-linecap="round"
stroke-linejoin="round"
class="inline-block h-6 w-6 opacity-0 transition-all duration-500 will-change-transform group-hover:translate-x-2 group-hover:opacity-100"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M18 8L22 12L18 16"></path>
<path d="M2 12H22"></path></svg
></a>
</p>
</div>
</div>
<div class="group relative">
<img
src="${home}/static/landing/img/content/3.jpg"
class="rounded-xl"
/>
<div
class="absolute bottom-0 left-0 rounded-lg bg-slate-950/60 p-4 text-base font-medium text-white"
>
PERDA Kota Tangerang Selatan No. 10 Tahun 2023 Tentang Pajak
Daerah dan Retribusi Daerah
<p>
<a class="text-[#faaf18]" href="#"
>Lebih Lanjut<svg
stroke="currentColor"
fill="none"
stroke-width="2"
viewBox="0 0 24 24"
stroke-linecap="round"
stroke-linejoin="round"
class="inline-block h-6 w-6 opacity-0 transition-all duration-500 will-change-transform group-hover:translate-x-2 group-hover:opacity-100"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M18 8L22 12L18 16"></path>
<path d="M2 12H22"></path></svg
></a>
</p>
</div>
</div>
<div class="group relative">
<img
src="${home}/static/landing/img/content/3.jpg"
class="rounded-xl"
/>
<div
class="absolute bottom-0 left-0 rounded-lg bg-slate-950/60 p-4 text-base font-medium text-white"
>
Bapenda Tangsel Luncurkan “Bulan ASN Taat Pajak”, Bangkitkan
Wajib Pajak dan Kesadaran Masyarakat
<p>
<a class="text-[#faaf18]" href="#"
>Lebih Lanjut<svg
stroke="currentColor"
fill="none"
stroke-width="2"
viewBox="0 0 24 24"
stroke-linecap="round"
stroke-linejoin="round"
class="inline-block h-6 w-6 opacity-0 transition-all duration-500 will-change-transform group-hover:translate-x-2 group-hover:opacity-100"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M18 8L22 12L18 16"></path>
<path d="M2 12H22"></path></svg
></a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="mx-auto mb-10 max-w-2xl text-center">
<span
class="rounded-md border border-[#faaf18] bg-[#faaf18]/20 px-3 py-1 text-lg font-medium tracking-wider text-[#faaf18] uppercase"
>Realisasi</span
>
<p class="mt-5 text-base">
Realisasi penerimaan Pajak & Retribusi tahun 2025 sampai dengan saat
ini.
</p>
</div>
<section class="numbers-section mb-20 bg-black bg-bottom py-20">
<div class="container">
<div class="grid grid-cols-1 gap-4 sm:grid-cols-1 md:grid-cols-3">
<div class="text-center">
<h2
class="bg-gradient-to-r from-[#0184b0] to-[#faaf18] bg-clip-text text-5xl font-bold text-transparent text-shadow-slate-100"
>
145,7 M
</h2>
<p class="mt-2 text-2xl text-white/90">Realisasi PBB</p>
</div>
<div class="text-center">
<h2
class="bg-gradient-to-b from-[#0184b0] to-[#faaf18] bg-clip-text text-5xl font-bold text-transparent"
>
23,8 M
</h2>
<p class="mt-2 text-2xl text-white/90">Realisasi BPHTB</p>
</div>
<div class="text-center">
<h2
class="bg-gradient-to-l from-[#0184b0] to-[#faaf18] bg-clip-text text-5xl font-bold text-transparent"
>
29,1 M
</h2>
<p class="mt-2 text-2xl text-white/90">Realisasi PJDL</p>
</div>
<!-- <div class="text-center">
<h2
class="bg-gradient-to-t from-[#0184b0] to-[#faaf18] bg-clip-text text-5xl font-bold text-transparent"
>
14,6 M
</h2>
<p class="mt-2 text-2xl text-white/90">Realisasi PBBM</p>
</div> -->
</div>
</div>
</section>
<section id="kanal-pembayaran" class="py-10 lg:py-20">
<div class="container">
<div class="mx-auto max-w-2xl text-center">
<span
class="rounded-md border border-[#faaf18] bg-[#faaf18]/20 px-3 py-1 text-lg font-medium tracking-wider text-[#faaf18] uppercase"
>Kanal Pembayaran</span
>
<h2 class="text-default-950 mt-4 text-2xl/snug font-medium">
Kanal Pembayaran Yang Tersedia
</h2>
<p class="mt-5 text-base">
BAPENDA Kota Tangerang Selatan akan selalu meningkatkan dan
memperluas kanal pembayaran, dalam rangka mempercepat dan
mempermudah para Wajib Pajak dalam melakukan pembayaran.
</p>
</div>
<div class="mt-10">
<div
class="grid grid-cols-2 sm:grid-cols-2 md:grid-cols-4 lg:grid-cols-5 gap-6"
>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/bjb.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/bca.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/mandiri.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/bsi.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/qris.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/alfamart.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/indomaret.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/shopee.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/tokopedia.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/bukalapak.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/traveloka.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/masago.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/ovo.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/linkaja.png"
class="h-full w-full"
/>
</div>
<div class="px-6">
<img
src="${home}/static/landing/img/kanal-pembayaran/gopay.png"
class="h-full w-full"
/>
</div>
</div>
</div>
</div>
</section>
<section
class="newsletter-section relative bg-cover bg-center bg-no-repeat py-20"
>
<div class="absolute inset-0 bg-black/60"></div>
<div class="container">
<div class="relative mx-auto mb-12 max-w-2xl text-center">
<h2 class="mt-4 text-3xl/snug font-medium text-white">
Dapatkan Informasi Terbaru
</h2>
<p class="mt-5 text-base text-white/80">
Dapatkan update informasi mengenai peraturan, diskon, dan pelayanan
Pajak dan Retribusi Kota Tangerang Selatan langsung di email Anda.
</p>
<form class="mx-auto mt-6 max-w-xl space-y-2">
<div class="relative">
<div class="relative">
<input
type="email"
placeholder="Alamat email Anda"
name="email"
id="email"
class="h-12 w-full rounded-full border-slate-200 bg-slate-50 px-3 py-4 ps-4 pe-16 text-slate-950 focus:border-slate-200 focus:ring-0"
value=""
/><button
type="submit"
class="absolute end-[6px] top-[6px] inline-flex h-9 items-center justify-center gap-2 rounded-full bg-[#faaf18]/80 px-6 text-white transition-all hover:bg-[#faaf18]"
>
<svg
stroke="currentColor"
fill="none"
stroke-width="2"
viewBox="0 0 24 24"
stroke-linecap="round"
stroke-linejoin="round"
class="h-6 w-6"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M18 8L22 12L18 16"></path>
<path d="M2 12H22"></path>
</svg>
</button>
</div>
</div>
</form>
</div>
</div>
</section>
<footer>
<div class="border-default-200 border-y">
<div class="container py-20">
<div class="grid gap-10 md:grid-cols-3 lg:gap-16 xl:grid-cols-5">
<div class="md:col-span-3 xl:col-span-2">
<div>
<a href="/"
><img
src="${home}/static/landing/img/logo-text.png"
alt="logo"
class="flex h-10"
/></a>
<p class="text-default-800 mt-6 text-base">
Integer auctor aliquet martor, sed lorem malesuada eros
blandit eget. Proin lacinia mortoc id odio vestibulum.
</p>
</div>
</div>
<div>
<ul class="flex flex-col gap-3">
<h5
class="text-default-800 mb-2 font-medium lg:text-lg xl:text-xl"
>
Tautan
</h5>
<li>
<a
class="text-default-700 hover:text-default-950 text-base transition-all"
href="#"
>Bapenda Kota Tangsel</a
>
</li>
<li>
<a
class="text-default-700 hover:text-default-950 text-base transition-all"
href="#"
>Pemda Kota Tangsel</a
>
</li>
<li>
<a
class="text-default-700 hover:text-default-950 text-base transition-all"
href="#"
>Link Lain</a
>
</li>
<li>
<a
class="text-default-700 hover:text-default-950 text-base transition-all"
href="#"
>Link Lain Lagi</a
>
</li>
<li>
<a
class="text-default-700 hover:text-default-950 text-base transition-all"
href="#"
>Kontak</a
>
</li>
</ul>
</div>
<div>
<ul class="flex flex-col gap-3">
<h5
class="text-default-800 mb-2 font-medium lg:text-lg xl:text-xl"
>
Media Sosial
</h5>
<li class="group flex items-center gap-5">
<a
class="border-default-300 text-default-800 group-hover:bg-primary group-hover:border-primary inline-flex h-10 w-10 items-center justify-center rounded-lg border transition-all duration-700 group-hover:text-white"
href="#"
><svg
stroke="currentColor"
fill="none"
stroke-width="2"
viewBox="0 0 24 24"
stroke-linecap="round"
stroke-linejoin="round"
class="h-5 w-5"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"
></path></svg
></a>
<h5 class="text-default-800 text-base font-medium">
Facebook
</h5>
</li>
<li class="group flex items-center gap-5">
<a
class="border-default-300 text-default-800 group-hover:bg-primary group-hover:border-primary inline-flex h-10 w-10 items-center justify-center rounded-lg border transition-all duration-700 group-hover:text-white"
href="#"
><svg
stroke="currentColor"
fill="none"
stroke-width="2"
viewBox="0 0 24 24"
stroke-linecap="round"
stroke-linejoin="round"
class="h-5 w-5"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<rect
width="20"
height="20"
x="2"
y="2"
rx="5"
ry="5"
></rect>
<path
d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"
></path>
<line x1="17.5" x2="17.51" y1="6.5" y2="6.5"></line></svg
></a>
<h5 class="text-default-800 text-base font-medium">
Instagram
</h5>
</li>
<li class="group flex items-center gap-5">
<a
class="border-default-300 text-default-800 group-hover:bg-primary group-hover:border-primary inline-flex h-10 w-10 items-center justify-center rounded-lg border transition-all duration-700 group-hover:text-white"
href="#"
><svg
stroke="currentColor"
fill="none"
stroke-width="2"
viewBox="0 0 24 24"
stroke-linecap="round"
stroke-linejoin="round"
class="h-5 w-5"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"
></path></svg
></a>
<h5 class="text-default-800 text-base font-medium">
Twitter
</h5>
</li>
<!-- <li class="group flex items-center gap-5">
<a
class="border-default-300 text-default-800 group-hover:bg-primary group-hover:border-primary inline-flex h-10 w-10 items-center justify-center rounded-lg border transition-all duration-700 group-hover:text-white"
href="/aeropage/landing/charity"
><svg
stroke="currentColor"
fill="none"
stroke-width="2"
viewBox="0 0 24 24"
stroke-linecap="round"
stroke-linejoin="round"
class="h-5 w-5"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"
></path>
<rect width="4" height="12" x="2" y="9"></rect>
<circle cx="4" cy="4" r="2"></circle></svg
></a>
<h5 class="text-default-800 text-base font-medium">
Linkedin
</h5>
</li> -->
</ul>
</div>
<div>
<ul class="flex flex-col gap-3">
<h5
class="text-default-800 mb-2 font-medium lg:text-lg xl:text-xl"
>
Legal & Press
</h5>
<li>
<a
class="text-default-700 hover:text-default-950 text-base transition-all"
href="#"
>Kebijakan Privasi</a
>
</li>
<li>
<a
class="text-default-700 hover:text-default-950 text-base transition-all"
href="#"
>Syarat & Ketentuan</a
>
</li>
<li>
<a
class="text-default-700 hover:text-default-950 text-base transition-all"
href="#"
>Presskit</a
>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="py-4">
<div
class="container flex h-full flex-wrap items-center justify-center text-center md:justify-between md:text-start"
>
<p class="text-sm text-slate-400">
Copyright © 2025, Bapenda Kota Tangsel
</p>
</div>
</div>
</footer>
</body>
</html>