-
Notifications
You must be signed in to change notification settings - Fork 0
/
cara-belanja.html
129 lines (119 loc) · 4.42 KB
/
cara-belanja.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<title>Cara Belanja di WannnSion Store</title>
</head>
<body>
h
<!-- Promotion-->
<div class="bg-blue-500 px-4 py-3 text-white">
<p class="text-center text-sm font-medium\">
Ada Promo Terbaru dari Produk kami!
<a href="#" class="inline-block underline">Ayo cek sekarang juga!</a>
</p>
</div>
<!-- Akhir Promotion-->
<!-- Navbar Component-->
<header class="bg-white">
<div class="mx-auto max-w-screen-xl px-4 py-8 sm:px-6 sm:py-12 lg:px-8">
<div
class="flex flex-col items-start gap-4 md:flex-row md:items-center md:justify-between"
>
<div>
<a
href="index.html"
class="text-2xl font-bold text-gray-900 sm:text-3xl"
>
WannnSion Store
</a>
<p class="mt-2.5 text-sm text-black-700">
Disini kami menyediakan berbagai Baju,Celana,Sepatu dan Aksesoris
lainnya 🛒
</p>
</div>
<div class="flex items-center gap-4">
<button
class="inline-flex items-center justify-center gap-1.5 rounded border border-gray-200 bg-white px-5 py-3 text-gray-900 transition hover:text-gray-700 focus:outline-none focus:ring"
type="button"
>
<span class="text-sm font-medium"> Cara Belanja Disini </span>
</button>
<button
class="inline-block rounded bg-blue-500 px-5 py-3 text-sm font-medium text-white transition hover:bg-blue-600 focus:outline-none focus:ring"
type="button"
>
Chat Penjual
</button>
</div>
</div>
</div>
</header>
<!-- Akhir Navbar-->
<!-- FAQ -->
<div class="space-y-4 px-4">
<details
class="group border-s-4 border-blue-500 bg-gray-50 p-6 [&_summary::-webkit-details-marker]:hidden"
open
>
<summary
class="flex cursor-pointer items-center justify-between gap-1.5"
>
<h2 class="text-lg font-medium text-gray-900">
Ingin Belanja di WannnSion Store? Coba lihat Caranya
</h2>
<span
class="shrink-0 rounded-full bg-white p-1.5 text-gray-900 sm:p-3"
>
<svg
xmlns="http://www.w3.org/2000/svg"
class="size-5 shrink-0 transition duration-300 group-open:-rotate-45"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M10 3a1 1 0 011 1v5h5a1 1 0 110 2h-5v5a1 1 0 11-2 0v-5H4a1 1 0 110-2h5V4a1 1 0 011-1z"
clip-rule="evenodd"
/>
</svg>
</span>
</summary>
<p class="mt-4 leading-relaxed text-gray-700">
Caranya cukup mudah,kalian tinggal pilih barang yang kamu inginkan
terus kalian akan diarahkan ke nomor Whatsapp kami.Chat atau telepon
nomor kami.Kami Siap melayani kalian.😊
</p>
</details>
<details
class="group border-s-4 border-blue-500 bg-gray-50 p-6 [&_summary::-webkit-details-marker]:hidden"
>
<summary
class="flex cursor-pointer items-center justify-between gap-1.5"
>
<h2 class="text-lg font-medium text-gray-900">Cukup simple bukan?</h2>
<span
class="shrink-0 rounded-full bg-white p-1.5 text-gray-900 sm:p-3"
>
<svg
xmlns="http://www.w3.org/2000/svg"
class="size-5 shrink-0 transition duration-300 group-open:-rotate-45"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M10 3a1 1 0 011 1v5h5a1 1 0 110 2h-5v5a1 1 0 11-2 0v-5H4a1 1 0 110-2h5V4a1 1 0 011-1z"
clip-rule="evenodd"
/>
</svg>
</span>
</summary>
<p class="mt-4 leading-relaxed text-gray-700">Selamat berbelanja!🤗</p>
</details>
</div>
<!-- Akhir FAQ -->
</body>
</html>