-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
339 lines (303 loc) · 13.5 KB
/
about.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- TAILWIND CSS Untuk Beberapa Keperluan -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- ALPINE JS (SEBUAH LIBRARY JAVA SCRIPT UNTUK BEBERAPA KEPERLUAN)-->
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>
<!-- APP (FILE UNTUK MENGELOLA ALPINEJS NYA) -->
<script src="src/app.js"></script>
<title>SOULSIDE COFFEE</title>
<link rel="icon" href="img/title.jpg"
type="image/x-icon">
<!-- FONTS UNTUK KEPERLUAN STYLING -->
<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:ital,wght@0,100;0,300;0,400;0,700;1,700&display=swap"
rel="stylesheet">
<!-- ICONS UNTUK KEPERLUAN STYLING -->
<script src="https://unpkg.com/feather-icons"></script>
<!-- STYLE LOCAL UNTUK BEBERAPA KEPERLUAN -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Navbar start -->
<!-- component -->
<nav class="navbar" x-data>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<a class="nav-logo" href="#">
<h1>SOULSIDE <span>COFFEE</span></h1>
</a>
<div class="mobile">
<button class="mobile-icon" id="hamburger-menu">
<span data-feather="menu"></span>
</button>
</div>
<ul class="navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="#about">Tentang Kami</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="kontak.html">Kontak</a></li>
</ul>
<a class="extra-btn-1" href="https://wa.me/6285361093717?text=Halo+Admin+Saya+Ingin%0ABertanya">Tanya Admin</a>
<a class="extra-btn-2" href="menu.html" id="shopping-cart-button">Order</a>
<!-- SHOPPING CART -->
<!-- <div class="shopping-cart">
<template x-for="(item, index) in $store.cart.items" x-key="index">
<div class="cart-item">
<img :src="`img/products/${item.img}`" :alt="item.name">
<div class="item-detail">
<h3 x-text="item.name"></h3>
<div class="item-price">
<span x-text="rupiah(item.price)"></span> ×
<button id="remove" @click="$store.cart.remove(item.id)">−</button>
<span x-text="item.quantity"></span>
<button id="add" @click="$store.cart.add(item)">+</button> =
<span x-text="rupiah(item.total)"></span>
</div>
</div>
</div>
</template>
<h4 x-show="!$store.cart.items.length" style="margin-top: 1.5rem;">Orderan Kosong Nih, Ayo Pesan Sekarang!</h4>
<h4 x-show="$store.cart.items.length">Total : <span x-text="rupiah($store.cart.total)"></span></h4>
<div class="form-container" x-show="$store.cart.items.length">
<form id="checkout-form">
<h5>Customer Detail</h5>
<label for="name">
<span>Name</span>
<input type="text" name="name" id="name" x-model="$store.cart.name">
</label>
<label for="email">
<span>Email</span>
<input type="email" name="email" id="email" x-model="$store.cart.email">
</label>
<label for="phone">
<span>Phone</span>
<input type="tel" name="phone" id="phone" x-model="$store.cart.phone">
</label>
<button class="checkout-button" type="submit" id="checkout-button" @click="$store.cart.checkout()">Checkout</button>
</form>
</div>
</div> -->
<!-- END SHOPPING CART -->
</nav>
</body>
<!-- CALL TO ACTION -->
<!-- <section class="section">
<div class="section-content">
<div class="section-content-text">
<h2 class="section-title">SELAMAT DATANG</h2>
<p class="section-paragraph">
"Tersenyumlah Setiap Saat dengan Secangkir Kenikmatan,
Temukan Ketenangan di Tiap Sudut Kopimu."
</p>
<div class="section-link-container">
<a href="menu.html" class="section-link">Temukan Kopimu disini</a>
</div>
</div>
</div>
</section> -->
<!-- END CALL TO ACTION -->
<!-- TENTANG KAMI SECTION -->
<section id="about" class="about">
<h2>Tentang <span>Kami</span></h2>
<div class="about-content">
<div class="about-img">
<img src="img/about1.jpg"
alt="Tentang Kami">
</div>
<div class="konten">
<h3>Kenapa Memilih Kopi Kami?</h3>
<p> Di SoulSide Coffee, kami percaya bahwa setiap cangkir kopi adalah kisah yang ingin diceritakan. Itulah sebabnya kami berkomitmen untuk menyajikan kopi berkualitas terbaik dari berbagai sudut dunia, dipanggang secara hati-hati untuk mengekstrak rasa terbaiknya. Dari biji-biji kopi yang dipilih dengan teliti hingga teknik penyeduhan yang tepat, setiap cangkir kopi di sini adalah perayaan atas kesempurnaan rasa.</p>
<p>tempat di mana kehangatan bertemu dengan kelezatan dalam setiap detilnya. Kami adalah lebih dari sekadar kafe, kami adalah rumah bagi para pecinta kopi, pencinta makanan, dan penggemar suasana yang menyenangkan.</p>
</div>
</div>
</section>
<!-- END TENTANG KAMI SECTION -->
<!-- PRODUCT SECTION CARD -->
<!-- PRODUCT 1 -->
<!-- <section class="products" id="products" x-data="products">
<h2>Menu <span>kami</span></h2>
<p>Nikmati kopi berkualitas tinggi dengan beragam rasa dan aroma yang menggugah. Setiap cangkir adalah kombinasi unik dari kekuatan dan kelezatan, menawarkan pengalaman kopi yang tak tertandingi dalam setiap tegukan.</p> -->
<!-- ITEM 1 -->
<!-- <div class="row">
<template x-for="(item, index) in items" x-key="index">
<div class="product-card">
<div class="product-icons">
<a href="#" @click.prevent="$store.cart.add(item)">
<svg
width="24"
height="24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<use href="img/feather-sprite.svg#shopping-cart" />
</svg>
</a>
<a href="#" class="item-detail-button"><svg
width="24"
height="24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<use href="img/feather-sprite.svg#eye" />
</svg>
</a>
</div>
<div class="pruduct-image">
<a href="#" class="group block overflow-hidden">
<img :src="`img/products/${item.img}`"
:alt="item.name"
class="h-[350px] w-full rounded-xl object-cover transition duration-500 group-hover:scale-105 sm:h-[450px]"/>
</div>
<li>
<div class="relative rounded-md pt-3">
<h3 x-text="item.name" class="text-xl text-black-700 group-hover:underline group-hover:underline-offset-4">
</h3>
<p class="mt-2">
<span class="sr-only"> Regular Price </span>
<span x-text="rupiah(item.price)" class="tracking-wider text-gray-900"></span>
</p>
</div>
</a>
</li>
</div>
</template>
</div>
</section> -->
<!-- END ITEM 1 -->
<!-- END PRODUCT SECTION -->
<!-- Kontak Section -->
<!-- <section id="Kontak" class="kontak">
<h2>Kontak <span>Kami</span></h2>
<p>Butuh bantuan atau hanya ingin berbicara?
Jangan ragu untuk menghubungi kami!
</p>
<div class="Kontak-row">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2124.383642645894!2d104.44666328823166!3d0.9245866913219662!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31d97363f838ac7d%3A0x8a1a5f45eaf1cdde!2sIrfnCode!5e0!3m2!1sid!2sid!4v1715557428290!5m2!1sid!2sid" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade" class="map"></iframe>
<form id="contact-form">
<div class="input-kontak">
<i data-feather="user"></i>
<input id="nama" type="text" placeholder="Masukkan Nama">
</div>
<div class="input-kontak">
<i data-feather="mail"></i>
<input id="emails" type="text" placeholder="Masukkan Email">
</div>
<div class="input-kontak">
<i data-feather="phone"></i>
<input id="nohp" type="text" placeholder="Masukkan No.Hp">
</div>
<button type="button" class="btn" onclick="sendWhatsAppMessage()">Kirim Pesan</button>
</form>
</div>
</section> -->
<!-- Kontak Section End -->
<!-- Footer start -->
<!--Footer container-->
<footer
class="footernya">
<div class="container-foot">
<!-- Social media icons container -->
<div class="foot-icon">
<a
href="https://www.facebook.com/hanya.pemiliknya"
type="button"
class="btn-foot"
data-twe-ripple-init>
<span class="svg-foot">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 320 512">
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc. -->
<path
d="M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4 .4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z" />
</svg>
</span>
</a>
<a
href="https://instagram.com/irfnadi_"
type="button"
class="btn-foot"
data-twe-ripple-init>
<span class="svg-foot">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 448 512">
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc. -->
<path
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" />
</svg>
</span>
</a>
<a
href="https://github.com/IrfnCode"
type="button"
class="btn-foot"
data-twe-ripple-init>
<span class="svg-foot">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 496 512">
<path
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3 .3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5 .3-6.2 2.3zm44.2-1.7c-2.9 .7-4.9 2.6-4.6 4.9 .3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3 .7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3 .3 2.9 2.3 3.9 1.6 1 3.6 .7 4.3-.7 .7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3 .7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3 .7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" />
</svg>
</span>
</a>
</div>
</div>
<!--Copyright section-->
<div class="copyright">
© 2024 Copyright:
<a href="https://fidocshigh.com">IrfnCode</a>
</div>
</footer>
<!-- Footer end -->
<!-- Modal Item Detail Box -->
<div class="modal" id="item-detail-modal">
<div class="modal-container">
<a href="#" class="close-icon"><i data-feather="x"></i></a>
<div class="modal-content">
<img src="img/products/1.jpg" alt="Product 1">
<div class="product-content">
<h3>Product 1</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Consectetur velit tempora, suscipit omnis minima neque!</p>
<div class="product-price">Rp.24.000</div>
<a href="#" class=""><i data-feather="shopping-cart"></i><span>Add To Cart</span></a>
</div>
</div>
</div>
</div>
<!-- ModalItem Detail Box end -->
<!-- Feather Icons -->
<script>
feather.replace()
</script>
<!-- My Javascript -->
<script src="js/script.js"></script>
</body>
</html>
<!--
THANKS TO
- ALLAH SWT
- DOSEN STTI
- DEAAFRIZAL
- SANDHIKA GALIH
- CHAT GPT
- UNSPLASH
- HYPERUI
- W3SCHOOL
- BLACKBOX
-->