blob: b3cc8fe5b44b76cf98720e8a88c9ee0b2865e8f6 (
plain)
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
|
import Image from 'next/image';
import Link from '@/core/components/elements/Link/Link';
const ServiceList = () => {
return (
<div className='px-4 sm:px-0'>
<div className='grid md:grid-cols-4 grid-cols-2 justify-between gap-2 items-center'>
<div className='w-full'>
<Link
href='/tentang-kami'
className='border border-gray-200 p-2 flex items-center gap-x-2 rounded-lg'
>
<div className=''>
<Image
width={24}
height={24}
quality={85}
src='/images/icon_service/ONE-STOP-SOLUTIONS.svg'
alt=''
className='h-20 w-20 rounded'
/>
</div>
<div className=''>
<h1 className='text-gray-900 font-semibold text-base'>
One Stop Solution
</h1>
<p className='text-xs md:text-sm text-gray-500'>
Temukan Solusi Lengkap Anda dalam Satu Tempat.
</p>
</div>
</Link>
</div>
<div className='w-full'>
<Link
href='/garansi-resmi'
className='border border-gray-200 p-2 flex items-center gap-x-2 rounded-lg'
>
<div className=''>
<Image
width={24}
height={24}
quality={85}
src='/images/icon_service/WARRANTY.svg'
alt=''
className='h-20 w-20 rounded'
/>
</div>
<div>
<h1 className='text-gray-900 font-semibold text-base'>
Garansi Resmi
</h1>
<p className='text-xs md:text-sm text-gray-500'>
Garansi Keaslian Barang dan Jaminan Purna Jual.
</p>
</div>
</Link>
</div>
<div className='w-full '>
<Link
href='/pembayaran-tempo'
className='border border-gray-200 p-2 flex items-center gap-x-2 rounded-lg'
>
<div className=''>
<Image
width={24}
height={24}
quality={85}
src='/images/icon_service/DUE-PAYMENT.svg'
alt=''
className='h-20 w-20 rounded'
/>
</div>
<div>
<h1 className='text-gray-900 font-semibold text-base'>
Pembayaran Tempo
</h1>
<p className='text-xs md:text-sm text-gray-500'>
Lebih mudah mengatur pembelian dengan pembayaran tempo.
</p>
</div>
</Link>
</div>
<div className='w-full'>
<Link
href='/tentang-kami'
className='border border-gray-200 p-2 flex items-center gap-x-2 rounded-lg'
>
<div className=''>
<Image
width={24}
height={24}
quality={85}
src='/images/icon_service/TAX.svg'
alt=''
className='h-20 w-20 rounded'
/>
</div>
<div>
<h1 className='text-gray-900 font-semibold text-base'>
Faktur Pajak
</h1>
<p className='text-xs md:text-sm text-gray-500'>
Dapat Faktur pajak untuk setiap transaksi dengan indoteknik.com
</p>
</div>
</Link>
</div>
</div>
</div>
);
};
export default ServiceList;
|