-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
353 lines (323 loc) · 23.5 KB
/
index.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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<!DOCTYPE html>
<html class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./dist/output.css" rel="stylesheet">
<link rel="icon" href="https://cdn-icons-png.flaticon.com/512/2309/2309442.png">
<title>yekev zeev</title>
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
</head>
<body>
<div id="app">
<div class="relative overflow-hidden bg-gray-50">
<div class="absolute inset-y-0 block h-full w-full" aria-hidden="true">
<div class="relative mx-auto h-full bg-center bg-[url('../assets/images/grapes.jpg')] bg-cover">
</div>
</div>
<div class="relative pt-6 pb-16 sm:pb-24">
<div class="mb-124">
<div class="mx-auto max-w-7xl px-4 sm:px-6">
<nav class="relative flex items-center justify-between sm:h-10 md:justify-center" aria-label="Global">
<div class="flex items-center justify-between w-full" :class="{ 'flex-row-reverse': currentLang === 'he' }">
<div class="flex justify-between w-2/3 max-lg:hidden hidden xs:flex" :class="{ 'flex-row-reverse': currentLang === 'he' }">
<a href="#" class="shadow-sm shadow-black border border-black rounded-md px-5 py-1 font-medium text-black hover:bg-black hover:text-white" :style="{ marginRight: currentLang === 'he' ? '2.5rem' : '' }">{{ langObject[currentLang].home }}</a>
<a href="#about" class="shadow-sm shadow-black border border-black rounded-md px-5 py-1 font-medium text-black hover:bg-black hover:text-white">{{ langObject[currentLang].about }}</a>
<a href="#gallery" class="shadow-sm shadow-black border border-black rounded-md px-5 py-1 font-medium text-black hover:bg-black hover:text-white">{{ langObject[currentLang].gallery }}</a>
<a href="#contact" class="shadow-sm shadow-black border border-black rounded-md px-5 py-1 font-medium text-black hover:bg-black hover:text-white">{{ langObject[currentLang].contact }}</a>
<a href="https://goo.gl/maps/TMsGVomxbrcGxnPZ9" class="shadow-sm shadow-black border border-black rounded-md px-5 py-1 font-medium text-black hover:bg-black hover:text-white" target="_blank">{{ langObject[currentLang]['our-location']}}</a>
</div>
<!-- <div class="flex justify-center space-x-6 md:order-2"> -->
<div class="font-medium text-gray-900 hover:text-gray-600 flex items-center space-x-3 md:order-2">
<svg style="color: black;" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M10.5 21l5.25-11.25L21 21m-9-3h7.5M3 5.621a48.474 48.474 0 016-.371m0 0c1.12 0 2.233.038 3.334.114M9 5.25V3m3.334 2.364C11.176 10.658 7.69 15.08 3 17.502m9.334-12.138c.896.061 1.785.147 2.666.257m-4.589 8.495a18.023 18.023 0 01-3.827-5.802" />
</svg>
<select id="langSelect" :value="currentLang" class="rounded-md py-1 shadow-sm shadow-black border border-black shadow-sm">
<option value="en">English</option>
<option value="he">עברית</option>
<option value="fr">Français</option>
</select>
</div>
</div>
</nav>
</div>
<!--
Mobile menu, show/hide based on menu open state.
Entering: "duration-150 ease-out"
From: "opacity-0 scale-95"
To: "opacity-100 scale-100"
Leaving: "duration-100 ease-in"
From: "opacity-100 scale-100"
To: "opacity-0 scale-95"
-->
<!-- <div class="absolute inset-x-0 top-0 z-10 origin-top-right transform p-2 transition md:hidden">
<div class="overflow-hidden rounded-lg bg-white shadow-md ring-1 ring-black ring-opacity-5">
<div class="flex items-center justify-between px-5 pt-4">
<div class="-mr-2">
<button type="button" class="inline-flex items-center justify-center rounded-md bg-white p-2 text-gray-400 hover:bg-gray-100 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500">
<span class="sr-only">Close menu</span> -->
<!-- Heroicon name: outline/x-mark -->
<!-- <svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
</div>
<div class="px-2 pt-2 pb-3">
<a href="#" class="block rounded-md px-3 py-2 text-base font-medium text-gray-700 hover:bg-gray-50 hover:text-gray-900">{{ langObject[currentLang].home }}</a>
<a href="#about" class="block rounded-md px-3 py-2 text-base font-medium text-gray-700 hover:bg-gray-50 hover:text-gray-900">{{ langObject[currentLang].about }}</a>
<a href="#gallery" class="block rounded-md px-3 py-2 text-base font-medium text-gray-700 hover:bg-gray-50 hover:text-gray-900">{{ langObject[currentLang].gallery }}</a>
<a href="#contact" class="block rounded-md px-3 py-2 text-base font-medium text-gray-700 hover:bg-gray-50 hover:text-gray-900">{{ langObject[currentLang].contact }}</a>
</div>
</div>
</div> -->
</div>
<main class="mx-auto mt-16 max-w-7xl px-4 sm:mt-24">
<div class="text-center">
<div class="mx-auto mt-20 max-w-md sm:flex sm:justify-center">
<div class="rounded-md shadow">
<a href="#about" class="flex w-full items-center justify-center rounded-md border border-transparent bg-green-600 px-8 py-3 text-base font-medium text-white hover:bg-green-700 md:py-4 md:px-10 md:text-lg">{{ langObject[currentLang]['see-more'] }}</a>
</div>
<div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-8">
<a href="#contact" class="flex w-full items-center justify-center rounded-md border border-transparent bg-white px-8 py-3 text-base font-medium text-green-600 hover:bg-gray-50 md:py-4 md:px-10 md:text-lg">{{ langObject[currentLang]['who-we-are'] }}</a>
</div>
</div>
</div>
</main>
</div>
</div>
<!--
SECTION - 2
-->
<div class="relative bg-white" id="about">
<div class="lg:absolute lg:inset-0">
<div class="lg:absolute lg:inset-y-0 lg:left-0 lg:w-1/2">
<img class="h-56 w-full object-cover lg:absolute lg:h-full" src="./assets/images/grapes-2.jpg" alt="">
</div>
</div>
<div class="relative px-4 pt-12 pb-16 sm:px-6 sm:pt-16 lg:mx-auto lg:grid lg:max-w-7xl lg:grid-cols-2 lg:px-8">
<div class="lg:col-start-2 lg:pl-8" :style="{ direction: currentLang === 'he' ? 'rtl' : 'ltr' }">
<div class="mx-auto max-w-prose text-base lg:ml-auto lg:mr-0 lg:max-w-lg">
<h2 class="font-semibold leading-6 text-green-600">{{ langObject[currentLang]['about-subtitle']}}</h2>
<h3 class="mt-2 text-3xl font-bold leading-8 tracking-tight text-gray-900 sm:text-4xl">{{ langObject[currentLang]['about-title'] }}</h3>
<p class="mt-8 text-lg text-gray-500">{{ langObject[currentLang]['about-content-title'] }}</p>
<div class="prose prose-indigo mt-5 text-gray-500">
<p>{{ langObject[currentLang]['about-content-row-1']}}</p><br>
<p>{{ langObject[currentLang]['about-content-row-2']}}</p><br>
<p>{{ langObject[currentLang]['about-content-row-3']}}</p><br>
<p>{{ langObject[currentLang]['about-content-row-4']}}</p><br>
<p>{{ langObject[currentLang]['about-content-row-5']}}</p><br>
<p>{{ langObject[currentLang]['about-content-row-6']}}</p><br>
<p>{{ langObject[currentLang]['about-content-row-7']}}</p><br>
<p>{{ langObject[currentLang]['about-content-row-8']}}</p><br>
</div>
</div>
</div>
</div>
</div>
<!--
SECTION - 3
-->
<div class="relative bg-white px-4 py-14" id="gallery">
<div class="mx-auto max-w-prose text-base lg:max-w-none">
<h2 class="text-lg font-semibold text-green-600"
:style="{ direction: currentLang === 'he' ? 'rtl' : 'ltr' }"
>{{ langObject[currentLang]['gallery-subtitle'] }}</h2>
<p class="mt-2 text-3xl font-bold leading-8 tracking-tight text-gray-900 sm:text-4xl"
:style="{ direction: currentLang === 'he' ? 'rtl' : 'ltr' }"
>{{ langObject[currentLang]['gallery-title'] }}</p>
</div>
<div id="indicators-carousel" class="relative w-1/1 m-auto my-20" data-carousel="slide">
<!-- Carousel wrapper -->
<div class="relative h-130 w-11/12 m-auto overflow-hidden rounded-lg md:h-130">
<!-- Item 0 -->
<div class="duration-700 ease-in-out absolute inset-0 transition-all transform translate-x-0 z-20" data-carousel-item="active">
<img src="./assets/gallery/beautiful-view-wine.jpg" class="absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2" alt="...">
</div>
<!-- Item 1 -->
<div class="duration-700 ease-in-out absolute inset-0 transition-all transform translate-x-0 z-20" data-carousel-item="">
<img src="./assets/gallery/har-adar-1.jpg" class="absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2" alt="...">
</div>
<!-- Item 2 -->
<div class="duration-700 ease-in-out absolute inset-0 transition-all transform translate-x-full z-10" data-carousel-item="">
<img src="./assets/gallery/har-adar-2.jpg" class="absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2" alt="...">
</div>
<!-- Item 3 -->
<div class="hidden duration-700 ease-in-out absolute inset-0 transition-all transform" data-carousel-item="">
<img src="./assets/gallery/har-adar-3.jpg" class="absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2" alt="...">
</div>
<!-- Item 4 -->
<div class="hidden duration-700 ease-in-out absolute inset-0 transition-all transform" data-carousel-item="">
<img src="./assets/gallery/har-adar-4.jpg" class="absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2" alt="...">
</div>
<!-- Item 5 -->
<div class="duration-700 ease-in-out absolute inset-0 transition-all transform -translate-x-full z-10" data-carousel-item="">
<img src="./assets/gallery/har-adar-5.jpg" class="absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2" alt="...">
</div>
<div class="duration-700 ease-in-out absolute inset-0 transition-all transform -translate-x-full z-10" data-carousel-item="">
<img src="./assets/gallery/har-adar-6.jpg" class="absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2" alt="...">
</div>
<div class="duration-700 ease-in-out absolute inset-0 transition-all transform -translate-x-full z-10" data-carousel-item="">
<img src="./assets/gallery/har-adar-7.jpg" class="absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2" alt="...">
</div>
<div class="duration-700 ease-in-out absolute inset-0 transition-all transform -translate-x-full z-10" data-carousel-item="">
<img src="./assets/gallery/har-adar-8.jpg" class="absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2" alt="...">
</div>
<div class="duration-700 ease-in-out absolute inset-0 transition-all transform -translate-x-full z-10" data-carousel-item="">
<img src="./assets/gallery/har-adar-9.jpg" class="absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2" alt="...">
</div>
</div>
<!-- Slider indicators -->
<div class="absolute z-30 flex space-x-3 -translate-x-1/2 bottom-5 left-1/2">
<button type="button" class="w-3 h-3 rounded-full bg-white dark:bg-white/50 dark:hover:bg-white" aria-current="true" aria-label="Slide 1" data-carousel-slide-to="0"></button>
<button type="button" class="w-3 h-3 rounded-full bg-white/50 dark:bg-white/50 hover:bg-white dark:hover:bg-white" aria-current="false" aria-label="Slide 2" data-carousel-slide-to="1"></button>
<button type="button" class="w-3 h-3 rounded-full bg-white/50 dark:bg-white/50 hover:bg-white dark:hover:bg-white" aria-current="false" aria-label="Slide 3" data-carousel-slide-to="2"></button>
<button type="button" class="w-3 h-3 rounded-full bg-white/50 dark:bg-white/50 hover:bg-white dark:hover:bg-white" aria-current="false" aria-label="Slide 4" data-carousel-slide-to="3"></button>
<button type="button" class="w-3 h-3 rounded-full bg-white/50 dark:bg-white/50 hover:bg-white dark:hover:bg-white" aria-current="false" aria-label="Slide 5" data-carousel-slide-to="4"></button>
<button type="button" class="w-3 h-3 rounded-full bg-white/50 dark:bg-white/50 hover:bg-white dark:hover:bg-white" aria-current="false" aria-label="Slide 5" data-carousel-slide-to="4"></button>
<button type="button" class="w-3 h-3 rounded-full bg-white/50 dark:bg-white/50 hover:bg-white dark:hover:bg-white" aria-current="false" aria-label="Slide 5" data-carousel-slide-to="4"></button>
<button type="button" class="w-3 h-3 rounded-full bg-white/50 dark:bg-white/50 hover:bg-white dark:hover:bg-white" aria-current="false" aria-label="Slide 5" data-carousel-slide-to="4"></button>
<button type="button" class="w-3 h-3 rounded-full bg-white/50 dark:bg-white/50 hover:bg-white dark:hover:bg-white" aria-current="false" aria-label="Slide 5" data-carousel-slide-to="4"></button>
</div>
<!-- Slider controls -->
<button type="button" class="absolute top-0 left-14 sm:left10 z-30 flex items-center justify-center h-full px-4 cursor-pointer group focus:outline-none" data-carousel-prev="">
<span class="inline-flex items-center justify-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 group-hover:bg-white/50 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-white/70 group-focus:outline-none">
<svg aria-hidden="true" class="w-5 h-5 text-white sm:w-6 sm:h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"></path></svg>
<span class="sr-only">Previous</span>
</span>
</button>
<button type="button" class="absolute top-0 right-14 z-30 flex items-center justify-center h-full px-4 cursor-pointer group focus:outline-none" data-carousel-next="">
<span class="inline-flex items-center justify-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 group-hover:bg-white/50 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-white/70 group-focus:outline-none">
<svg aria-hidden="true" class="w-5 h-5 text-white sm:w-6 sm:h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span class="sr-only">Next</span>
</span>
</button>
</div>
</div>
<!--
SECTION - 4
-->
<div class="relative bg-white" id="contact">
<div class="lg:absolute lg:inset-0">
<div class="lg:absolute lg:inset-y-0 lg:right-0 lg:w-1/2">
<img class="h-56 w-full object-cover lg:absolute lg:h-full" src="./assets/images/grapes-3.jpg" alt="">
</div>
</div>
<div class="relative py-16 px-4 sm:py-24 sm:px-6 lg:mx-auto lg:grid lg:max-w-7xl lg:grid-cols-2 lg:px-8 lg:py-32">
<div class="lg:pr-8" :style="{
direction: currentLang === 'he' ? 'rtl' : 'ltr',
marginRight: currentLang === 'he' ? 'auto' : '0',
}">
<div class="mx-auto max-w-md sm:max-w-lg lg:mx-0" >
<h2 class="text-3xl font-bold tracking-tight sm:text-4xl">{{ langObject[currentLang]['contact-title'] }}</h2>
<p class="mt-4 text-lg text-gray-500 sm:mt-3">{{ langObject[currentLang]['contact-subtitle'] }}</p>
<form action="#" method="POST" class="mt-9 grid grid-cols-1 gap-y-6 sm:grid-cols-2 sm:gap-x-8">
<div>
<label for="first-name" class="block text-sm font-medium text-gray-700">{{ langObject[currentLang]['contact-name'] }}</label>
<div class="mt-1">
<input type="text" name="first-name" id="first-name" autocomplete="given-name" class="block w-full rounded-md border-gray-300 shadow-sm focus:border-green-700 focus:ring-green-700 sm:text-sm">
</div>
</div>
<div>
<label for="last-name" class="block text-sm font-medium text-gray-700">{{ langObject[currentLang]['contact-last-name']}}</label>
<div class="mt-1">
<input type="text" name="last-name" id="last-name" autocomplete="family-name" class="block w-full rounded-md border-gray-300 shadow-sm focus:border-green-700 focus:ring-green-700 sm:text-sm">
</div>
</div>
<div class="sm:col-span-2">
<label for="email" class="block text-sm font-medium text-gray-700">{{ langObject[currentLang]['contact-email'] }}</label>
<div class="mt-1">
<input id="email" name="email" type="email" autocomplete="email" class="block w-full rounded-md border-gray-300 shadow-sm focus:border-green-700 focus:ring-green-700 sm:text-sm">
</div>
</div>
<div class="sm:col-span-2">
<div class="flex justify-between">
<label for="phone" class="block text-sm font-medium text-gray-700">{{ langObject[currentLang]['contact-phone'] }}</label>
<span id="phone-description" class="text-sm text-gray-500">{{ langObject[currentLang]['contact-optional'] }}</span>
</div>
<div class="mt-1">
<input type="text" name="phone" id="phone" autocomplete="tel" aria-describedby="phone-description" class="block w-full rounded-md border-gray-300 shadow-sm focus:border-green-700 focus:ring-green-700 sm:text-sm">
</div>
</div>
<div class="sm:col-span-2">
<div class="flex justify-between">
<label for="how-can-we-help" class="block text-sm font-medium text-gray-700">{{ langObject[currentLang]['contact-message'] }}</label>
<span id="how-can-we-help-description" class="text-sm text-gray-500">Max. 500 caractères</span>
</div>
<div class="mt-1">
<textarea id="how-can-we-help" name="how-can-we-help" aria-describedby="how-can-we-help-description" rows="4" class="block w-full rounded-md border-gray-300 shadow-sm focus:border-green-700 focus:ring-green-700 sm:text-sm"></textarea>
</div>
</div>
<div class="sm:col-span-2">
<label for="how-did-you-hear-about-us" class="block text-sm font-medium text-gray-700">{{ langObject[currentLang]['contact-how']}}</label>
<div class="mt-1">
<input type="text" name="how-did-you-hear-about-us" id="how-did-you-hear-about-us" class="block w-full rounded-md border-gray-300 shadow-sm focus:border-green-700 focus:ring-green-700 sm:text-sm">
</div>
</div>
<div class="text-left sm:col-span-2">
<!-- <button type="submit" class="inline-flex justify-center rounded-md border border-transparent bg-zinc-600 py-2 px-4 text-sm font-medium text-white shadow-sm hover:bg-zinc-800 focus:outline-none focus:ring-2 focus:ring-grape-500 focus:ring-offset-2">Submit 1</button> -->
<a id="email-submit" class="inline-flex cursor-pointer justify-center rounded-md border border-transparent bg-zinc-600 py-2 px-4 text-sm font-medium text-white shadow-sm hover:bg-zinc-800 focus:outline-none focus:ring-2 focus:ring-grape-500 focus:ring-offset-2">{{ langObject[currentLang]['contact-submit'] }}</a>
</div>
</form>
</div>
</div>
</div>
</div>
<!--
SECTION - 5
-->
<footer class="bg-white">
<div class="mx-auto max-w-7xl py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
<div class="mt-8 md:order-1 md:mt-0">
<p class="text-center text-base text-gray-400">© 2022 Yekev zeev, Inc. All rights reserved.</p>
</div>
<div class="text-gray-500">
<a style="display: flex; gap: 6px;" href="https://goo.gl/maps/TMsGVomxbrcGxnPZ9" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
<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>{{ langObject[currentLang]['our-location']}}</span>
</a>
</div>
</div>
</footer>
</div>
<script src="https://unpkg.com/[email protected]/dist/flowbite.js"></script>
<script src="./lang.js"></script>
<script>
const { createApp } = Vue;
const app = createApp({
data () {
return {
langObject,
currentLang: localStorage.getItem('lang') || 'fr',
};
}
}).mount('#app');
document.querySelector('#langSelect').addEventListener('change', (e) => {
const lang = e.target.value;
localStorage.setItem('lang', lang);
app.currentLang = lang;
});
</script>
<script>
document.querySelector('#email-submit').addEventListener('click', () => {
const name = document.querySelector('#first-name').value + ' ' + document.querySelector('#last-name').value;
const email = document.querySelector('#email').value;
const phone = document.querySelector('#phone').value;
const notes = document.querySelector('#how-can-we-help').value;
const heardFrom = document.querySelector('#how-did-you-hear-about-us').value;
const href = `
mailto:[email protected]?subject=yekev%20zeev&body=
שם: ${name}%0A
אימייל: ${email}%0A
טלפון: ${phone}%0A
הערות: ${notes}%0A
איך הגעתי אליכם: ${heardFrom}
`;
window.location.href = href;
});
</script>
</body>
</html>