-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
846 lines (808 loc) ยท 46.9 KB
/
index.html
File metadata and controls
846 lines (808 loc) ยท 46.9 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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Toyra Apps - Dementia Care Support</title>
<meta
name="description"
content="Toyra helps caregivers support a person living with dementia , alzheimer through easy video calls, reminders, location checks, alerts, and calming assistance."
>
<meta name="robots" content="index, follow">
<meta name="theme-color" content="#16834b">
<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=Noto+Sans+Hebrew:wght@400;700;800;900&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="/LandingPortal/site.webmanifest">
<link rel="canonical" href="https://vovanb.github.io/LandingPortal/">
<link rel="alternate" hreflang="en" href="https://vovanb.github.io/LandingPortal/?lang=en">
<link rel="alternate" hreflang="he" href="https://vovanb.github.io/LandingPortal/?lang=he">
<link rel="alternate" hreflang="x-default" href="https://vovanb.github.io/LandingPortal/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Toyra Apps">
<meta property="og:title" content="Toyra Apps - Dementia Care Support">
<meta
property="og:description"
content="Toyra helps caregivers support a person living with dementia , alzheimer through easy video calls, reminders, location checks, alerts, and calming assistance."
>
<meta property="og:url" content="https://vovanb.github.io/LandingPortal/">
<meta property="og:image" content="https://vovanb.github.io/LandingPortal/assets/toyra-logo.png">
<meta property="og:image:alt" content="Toyra Apps logo.">
<meta property="og:locale" content="en_US">
<meta property="og:locale:alternate" content="he_IL">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Toyra Apps - Dementia Care Support">
<meta
name="twitter:description"
content="Toyra helps caregivers support dementia care at home with communication, safety alerts, location support, reminders, and calming AI assistance."
>
<meta name="twitter:image" content="https://vovanb.github.io/LandingPortal/assets/toyra-logo.png">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Toyra",
"alternateName": "Toyra Apps",
"applicationCategory": "HealthApplication",
"operatingSystem": "Android",
"url": "https://vovanb.github.io/LandingPortal/",
"downloadUrl": "https://play.google.com/store/apps/details?id=com.MOMM.Toyra&pcampaignid=web_share",
"image": "https://vovanb.github.io/LandingPortal/assets/toyra-logo.png",
"description": "Toyra helps caregivers support a person living with dementia , alzheimer through easy video calls, reminders, location checks, alerts, and calming assistance.",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"publisher": {
"@type": "Organization",
"name": "MOMM",
"url": "https://vovanb.github.io/LandingPortal/"
},
"inLanguage": ["en", "he"]
}
</script>
<link rel="stylesheet" href="styles.css?v=20260526b">
</head>
<body>
<main>
<section class="hero" aria-labelledby="hero-title">
<div class="hero-media" aria-hidden="true">
<img src="assets/caregiver-hands.jpg" alt="" fetchpriority="high">
</div>
<div class="hero-shade"></div>
<div class="hero-content">
<header class="brand" aria-label="Toyra Apps">
<img src="assets/toyra-logo.png" alt="">
<span>Toyra Apps</span>
<nav class="language-switch" aria-label="Language">
<a href="?lang=en" data-lang-link="en">EN</a>
<a href="?lang=he" data-lang-link="he">ืขืืจืืช</a>
</nav>
</header>
<div class="hero-grid">
<div class="hero-copy">
<p class="eyebrow">From family need to product</p>
<div class="hero-title-row">
<div class="alex-photo">
<img src="assets/papa.png" alt="Alex, whose dementia care story inspired Toyra.">
</div>
<div class="hero-title-copy">
<h1 id="hero-title">Toyra improves dementia care</h1>
</div>
</div>
<p class="lede">
Toyra is the nickname my mother used when she called my father.
</p>
<ul class="benefits" aria-label="Product details">
<li>Helps people with dementia stay calm, engaged, and emotionally connected through daily AI-driven interaction and family memories.</li>
<li>Built from real-life experience caring for my father with dementia, and developed with clinical guidance from a geriatric specialist (30+ years experience).</li>
<li>Reduce confusion, repetition, and loneliness โ while preserving dignity and connection.</li>
</ul>
<a
class="cta primary-cta"
href="https://play.google.com/store/apps/details?id=com.MOMM.Toyra&pcampaignid=web_share"
aria-label="Get Toyra on Google Play now"
>
<span class="primary-cta-copy">
<span class="primary-cta-main">Get Toyra now</span>
<span class="primary-cta-sub">Free for a limited time</span>
</span>
<img src="assets/google-play.png" alt="" aria-hidden="true">
</a>
<p class="compatibility">Requires Android 8.0 or higher for caregiver and patient.</p>
<a class="info-link" href="https://toyra.my.canva.site/">Learn more about Toyra</a>
</div>
<aside class="signup-panel" aria-label="Own story summary">
<p class="panel-kicker">Own Story</p>
<h2>Our Journey to Toyra</h2>
<p class="name-origin">My father Alex was diagnosed with dementia. His symptoms changed everyday life for the whole family: memory loss, loss of interest, difficulty understanding time and place, trouble communicating, and fear of staying alone.</p>
<div class="role-row">
<span>1</span>
<p>My mother became the round-the-clock caregiver and handled all daily care tasks.</p>
</div>
<div class="role-row">
<span>2</span>
<p>Alex needed constant reassurance and often looked for his wife.</p>
</div>
<div class="role-row">
<span>3</span>
<p>The family needed a practical tool to keep him connected, safer, and calmer.</p>
</div>
<a
class="cta panel-cta whatsapp-cta"
href="https://api.whatsapp.com/send?phone=972503779955&text=I'm%20interested%20in%20Toyra"
aria-label="Contact Toyra on WhatsApp"
>
<svg class="whatsapp-icon" viewBox="0 0 32 32" aria-hidden="true" focusable="false">
<path d="M16 3.2A12.6 12.6 0 0 0 5.2 22.3L3.8 28l5.9-1.5A12.6 12.6 0 1 0 16 3.2Zm0 2.4a10.2 10.2 0 0 1 8.7 15.5 10.2 10.2 0 0 1-13.8 3.4l-.4-.2-3.2.8.8-3.1-.3-.5A10.2 10.2 0 0 1 16 5.6Zm-4.1 5.4c-.2 0-.5.1-.7.4-.2.3-.9.9-.9 2.2s.9 2.5 1.1 2.7c.1.2 1.8 2.9 4.5 3.9 2.2.9 2.7.7 3.2.6.5-.1 1.6-.7 1.8-1.3.2-.6.2-1.1.1-1.3-.1-.1-.2-.2-.5-.4l-1.8-.9c-.3-.1-.5-.2-.7.2-.2.3-.8.9-.9 1.1-.2.2-.3.2-.6.1-.3-.1-1.1-.4-2.1-1.3-.8-.7-1.3-1.5-1.5-1.8-.2-.3 0-.5.1-.6l.5-.6c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5l-.8-1.9c-.2-.5-.4-.5-.7-.5h-.4Z"></path>
</svg>
<span class="whatsapp-label">Talk to Founder</span>
</a>
<div class="privacy-note">
<strong>๐ Privacy & Safety</strong>
<ul>
<li>Family-only access to patient data.</li>
<li>AI processing uses anonymized information only.</li>
<li>Designed with privacy-first architecture.</li>
</ul>
</div>
</aside>
</div>
</div>
</section>
<section class="proof-band" aria-label="Alex problems and common dementia care problems">
<div class="section-inner">
<div class="problem-copy">
<p class="eyebrow">My father Alex's problems</p>
<h2>Symptoms include memory loss and reduced interest in activities</h2>
<p>
Dad asked the same questions again and again, could not reliably answer or dial calls,
lost interest in activities, forgot his birthday and address, did not know how to get home,
and did not agree to stay home alone.
</p>
</div>
<div class="problem-list">
<article>
<h3>Repeated questions</h3>
<p>He could ask the same question and not remember the answer.</p>
</article>
<article>
<h3>Calls became difficult</h3>
<p>He could not always answer calls or call family members himself.</p>
</article>
<article>
<h3>Disorientation</h3>
<p>He could forget the day, time, address, or how to return home.</p>
</article>
<article>
<h3>Fear of being alone</h3>
<p>He looked for his wife constantly and resisted staying home alone.</p>
</article>
</div>
<p class="why-toyra-summary">
<strong>Why Toyra Exists:</strong> Traditional solutions were not enough. Toyra was built to change this reality.
</p>
</div>
</section>
<section class="common-problems" aria-label="Common dementia care problems">
<div class="section-inner common-grid">
<div>
<p class="eyebrow">Common problems</p>
<h2>Many families face the same care gaps.</h2>
</div>
<ul class="common-list">
<li>Locate the patient if he wanders outside.</li>
<li>Maintain daily routines such as bathroom, brushing teeth, medication, and exercise reminders.</li>
<li>Provide brain games, calming techniques, and meaningful activity.</li>
<li>Reduce social isolation and help the patient stay connected to loved ones.</li>
<li>Raise emergency alarms to family members or caregivers.</li>
<li>Bridge language barriers when a caregiver cannot speak the patient's language.</li>
</ul>
<p class="common-summary">Sound familiar as your LO problems?</p>
</div>
</section>
<section class="features-section" aria-label="Toyra solution features">
<div class="section-inner">
<div class="solution-heading">
<p class="eyebrow">What Toyra Does</p>
<h2>Features designed to support every step of your LOโs journey</h2>
<p>
Toyra combines safety, communication, reminders, entertainment, and AI assistance in one
Android app flow for the patient and caregiver.
</p>
</div>
<div class="feature-list">
<article>
<span class="feature-icon">SOS</span>
<h3>Emergency alerts</h3>
<p>Patient SOS and condition alarms reach the caregiver quickly.</p>
</article>
<article>
<span class="feature-icon">PIN</span>
<h3>Location support</h3>
<p>Check the patient location and receive snapshots when needed.</p>
</article>
<article>
<span class="feature-icon">AI</span>
<h3>AI speech assistance</h3>
<p>Calming prompts and mental speech support help reduce anxiety and isolation.</p>
</article>
<article>
<span class="feature-icon">Voice of Memory</span>
<h3>Loved one</h3>
<p>Toyra also helps preserve LO memories and life stories before they disappear.</p>
</article>
<article>
<span class="feature-icon">CALL</span>
<h3>Voice and touch calls</h3>
<p>Outbound calls can be started by voice recognition or simple on-screen buttons.</p>
</article>
<article>
<span class="feature-icon">Connection</span>
<h3>Emotional connection</h3>
<p>Family-shared videos, messages, and photos. Personalized interaction based on life history.</p>
</article>
</div>
</div>
</section>
<section class="screens" aria-label="Toyra app screens">
<div class="section-inner screens-inner">
<div class="screen-copy">
<p class="eyebrow">Two modes</p>
<h2>Caregiver and Patient mode work together.</h2>
<p>
Caregiver and Patient are linked using the patient's phone number. The patient gets a
simple front door for help. The caregiver gets remote visibility and action tools.
</p>
<div class="mode-cards" aria-label="Toyra modes">
<article>
<h3>Caregiver</h3>
<ul>
<li>Less repetitive stress</li>
<li>More emotional connection</li>
<li>Ability to monitor remotely</li>
<li>Preserved memories and stories</li>
</ul>
</article>
<article>
<h3>Patient</h3>
<ul>
<li>Reducing loneliness and anxiety</li>
<li>A sense of orientation, safety, and structure in daily life</li>
<li>Stimulate memory and engagement</li>
<li>Emotional continuity through family-shared content (messages, videos, music)</li>
</ul>
</article>
</div>
</div>
<div class="phone-strip-wrap">
<p class="scroll-hint">Swipe to see more screens</p>
<div class="phone-strip" dir="ltr" aria-label="Toyra interface previews">
<img src="assets/caregiver-screen.png" alt="Toyra patient support screen with SOS button and speech assistance." loading="lazy" decoding="async">
<img src="assets/patient-screen.png" alt="Toyra patient location screen with map and status image." loading="lazy" decoding="async">
<img src="assets/assistant-screen.png" alt="Toyra emergency notification shown on caregiver phone." loading="lazy" decoding="async">
<img src="assets/VoiceOfMemory.jpeg" alt="Toyra Voice of Memory screen for family memories and life stories." loading="lazy" decoding="async">
<img src="assets/videocall.jpg" alt="Toyra video call screen for caregiver and patient connection." loading="lazy" decoding="async">
<img src="assets/share.jpeg" alt="Toyra sharing screen for family content and memories." loading="lazy" decoding="async">
</div>
</div>
</div>
</section>
<section class="expertise" aria-label="Care expertise">
<div class="section-inner expertise-grid">
<div>
<p class="eyebrow">Real-World Impact</p>
<h2>Designed with geriatric care experience and field-tested caregiving insight.</h2>
</div>
<div class="quote">
<p>In daily use, Toyra has shown:</p>
<ul class="impact-list">
<li>Increased verbal engagement</li>
<li>More active participation in conversations</li>
<li>Reduced confusion episodes</li>
<li>Improved emotional stability and responsiveness</li>
</ul>
<p class="quote-credit">This is based on real-life usage, not simulations.</p>
</div>
</div>
</section>
<section class="final-cta" aria-label="Download Toyra">
<div class="section-inner">
<h2>Make tomorrowโs care a little easier.</h2>
<p>Install Toyra and connect patient and caregiver phones today.</p>
<div class="final-actions">
<a
class="cta final-button"
href="https://play.google.com/store/apps/details?id=com.MOMM.Toyra&pcampaignid=web_share"
aria-label="Download Toyra on Google Play now"
>
Download Toyra now
</a>
<a
class="final-icon-button final-whatsapp"
href="https://api.whatsapp.com/send?phone=972503779955&text=I'm%20interested%20in%20Toyra"
aria-label="Contact Toyra on WhatsApp"
>
<svg class="whatsapp-icon" viewBox="0 0 32 32" aria-hidden="true" focusable="false">
<path d="M16 3.2A12.6 12.6 0 0 0 5.2 22.3L3.8 28l5.9-1.5A12.6 12.6 0 1 0 16 3.2Zm0 2.4a10.2 10.2 0 0 1 8.7 15.5 10.2 10.2 0 0 1-13.8 3.4l-.4-.2-3.2.8.8-3.1-.3-.5A10.2 10.2 0 0 1 16 5.6Zm-4.1 5.4c-.2 0-.5.1-.7.4-.2.3-.9.9-.9 2.2s.9 2.5 1.1 2.7c.1.2 1.8 2.9 4.5 3.9 2.2.9 2.7.7 3.2.6.5-.1 1.6-.7 1.8-1.3.2-.6.2-1.1.1-1.3-.1-.1-.2-.2-.5-.4l-1.8-.9c-.3-.1-.5-.2-.7.2-.2.3-.8.9-.9 1.1-.2.2-.3.2-.6.1-.3-.1-1.1-.4-2.1-1.3-.8-.7-1.3-1.5-1.5-1.8-.2-.3 0-.5.1-.6l.5-.6c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5l-.8-1.9c-.2-.5-.4-.5-.7-.5h-.4Z"></path>
</svg>
</a>
<a
class="final-icon-button final-email"
href="mailto:vovanb@gmail.com"
aria-label="Email Toyra"
>
<svg viewBox="0 0 24 24" aria-hidden="true" focusable="false">
<path d="M4 5h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 3.2V17h16V8.2l-7.4 5.1a1 1 0 0 1-1.1 0L4 8.2Zm1.2-1.2 6.8 4.7L18.8 7H5.2Z"></path>
</svg>
</a>
</div>
</div>
</section>
</main>
<a
class="floating-cta"
href="https://play.google.com/store/apps/details?id=com.MOMM.Toyra&pcampaignid=web_share"
aria-label="Get Toyra now"
>
Get Toyra now
</a>
<footer>
<p>
Copyright ยฉ 2026 MOMM. All rights reserved.
<a href="https://vovanb.github.io/PrivacyPolicy/privacy.html">Privacy Policy</a>
</p>
<p>Toyra is a support tool and does not replace medical advice, emergency services, or direct supervision.</p>
</footer>
<script>
const phoneStrip = document.querySelector(".phone-strip");
const screenCopy = document.querySelector(".screen-copy");
if (phoneStrip) {
let activePhoneIndex = 0;
let autoScrollId = null;
function syncPhoneStripHeight() {
if (!screenCopy || window.matchMedia("(max-width: 680px)").matches) {
phoneStrip.style.removeProperty("--phone-strip-height");
return;
}
phoneStrip.style.setProperty("--phone-strip-height", `${screenCopy.offsetHeight}px`);
}
function getPhoneScrollStep() {
const firstImage = phoneStrip.querySelector("img");
if (!firstImage) return 0;
const styles = window.getComputedStyle(phoneStrip);
const gap = Number.parseFloat(styles.columnGap || styles.gap) || 0;
return firstImage.getBoundingClientRect().width + gap;
}
function startPhoneAutoScroll() {
if (autoScrollId) return;
autoScrollId = window.setInterval(() => {
const scrollStep = getPhoneScrollStep();
const phoneCount = phoneStrip.querySelectorAll("img").length;
if (phoneCount <= 1 || scrollStep <= 0) return;
activePhoneIndex = (activePhoneIndex + 1) % phoneCount;
phoneStrip.scrollTo({
left: activePhoneIndex * scrollStep,
behavior: "smooth"
});
}, 2600);
}
function stopPhoneAutoScroll() {
if (!autoScrollId) return;
window.clearInterval(autoScrollId);
autoScrollId = null;
}
phoneStrip.addEventListener("mouseenter", stopPhoneAutoScroll);
phoneStrip.addEventListener("focusin", stopPhoneAutoScroll);
phoneStrip.addEventListener("mouseleave", startPhoneAutoScroll);
phoneStrip.addEventListener("focusout", startPhoneAutoScroll);
window.addEventListener("resize", () => {
syncPhoneStripHeight();
stopPhoneAutoScroll();
startPhoneAutoScroll();
});
syncPhoneStripHeight();
startPhoneAutoScroll();
}
</script>
<script>
const pageText = {
en: {
lang: "en",
dir: "ltr",
canonical: "https://vovanb.github.io/LandingPortal/",
ogUrl: "https://vovanb.github.io/LandingPortal/",
ogLocale: "en_US",
title: "Toyra Apps - Dementia Care Support",
description: "Toyra helps caregivers support a person living with dementia through easy calls, reminders, location checks, alerts, and calming assistance.",
socialDescription: "Toyra helps caregivers support dementia care at home with communication, safety alerts, location support, reminders, and calming AI assistance.",
brandLabel: "Toyra Apps",
languageLabel: "Language",
heroLabel: "From family need to product",
heroTitle: "Toyra improves dementia care",
alexAlt: "Alex, whose dementia care story inspired Toyra.",
lede: "Toyra is the nickname my mother used when she called my father.",
benefitsLabel: "Product details",
benefits: [
"Helps people with dementia stay calm, engaged, and emotionally connected through daily AI-driven interaction and family memories.",
"Built from real-life experience caring for my father with dementia, and developed with clinical guidance from a geriatric specialist (30+ years experience).",
"Reduce confusion, repetition, and loneliness โ while preserving dignity and connection."
],
primaryCta: "Get Toyra now",
primaryCtaLabel: "Get Toyra on Google Play now",
limitedOffer: "Free for a limited time",
compatibility: "Requires Android 8.0 or higher for caregiver and patient.",
infoLink: "Learn more about Toyra",
infoLinkUrl: "https://toyra.my.canva.site/",
panelLabel: "Own story summary",
panelKicker: "Own Story",
panelTitle: "Our Journey to Toyra",
nameOrigin: "My father Alex was diagnosed with dementia. His symptoms changed everyday life for the whole family: memory loss, loss of interest, difficulty understanding time and place, trouble communicating, and fear of staying alone.",
roleNumbers: ["1", "2", "3"],
roles: [
"My mother became the round-the-clock caregiver and handled all daily care tasks.",
"Alex needed constant reassurance and often looked for his wife.",
"The family needed a practical tool to keep him connected, safer, and calmer."
],
whatsapp: "Talk to Founder",
whatsappLabel: "Contact Toyra on WhatsApp",
privacyTitle: "๐ Privacy & Safety",
privacyItems: [
"Family-only access to patient data.",
"AI processing uses anonymized information only.",
"Designed with privacy-first architecture."
],
proofLabel: "Alex problems and common dementia care problems",
proofEyebrow: "My father Alex's problems",
proofTitle: "Symptoms include memory loss and reduced interest in activities",
proofCopy: "Dad asked the same questions again and again, could not reliably answer or dial calls, lost interest in activities, forgot his birthday and address, did not know how to get home, and did not agree to stay home alone.",
whyToyraSummary: "<strong>Why Toyra Exists:</strong> Traditional solutions were not enough. Toyra was built to change this reality.",
problems: [
["Repeated questions", "He could ask the same question and not remember the answer."],
["Calls became difficult", "He could not always answer calls or call family members himself."],
["Disorientation", "He could forget the day, time, address, or how to return home."],
["Fear of being alone", "He looked for his wife constantly and resisted staying home alone."]
],
commonLabel: "Common dementia care problems",
commonEyebrow: "Common problems",
commonTitle: "Many families face the same care gaps.",
commonItems: [
"Locate the patient if he wanders outside.",
"Maintain daily routines such as bathroom, brushing teeth, medication, and exercise reminders.",
"Provide brain games, calming techniques, and meaningful activity.",
"Reduce social isolation and help the patient stay connected to loved ones.",
"Raise emergency alarms to family members or caregivers.",
"Bridge language barriers when a caregiver cannot speak the patient's language."
],
commonSummary: "Sound familiar as your LO problems?",
featuresLabel: "Toyra solution features",
solutionEyebrow: "What Toyra Does",
solutionTitle: "Features designed to support every step of your LOโs journey",
solutionCopy: "Toyra combines safety, communication, reminders, entertainment, and AI assistance in one Android app flow for the patient and caregiver.",
featureItems: [
["SOS", "Emergency alerts", "Patient SOS and condition alarms reach the caregiver quickly."],
["PIN", "Location support", "Check the patient location and receive snapshots when needed."],
["AI", "AI speech assistance", "Calming prompts and mental speech support help reduce anxiety and isolation."],
["Voice of Memory", "Loved one", "Toyra also helps preserve LO memories and life stories before they disappear."],
["CALL", "Voice and touch calls", "Outbound calls can be started by voice recognition or simple on-screen buttons."],
["Connection", "Emotional connection", "Family-shared videos, messages, and photos. Personalized interaction based on life history."]
],
screensLabel: "Toyra app screens",
modesEyebrow: "Two modes",
modesTitle: "Caregiver and Patient mode work together.",
modesCopy: "Caregiver and Patient are linked using the patient's phone number. The patient gets a simple front door for help. The caregiver gets remote visibility and action tools.",
modesLabel: "Toyra modes",
scrollHint: "Swipe to see more screens",
caregiverTitle: "Caregiver",
caregiverItems: [
"Less repetitive stress",
"More emotional connection",
"Ability to monitor remotely",
"Preserved memories and stories"
],
patientTitle: "Patient",
patientItems: [
"Reducing loneliness and anxiety",
"A sense of orientation, safety, and structure in daily life",
"Stimulate memory and engagement",
"Emotional continuity through family-shared content (messages, videos, music)"
],
phoneLabel: "Toyra interface previews",
phoneAlts: [
"Toyra patient support screen with SOS button and speech assistance.",
"Toyra patient location screen with map and status image.",
"Toyra emergency notification shown on caregiver phone.",
"Toyra Voice of Memory screen for family memories and life stories.",
"Toyra video call screen for caregiver and patient connection.",
"Toyra sharing screen for family content and memories."
],
expertiseLabel: "Care expertise",
expertiseEyebrow: "Real-World Impact",
expertiseTitle: "Designed with geriatric care experience and field-tested caregiving insight.",
quote: "In daily use, Toyra has shown:",
impactItems: [
"Increased verbal engagement",
"More active participation in conversations",
"Reduced confusion episodes",
"Improved emotional stability and responsiveness"
],
quoteCredit: "This is based on real-life usage, not simulations.",
finalLabel: "Download Toyra",
finalTitle: "Make tomorrowโs care a little easier.",
finalCopy: "Install Toyra and connect patient and caregiver phones today.",
finalButton: "Download Toyra now",
finalButtonLabel: "Download Toyra on Google Play now",
finalWhatsAppLabel: "Contact Toyra on WhatsApp",
finalEmailLabel: "Email Toyra",
floating: "Get Toyra now",
floatingLabel: "Get Toyra now",
privacyLink: "Privacy Policy",
footerSupport: "Toyra is a support tool and does not replace medical advice, emergency services, or direct supervision."
},
he: {
lang: "he",
dir: "rtl",
canonical: "https://vovanb.github.io/LandingPortal/?lang=he",
ogUrl: "https://vovanb.github.io/LandingPortal/?lang=he",
ogLocale: "he_IL",
title: "Toyra Apps - ืชืืืื ืืืืคืื ืืืื ืฆืื",
description: "Toyra ืขืืืจืช ืืืืคืืื ืืชืืื ืืืื ืขื ืืื ืฆืื ืืืืช ืืขืืจืช ืฉืืืืช ืคืฉืืืืช, ืชืืืืจืืช, ืืืงืื, ืืชืจืขืืช ืืกืืืข ืืจืืืข.",
socialDescription: "Toyra ืขืืืจืช ืืืืคืืื ืืชืืื ืืืืคืื ืืืื ืฆืื ืืืืช ืขื ืชืงืฉืืจืช, ืืชืจืขืืช ืืืืืืช, ืืืงืื, ืชืืืืจืืช ืืกืืืข AI ืืจืืืข.",
brandLabel: "Toyra Apps",
languageLabel: "ืฉืคื",
heroLabel: "ืืฆืืจื ืืฉืคืืชื ืืืืฆืจ",
heroTitle: "Toyra ืืฉืคืจืช ืืช ืืืืคืื ืืืื ืฆืื",
alexAlt: "ืืืืก, ืฉืกืืคืืจ ืืืืคืื ืื ื ืชื ืืฉืจืื ื-Toyra.",
lede: "Toyra ืืื ืฉื ืืืืื ืฉืืื ืงืจืื ืื ืืืื.",
benefitsLabel: "ืคืจืื ืืืืฆืจ",
benefits: [
"ืขืืืจืช ืืื ืฉืื ืขื ืืื ืฆืื ืืืืฉืืจ ืจืืืขืื, ืืขืืจืืื ืืืืืืจืื ืจืืฉืืช ืืืืฆืขืืช ืืื ืืจืืงืฆืื ืืืืืช ืืื ืขืช AI ืืืืืจืื ืืช ืืฉืคืืชืืื.",
"ื ืื ืชื ืืชืื ื ืืกืืื ืืืื ืืืืชื ืืืืคืื ืืืื ืขื ืืื ืฆืื, ืืคืืชืื ืืืืืื ืงืืื ื ืฉื ืืืืื ืืจืืืืจื ืขื ืืืชืจ ื-30 ืฉื ืืช ื ืืกืืื.",
"ืืคืืืชื ืืืืื, ืืืจืชืืืช ืืืืืืืช โ ืชืื ืฉืืืจื ืขื ืืืื, ืืืืืจ ืืงืจืื."
],
primaryCta: "ืืชืงื ืช Toyra",
primaryCtaLabel: "ืืชืงื ืช Toyra ื-Google Play",
limitedOffer: "ืืื ื ืืืื ืืืืื",
compatibility: "ื ืืจืฉ Android 8.0 ืืืขืื ืขืืืจ ืืืืคื ืืืืืืคื.",
infoLink: "ืืืืืข ื ืืกืฃ ืขื Toyra",
infoLinkUrl: "https://toyra.my.canva.site/heb",
panelLabel: "ืกืืืื ืืกืืคืืจ ืืืืฉื",
panelKicker: "ืืกืืคืืจ ืืืืฉื",
panelTitle: "ืืืกืข ืฉืื ื ืToyra",
nameOrigin: "ืืื ืืืืก ืืืืื ืขื ืืื ืฆืื. ืืชืกืืื ืื ืฉืื ืฉืื ื ืืช ืืื ืืืื ืืื ืฉื ืื ืืืฉืคืื: ืืืืื ืืืืจืื, ืืืืื ืขื ืืื, ืงืืฉื ืืืืื ืืื ืืืงืื, ืงืืฉื ืืชืงืฉืจ ืืคืื ืืืืฉืืจ ืืื.",
roleNumbers: ["1", "2", "3"],
roles: [
"ืืื ืืคืื ืืืืคืืช ืืกืืื ืืฉืขืื ืืืืคืื ืืื ืืฉืืืืช ืืืื ืืื.",
"ืืืืก ืืื ืฆืจืื ืืจืืขื ืืชืืืช ืืืขืืชืื ืงืจืืืืช ืืืคืฉ ืืช ืืฉืชื.",
"ืืืฉืคืื ืืืืชื ืืงืืงื ืืืื ืืขืฉื ืฉืืขืืืจ ืื ืืืืฉืืจ ืืืืืจ, ืืืื ืืจืืืข ืืืชืจ."
],
whatsapp: "ืืืจื ืขื ืืืื",
whatsappLabel: "ืืฆืืจืช ืงืฉืจ ืขื Toyra ื-WhatsApp",
privacyTitle: "๐ ืคืจืืืืช ืืืืืืืช",
privacyItems: [
"ืืืฉื ืื ืชืื ื ืืืืืคื ืืื ื ืืืฉืคืื ืืืื.",
"ืขืืืื AI ืืฉืชืืฉ ืืืืืข ืื ืื ืืื ืืืื.",
"ืชืืื ื ืืืจืืืืงืืืจื ืฉืืฆืืื ืคืจืืืืช ืืืงืื ืืจืืฉืื."
],
proofLabel: "ืืืขืืืช ืฉื ืืืืก ืืืขืืืช ื ืคืืฆืืช ืืืืคืื ืืืื ืฆืื",
proofEyebrow: "ืืืขืืืช ืฉื ืืื ืืืืก",
proofTitle: "ืืชืกืืื ืื ืืืืืื ืืืืื ืืืืจืื ืืืจืืื ืืขื ืืื ืืคืขืืืืืืช",
proofCopy: "ืืื ืฉืื ืืช ืืืชื ืฉืืืืช ืฉืื ืืฉืื, ืื ืชืืื ืืฆืืื ืืขื ืืช ืืฉืืืืช ืื ืืืืื, ืืืื ืขื ืืื ืืคืขืืืืืืช, ืฉืื ืืช ืืื ืืืืืืช ืืืืชืืืช ืฉืื, ืื ืืืข ืืื ืืืืืจ ืืืืชื ืืื ืืกืืื ืืืืฉืืจ ืืื ืืืืช.",
whyToyraSummary: "<strong>ืืื Toyra ืงืืืืช:</strong> ืืคืชืจืื ืืช ืืืกืืจืชืืื ืื ืืกืคืืงื. Toyra ื ืื ืชื ืืื ืืฉื ืืช ืืช ืืืฆืืืืช ืืื.",
problems: [
["ืฉืืืืช ืืืืจืืช", "ืืื ืืื ืืืื ืืฉืืื ืืช ืืืชื ืฉืืื ืืื ืืืืืจ ืืช ืืชืฉืืื."],
["ืฉืืืืช ืืคืื ืืงืฉืืช", "ืืื ืื ืชืืื ืืฆืืื ืืขื ืืช ืืฉืืืืช ืื ืืืชืงืฉืจ ืืื ื ืืืฉืคืื ืืขืฆืื."],
["ืืืกืจ ืืชืืฆืืืช", "ืืื ืืื ืขืืื ืืฉืืื ืืช ืืืื, ืืฉืขื, ืืืชืืืช ืื ืืื ืืืืืจ ืืืืชื."],
["ืคืื ืืืืฉืืจ ืืื", "ืืื ืืืคืฉ ืืช ืืฉืชื ืื ืืืื ืืืชื ืื ืืืืฉืืจ ืืื ืืืืช."]
],
commonLabel: "ืืขืืืช ื ืคืืฆืืช ืืืืคืื ืืืื ืฆืื",
commonEyebrow: "ืืขืืืช ื ืคืืฆืืช",
commonTitle: "ืืฉืคืืืช ืจืืืช ืืชืืืืืืช ืขื ืืืชื ืคืขืจืื ืืืืคืื.",
commonItems: [
"ืืืชืจ ืืช ืืืืืคื ืื ืืื ืืืฆื ืืืฉืืื ืืืืฅ.",
"ืืฉืืืจ ืขื ืฉืืจืช ืืื ืืื ืฉืืจืืชืื, ืฆืืฆืื ืฉืื ืืื, ืชืจืืคืืช ืืชืืืืจืืช ืืคืขืืืืช.",
"ืืกืคืง ืืฉืืงื ืืืืจืื, ืืื ืืงืืช ืืจืืขื ืืคืขืืืืช ืืฉืืขืืชืืช.",
"ืืืคืืืช ืืืืื ืืืจืชื ืืืขืืืจ ืืืืืคื ืืืืฉืืจ ืืืืืจ ืืื ืฉืื ืงืจืืืื.",
"ืืืขืืืจ ืืชืจืขืืช ืืืจืื ืืื ื ืืฉืคืื ืื ืืืืคืืื.",
"ืืืฉืจ ืขื ืคืขืจื ืฉืคื ืืืฉืจ ืืืืคื ืืื ื ืืืืจ ืืช ืฉืคืช ืืืืืคื."
],
commonSummary: "ื ืฉืืข ืืืืจ ืืืขืืืช ืฉื ืืงืืจืื?",
featuresLabel: "ืืืืืืช ืืคืชืจืื ืฉื Toyra",
solutionEyebrow: "ืื Toyra ืขืืฉื",
solutionTitle: "ืคืืฆ'ืจืื ืฉื ืื ื ืืื ืืชืืื ืืื ืฉืื ืืืกืข ืฉื ืืงืืจืืื",
solutionCopy: "Toyra ืืฉืืืช ืืืืืืช, ืชืงืฉืืจืช, ืชืืืืจืืช, ืืืืืจ ืืกืืืข AI ืืชืืืื ืืื ืืืคืืืงืฆืืืช Android ืขืืืจ ืืืืืคื ืืืืืคื.",
featureItems: [
["SOS", "ืืชืจืขืืช ืืืจืื", "ืืคืชืืจ SOS ืืืชืจืขืืช ืืฆื ืืืืืืคื ืืืืขืื ืืืืืจืืช ืืืืคื."],
["ืืืงืื", "ืชืืืื ืืืืงืื", "ืืืืงืช ืืืงืื ืืืืืคื ืืงืืืช ืชืืื ืืช ืืฆื ืืขืช ืืฆืืจื."],
["AI", "ืกืืืข ืืืืืจ ืืืืฆืขืืช AI", "ืื ืืืืช ืืจืืืขืืช ืืชืืืื ืืืืืืจ ืขืืืจืืช ืืืคืืืช ืืจืื ืืืืืืืช."],
["ืืืืจืื", "ืืื ืืืื", "Toyra ืขืืืจืช ืื ืืฉืืจ ืืืืจืื ืืช ืืกืืคืืจื ืืืื ืืคื ื ืฉืื ื ืขืืืื."],
["ืฉืืื", "ืฉืืืืช ืงืื ืืืืข", "ืืคืฉืจ ืืืชืืื ืฉืืืืช ืืืฆืืืช ืืืืืื ืงืืื ืื ืืืคืชืืจืื ืคืฉืืืื ืขื ืืืกื."],
["ืจืืฉื", "ืืืืืจ ืจืืฉื", "ืกืจืืื ืื, ืืืืขืืช ืืชืืื ืืช ืฉืืืฉืคืื ืืฉืชืคืช. ืืื ืืจืืงืฆืื ืืืชืืืช ืืืฉืืช ืขื ืืกืืก ืกืืคืืจ ืืืืื."]
],
screensLabel: "ืืกืื ืืคืืืงืฆืืืช Toyra",
modesEyebrow: "ืฉื ื ืืฆืืื",
modesTitle: "ืืฆื ืืืคื ืืืฆื ืืืืคื ืขืืืืื ืืื.",
modesCopy: "ืืืืคื ืืืืืืคื ืืงืืฉืจืื ืืืืฆืขืืช ืืกืคืจ ืืืืคืื ืฉื ืืืืืคื. ืืืืืคื ืืงืื ืื ืืกื ืคืฉืืื ืืขืืจื. ืืืืคื ืืงืื ื ืจืืืช ืืจืืืง ืืืื ืคืขืืื.",
modesLabel: "ืืฆืื Toyra",
scrollHint: "ืืืืืงื ืืื ืืจืืืช ืืกืืื ื ืืกืคืื",
caregiverTitle: "ืืืคื",
caregiverItems: [
"ืคืืืช ืขืืืก ืืืืจืชืืืช",
"ืืืชืจ ืืืืืจ ืจืืฉื",
"ืืืืืช ืื ืืจ ืืจืืืง",
"ืฉืืืืจ ืืืืจืื ืืช ืืกืืคืืจืื"
],
patientTitle: "ืืืืคื",
patientItems: [
"ืืคืืชืช ืืืืืืช ืืืจืื",
"ืชืืืฉืช ืืชืืฆืืืช, ืืืืืื ืืืื ื ืืืื ืืืื ืืื",
"ืืืจืื ืืืืจืื ืืืขืืจืืืช",
"ืืืจืื ืจืืฉื ืืืืฆืขืืช ืชืืื ืืฉืคืืชื ืืฉืืชืฃ ืืื ืืืืขืืช, ืืืืื ืืืืืืงื"
],
phoneLabel: "ืชืฆืืืืช ืืืฉืง Toyra",
phoneAlts: [
"ืืกื ืชืืืื ืืืืืคื ืขื ืืคืชืืจ SOS ืืกืืืข ืืืืืืจ.",
"ืืกื ืืืงืื ืืืืืคื ืขื ืืคื ืืชืืื ืช ืืฆื.",
"ืืชืจืืช ืืืจืื ืฉื Toyra ืฉืืืฆืืช ืืืืคืื ืืืืคื.",
"ืืกื Voice of Memory ืฉื Toyra ืืืืืจืื ืืช ืืฉืคืืชืืื ืืกืืคืืจื ืืืื.",
"ืืกื ืฉืืืช ืืืืื ืฉื Toyra ืืืืืืจ ืืื ืืืืคื ืืืืืคื.",
"ืืกื ืฉืืชืืฃ ืฉื Toyra ืืชืืื ืืฉืคืืชื ืืืืืจืื ืืช."
],
expertiseLabel: "ืืืืืืืช ืืืคืื",
expertiseEyebrow: "ืืฉืคืขื ืืขืืื ืืืืืชื",
expertiseTitle: "ืชืืื ื ืขื ื ืืกืืื ืืืืคืื ืืจืืืืจื ืืชืืื ืืช ืืืฉืื.",
quote: "ืืฉืืืืฉ ืืื ืืืื, Toyra ืืจืืชื:",
impactItems: [
"ืขืืืื ืืืขืืจืืืช ืืืืืืืช",
"ืืฉืชืชืคืืช ืคืขืืื ืืืชืจ ืืฉืืืืช",
"ืืคืืชื ืืืืจืืขื ืืืืื",
"ืฉืืคืืจ ืืืฆืืืืช ืจืืฉืืช ืืืชืืืืชืืืช"
],
quoteCredit: "ืื ืืืืกืก ืขื ืฉืืืืฉ ืืืืชื, ืื ืขื ืกืืืืืฆืืืช.",
finalLabel: "ืืชืงื ืช Toyra",
finalTitle: "ืืืคืื ืืช ืืืืคืื ืฉื ืืืจ ืืงืฆืช ืงื ืืืชืจ.",
finalCopy: "ืืชืงืื ื ืืช Toyra ืืืืจื ืืืื ืืช ืืืืคืื ืฉื ืืืืืคื ืืืืืคื.",
finalButton: "ืืชืงื ืช Toyra",
finalButtonLabel: "ืืชืงื ืช Toyra ื-Google Play",
finalWhatsAppLabel: "ืืฆืืจืช ืงืฉืจ ืขื Toyra ื-WhatsApp",
finalEmailLabel: "ืฉืืืืช ืืืืืื ื-Toyra",
floating: "ืืชืงื ืช Toyra",
floatingLabel: "ืืชืงื ืช Toyra",
privacyLink: "ืืืื ืืืช ืคืจืืืืช",
footerSupport: "Toyra ืืื ืืื ืชืืืื ืืืื ื ืืืืืคื ืืืขืืฅ ืจืคืืื, ืฉืืจืืชื ืืืจืื ืื ืืฉืืื ืืฉืืจื."
}
};
function setText(selector, value) {
const element = document.querySelector(selector);
if (element) element.textContent = value;
}
function setHtml(selector, value) {
const element = document.querySelector(selector);
if (element) element.innerHTML = value;
}
function setAttr(selector, name, value) {
const element = document.querySelector(selector);
if (element) element.setAttribute(name, value);
}
function setList(selector, values, html = false) {
document.querySelectorAll(selector).forEach((element, index) => {
if (values[index]) {
if (html) element.innerHTML = values[index];
else element.textContent = values[index];
}
});
}
function applyLanguage(language) {
const copy = pageText[language] || pageText.en;
document.documentElement.lang = copy.lang;
document.documentElement.dir = copy.dir;
document.title = copy.title;
setAttr("meta[name='description']", "content", copy.description);
setAttr("link[rel='canonical']", "href", copy.canonical);
setAttr("meta[property='og:title']", "content", copy.title);
setAttr("meta[property='og:description']", "content", copy.socialDescription);
setAttr("meta[property='og:url']", "content", copy.ogUrl);
setAttr("meta[property='og:locale']", "content", copy.ogLocale);
setAttr("meta[name='twitter:title']", "content", copy.title);
setAttr("meta[name='twitter:description']", "content", copy.socialDescription);
setAttr(".brand", "aria-label", copy.brandLabel);
setText(".brand > span", "Toyra Apps");
setAttr(".language-switch", "aria-label", copy.languageLabel);
setText(".hero .eyebrow", copy.heroLabel);
setText("#hero-title", copy.heroTitle);
setAttr(".alex-photo img", "alt", copy.alexAlt);
setText(".lede", copy.lede);
setAttr(".benefits", "aria-label", copy.benefitsLabel);
setList(".benefits li", copy.benefits, true);
setText(".primary-cta-main", copy.primaryCta);
setText(".primary-cta-sub", copy.limitedOffer);
setAttr(".primary-cta", "aria-label", copy.primaryCtaLabel);
setText(".compatibility", copy.compatibility);
setText(".info-link", copy.infoLink);
setAttr(".info-link", "href", copy.infoLinkUrl);
setAttr(".signup-panel", "aria-label", copy.panelLabel);
setText(".signup-panel .panel-kicker", copy.panelKicker);
setText(".signup-panel h2", copy.panelTitle);
setText(".name-origin", copy.nameOrigin);
setList(".role-row span", copy.roleNumbers || ["1", "2", "3"]);
setList(".role-row p", copy.roles);
setText(".whatsapp-label", copy.whatsapp);
setAttr(".whatsapp-cta", "aria-label", copy.whatsappLabel);
setText(".privacy-note strong", copy.privacyTitle);
setList(".privacy-note li", copy.privacyItems);
setAttr(".proof-band", "aria-label", copy.proofLabel);
setText(".problem-copy .eyebrow", copy.proofEyebrow);
setText(".problem-copy h2", copy.proofTitle);
setText(".problem-copy p:not(.eyebrow)", copy.proofCopy);
setHtml(".why-toyra-summary", copy.whyToyraSummary);
document.querySelectorAll(".problem-list article").forEach((article, index) => {
if (copy.problems[index]) {
setText(`.problem-list article:nth-child(${index + 1}) h3`, copy.problems[index][0]);
setText(`.problem-list article:nth-child(${index + 1}) p`, copy.problems[index][1]);
}
});
setAttr(".common-problems", "aria-label", copy.commonLabel);
setText(".common-problems .eyebrow", copy.commonEyebrow);
setText(".common-grid h2", copy.commonTitle);
setList(".common-list li", copy.commonItems);
setText(".common-summary", copy.commonSummary);
setAttr(".features-section", "aria-label", copy.featuresLabel);
setText(".solution-heading .eyebrow", copy.solutionEyebrow);
setText(".solution-heading h2", copy.solutionTitle);
setText(".solution-heading p:not(.eyebrow)", copy.solutionCopy);
document.querySelectorAll(".feature-list article").forEach((article, index) => {
if (copy.featureItems[index]) {
setText(`.feature-list article:nth-child(${index + 1}) .feature-icon`, copy.featureItems[index][0]);
setText(`.feature-list article:nth-child(${index + 1}) h3`, copy.featureItems[index][1]);
setText(`.feature-list article:nth-child(${index + 1}) p`, copy.featureItems[index][2]);
}
});
setAttr(".screens", "aria-label", copy.screensLabel);
setText(".screen-copy .eyebrow", copy.modesEyebrow);
setText(".screen-copy h2", copy.modesTitle);
setText(".screen-copy > p:not(.eyebrow)", copy.modesCopy);
setAttr(".mode-cards", "aria-label", copy.modesLabel);
setText(".scroll-hint", copy.scrollHint);
setText(".mode-cards article:nth-child(1) h3", copy.caregiverTitle);
setList(".mode-cards article:nth-child(1) li", copy.caregiverItems);
setText(".mode-cards article:nth-child(2) h3", copy.patientTitle);
setList(".mode-cards article:nth-child(2) li", copy.patientItems);
setAttr(".phone-strip", "aria-label", copy.phoneLabel);
document.querySelectorAll(".phone-strip img").forEach((img, index) => {
if (copy.phoneAlts[index]) img.alt = copy.phoneAlts[index];
});
setAttr(".expertise", "aria-label", copy.expertiseLabel);
setText(".expertise .eyebrow", copy.expertiseEyebrow);
setText(".expertise h2", copy.expertiseTitle);
setText(".quote p:not(.quote-credit)", copy.quote);
setList(".impact-list li", copy.impactItems);
setText(".quote-credit", copy.quoteCredit);
setAttr(".final-cta", "aria-label", copy.finalLabel);
setText(".final-cta h2", copy.finalTitle);
setText(".final-cta p", copy.finalCopy);
setText(".final-button", copy.finalButton);
setAttr(".final-button", "aria-label", copy.finalButtonLabel);
setAttr(".final-whatsapp", "aria-label", copy.finalWhatsAppLabel);
setAttr(".final-email", "aria-label", copy.finalEmailLabel);
setText(".floating-cta", copy.floating);
setAttr(".floating-cta", "aria-label", copy.floatingLabel);
setText("footer a", copy.privacyLink);
setText("footer p:nth-child(2)", copy.footerSupport);
document.querySelectorAll("[data-lang-link]").forEach((link) => {
const linkLanguage = link.getAttribute("data-lang-link");
const nextUrl = new URL(window.location.href);
nextUrl.searchParams.set("lang", linkLanguage);
link.href = `${nextUrl.pathname}${nextUrl.search}${nextUrl.hash}`;
if (linkLanguage === copy.lang) link.setAttribute("aria-current", "page");
else link.removeAttribute("aria-current");
});
}
const requestedLanguage = new URLSearchParams(window.location.search).get("lang");
applyLanguage(requestedLanguage === "he" ? "he" : "en");
</script>
</body>
</html>