-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
455 lines (442 loc) · 18.6 KB
/
contact.html
File metadata and controls
455 lines (442 loc) · 18.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ThriveIn</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 -->
<!-- Contact Start -->
<section class="bg-white animate-fade-up">
<div class="container px-6 py-12 mx-auto">
<div class="text-center">
<p class="font-medium text-blue-500">Kontak Kami</p>
<h1 class="mt-2 text-2xl font-semibold text-gray-800 md:text-3xl">
Bisa Kontak kami di sini!
</h1>
<p class="mt-3 text-gray-500">Hubungi Tim Kami</p>
</div>
<iframe
class="object-cover w-full h-64 mt-10 rounded-lg lg:h-96"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1010417.2884934243!2d115.02867319120787!3d-8.407305202109203!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2dd141d3e8100fa1%3A0x24910fb14b24e690!2sBali!5e0!3m2!1sid!2sid!4v1700044377129!5m2!1sid!2sid"
width="600"
height="450"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
<div
class="grid grid-cols-1 gap-12 mt-10 lg:grid-cols-3 sm:grid-cols-2"
>
<!-- card 1 -->
<div class="p-4 rounded-lg bg-blue-50 md:p-6">
<span
class="inline-block p-3 text-blue-500 rounded-lg bg-blue-100/80"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-5 h-5"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75"
/>
</svg>
</span>
<h2 class="mt-4 text-base font-medium text-gray-800">
Kontak Kami
</h2>
<p class="mt-2 text-sm text-gray-500">Via email</p>
<p class="mt-2 text-sm text-blue-500">dev.thrive.in@gmail.com</p>
</div>
<!-- card 2 -->
<div class="p-4 rounded-lg bg-blue-50 md:p-6">
<span
class="inline-block p-3 text-blue-500 rounded-lg bg-blue-100/80"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-5 h-5"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M15 10.5a3 3 0 11-6 0 3 3 0 016 0z"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1115 0z"
/>
</svg>
</span>
<h2 class="mt-4 text-base font-medium text-gray-800">Asal Kami</h2>
<p class="mt-2 text-sm text-gray-500">Alamat Domisili</p>
<p class="mt-2 text-sm text-blue-500">Bali, Indonesia</p>
</div>
<!-- card 3 -->
<div class="p-4 rounded-lg bg-blue-50 md:p-6">
<span
class="inline-block p-3 text-blue-500 rounded-lg bg-blue-100/80"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-5 h-5"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 002.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 01-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 00-1.091-.852H4.5A2.25 2.25 0 002.25 4.5v2.25z"
/>
</svg>
</span>
<h2 class="mt-4 text-base font-medium text-gray-800">Sales</h2>
<p class="mt-2 text-sm text-gray-500">
Senin - Jumat 8:00 WITA 16.00 WITA.
</p>
<p class="mt-2 text-sm text-blue-500">+1 (555) 000-0000</p>
</div>
</div>
</div>
</section>
<!-- Contact End -->
<!-- Download Ads Start-->
<!-- Download Ads 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>