File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ const Gallery = () => {
143
143
< img
144
144
src = { image . src }
145
145
alt = { image . alt }
146
- className = 'w-full h-full object-contain rounded-lg transition-opacity duration-300'
146
+ className = 'w-full h-full object-contain rounded-lg border transition-opacity duration-300'
147
147
loading = 'lazy'
148
148
/>
149
149
</ div >
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ import data from '@/data/informationBoardsData.json';
3
3
4
4
const InformationBoards = ( ) => {
5
5
return (
6
- < section data-theme = 'corporate' className = 'p-6 border-b border-gray-200' >
7
- < div className = 'grid gap-2 md:grid-cols-2' >
6
+ < section data-theme = 'corporate' className = 'p-4 border-b border-gray-200' >
7
+ < div className = 'grid gap-6 md:grid-cols-2' >
8
8
{ /* Tabel Jam Layanan */ }
9
- < div className = 'bg-white shadow-lg rounded-lg' >
10
- < h3 className = 'text-lg md:text-xl font-semibold text-primary mb -4 text-center' >
9
+ < div className = 'bg-white shadow-lg rounded-lg border ' >
10
+ < h3 className = 'text-lg md:text-xl font-semibold text-primary my -4 text-center' >
11
11
{ data . informationBoards [ 0 ] . title }
12
12
</ h3 >
13
13
< div className = 'overflow-x-auto' >
@@ -38,8 +38,8 @@ const InformationBoards = () => {
38
38
</ div >
39
39
</ div >
40
40
{ /* Tabel Hari Kunjungan */ }
41
- < div className = 'bg-white shadow-lg rounded-lg' >
42
- < h3 className = 'text-lg md:text-xl font-semibold text-primary mb -4 text-center' >
41
+ < div className = 'bg-white shadow-lg rounded-lg border ' >
42
+ < h3 className = 'text-lg md:text-xl font-semibold text-primary my -4 text-center' >
43
43
{ data . informationBoards [ 1 ] . title }
44
44
</ h3 >
45
45
< div className = 'overflow-x-auto' >
Original file line number Diff line number Diff line change @@ -50,14 +50,14 @@ const StatisticsWBP = () => {
50
50
} , [ processData ] ) ;
51
51
52
52
return (
53
- < section data-theme = 'corporate' className = 'p-6 border-b border-gray-200' >
53
+ < section data-theme = 'corporate' className = 'p-4 border-b border-gray-200' >
54
54
< h2 className = 'text-xl md:text-2xl lg:text-3xl font-semibold text-primary mb-6 text-center' >
55
55
Data Warga Binaan Pemasyarakatan
56
56
</ h2 >
57
57
< div className = 'bg-transparent' >
58
- < div className = 'grid grid-cols-1 md:grid-cols-2 gap-2 ' >
58
+ < div className = 'grid grid-cols-1 md:grid-cols-2 gap-6 ' >
59
59
{ /* Tabel Tahanan */ }
60
- < div className = 'bg-white shadow-md rounded-lg' >
60
+ < div className = 'bg-white shadow-md rounded-lg border ' >
61
61
< h3 className = 'text-lg font-semibold text-primary text-center p-4 border-b' >
62
62
Tahanan
63
63
</ h3 >
@@ -87,7 +87,7 @@ const StatisticsWBP = () => {
87
87
</ div >
88
88
</ div >
89
89
{ /* Tabel Narapidana */ }
90
- < div className = 'bg-white shadow-md rounded-lg' >
90
+ < div className = 'bg-white shadow-md rounded-lg border ' >
91
91
< h3 className = 'text-lg font-semibold text-primary text-center p-4 border-b' >
92
92
Narapidana
93
93
</ h3 >
@@ -130,7 +130,7 @@ const StatisticsWBP = () => {
130
130
</ table >
131
131
</ div >
132
132
< div className = 'mt-4 text-center' >
133
- < p className = 'text-gray-600 small ' >
133
+ < p className = 'text-gray-600 text-sm ' >
134
134
Data terakhir diperbarui pada: { lastUpdated }
135
135
</ p >
136
136
</ div >
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const Team = () => {
20
20
{ teamData . map ( ( member , index ) => (
21
21
< div
22
22
key = { index }
23
- className = 'card bg-gradient-to-r from-blue-500 to-teal-500 text-base-content shadow-md transition-shadow duration-300 hover:shadow-lg'
23
+ className = 'card bg-gradient-to-r from-blue-500 to-teal-500 text-base-content shadow-md border transition-shadow duration-300 hover:shadow-lg'
24
24
>
25
25
< figure className = 'relative w-full h-40 flex items-center justify-center' >
26
26
< div className = 'mask mask-circle w-24 h-24 flex items-start justify-center' >
You can’t perform that action at this time.
0 commit comments