-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
2881 lines (2736 loc) Β· 144 KB
/
script.js
File metadata and controls
2881 lines (2736 loc) Β· 144 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
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Tend: Stretching & Flexibility App - Exercise Data
const bendRoutines = {
"wake-up": {
name: "Wake Up",
description: "A simple, quick, convenient flow designed to maintain mobility and range of motion. Doable anytime, anywhere.",
duration: "5 minutes",
exercises: [
{
name: "Neck Rolls",
description: "Slowly roll your head in a circle, first clockwise, then counterclockwise. Keep movements gentle and controlled.",
duration: 30,
emoji: "π"
},
{
name: "Shoulder Shrugs",
description: "Lift your shoulders up toward your ears, hold for 3 seconds, then relax. Repeat slowly.",
duration: 30,
emoji: "π€·"
},
{
name: "Side Neck Stretch",
description: "Gently tilt your head to the right, hold for 15 seconds, then repeat on the left side.",
duration: 30,
emoji: "βοΈ",
needsSideSwitch: true
},
{
name: "Forward Neck Stretch",
description: "Slowly lower your chin toward your chest, feeling a gentle stretch in the back of your neck.",
duration: 30,
emoji: "β¬οΈ"
},
{
name: "Arm Circles",
description: "Make small circles with your arms, first forward, then backward. Keep movements slow and controlled.",
duration: 30,
emoji: "β",
needsSideSwitch: true
},
{
name: "Gentle Twist",
description: "Stand with feet hip-width apart, place your hands on your hips, and gently twist from side to side.",
duration: 30,
emoji: "π"
},
{
name: "Calf Raises",
description: "Stand tall and slowly rise up onto your toes, then lower back down. Keep movements controlled.",
duration: 30,
emoji: "π¦΅"
},
{
name: "Deep Breathing",
description: "Take 5 deep breaths, inhaling through your nose and exhaling through your mouth. Feel your body relax.",
duration: 30,
emoji: "π«"
}
]
},
"posture-reset": {
name: "Posture Reset",
description: "Focused on seated stretches that target shoulders, back, and neck to correct habitual slouching.",
duration: "4 minutes",
exercises: [
{
name: "Cactus Arms",
description: "Sit tall, bring your arms up to shoulder height, bend your elbows to 90 degrees, and press your arms back against your chair.",
duration: 30,
emoji: "π€²"
},
{
name: "Neck Rolls",
description: "Slowly roll your head in a circle, first clockwise, then counterclockwise. Keep movements gentle and controlled.",
duration: 30,
emoji: "π"
},
{
name: "Divers",
description: "Sit tall, reach your arms forward and up, then dive them down between your legs, rounding your spine.",
duration: 30,
emoji: "π€Ώ"
},
{
name: "Seated Back Twist",
description: "Sit tall and gently twist your torso to the right, placing your left hand on your right knee. Hold and repeat on other side.",
duration: 30,
emoji: "π",
needsSideSwitch: true
},
{
name: "Shoulder Blade Squeeze",
description: "Squeeze your shoulder blades together, hold for 5 seconds, then release. Keep your shoulders relaxed.",
duration: 30,
emoji: "π€"
},
{
name: "Chin Tucks",
description: "Gently pull your chin back, creating a double chin. Hold for 5 seconds, then release. Repeat slowly.",
duration: 30,
emoji: "β¬
οΈ"
},
{
name: "Seated Forward Fold",
description: "Sit tall, then slowly fold forward from your hips, letting your arms hang down toward the floor.",
duration: 30,
emoji: "β¬οΈ"
},
{
name: "Final Relaxation",
description: "Sit tall with your eyes closed, take 3 deep breaths, and feel your posture improve.",
duration: 30,
emoji: "π"
}
]
},
"full-body": {
name: "Full Body",
description: "A comprehensive routine with over 20 stretches targeting key muscles and joints across the entire body.",
duration: "15 minutes",
exercises: [
{
name: "Sun Salutation",
description: "Stand tall, reach your arms up, then fold forward, step back into a plank, and return to standing.",
duration: 60,
emoji: "βοΈ"
},
{
name: "Full Body Stretch",
description: "Stand with feet apart, reach your arms up and over your head, then gently lean to each side.",
duration: 60,
emoji: "π€Έ"
},
{
name: "Cat-Cow Stretch",
description: "On hands and knees, arch your back up like a cat, then lower it down like a cow. Move slowly and gently.",
duration: 60,
emoji: "π±"
},
{
name: "Child's Pose",
description: "Kneel and sit back on your heels, then reach your arms forward and lower your chest toward the floor.",
duration: 60,
emoji: "π§"
},
{
name: "Downward Dog",
description: "From hands and knees, tuck your toes and lift your hips up and back, straightening your legs as much as comfortable.",
duration: 60,
emoji: "π"
},
{
name: "Warrior I",
description: "Step one foot forward into a lunge, raise your arms overhead, and hold the position.",
duration: 60,
emoji: "βοΈ"
},
{
name: "Triangle Pose",
description: "Stand with feet wide apart, reach one hand down to your shin and the other up to the sky.",
duration: 60,
emoji: "πΊ"
},
{
name: "Seated Forward Fold",
description: "Sit with legs extended, reach forward toward your toes while keeping your back straight.",
duration: 60,
emoji: "β¬οΈ"
},
{
name: "Butterfly Stretch",
description: "Sit with the soles of your feet together, gently press your knees down toward the floor.",
duration: 60,
emoji: "π¦"
},
{
name: "Supine Twist",
description: "Lie on your back, bring your knees to one side, keeping your shoulders on the floor. Hold and repeat on other side.",
duration: 60,
emoji: "π",
needsSideSwitch: true
},
{
name: "Happy Baby",
description: "Lie on your back, grab the outsides of your feet, and gently rock from side to side.",
duration: 60,
emoji: "π"
},
{
name: "Final Relaxation",
description: "Lie on your back with arms at your sides, close your eyes, and take deep, slow breaths.",
duration: 60,
emoji: "π"
}
]
},
"sleep": {
name: "Sleep",
description: "Gentle, long-hold stretches to help unwind and de-stress after a long dayβpromotes better sleep quality.",
duration: "10 minutes",
exercises: [
{
name: "Rag Doll",
description: "Stand with feet hip-width apart, slowly bend forward from your hips, letting your arms hang down like a rag doll.",
duration: 60,
emoji: "πͺ"
},
{
name: "Child's Pose",
description: "Kneel and sit back on your heels, then reach your arms forward and lower your chest toward the floor.",
duration: 60,
emoji: "π§"
},
{
name: "Knees to Chest",
description: "Lie on your back, bring both knees to your chest, and gently rock from side to side.",
duration: 60,
emoji: "π¦΅"
},
{
name: "Happy Baby",
description: "Lie on your back, grab the outsides of your feet, and gently rock from side to side.",
duration: 60,
emoji: "π"
},
{
name: "Supine Twist",
description: "Lie on your back, bring your knees to one side, keeping your shoulders on the floor. Hold and repeat on other side.",
duration: 60,
emoji: "π",
needsSideSwitch: true
},
{
name: "Legs Up the Wall",
description: "Sit close to a wall, swing your legs up the wall, and lie back with your arms at your sides.",
duration: 60,
emoji: "π¦΅"
},
{
name: "Corpse Pose",
description: "Lie on your back with arms at your sides, close your eyes, and focus on your breathing.",
duration: 60,
emoji: "π΄"
},
{
name: "Final Relaxation",
description: "Continue lying still, taking slow, deep breaths, and let your body completely relax.",
duration: 60,
emoji: "π"
}
]
},
"expert": {
name: "Expert",
description: "Advanced exercises and yoga poses covering all major muscle groups and extremities. Designed to significantly improve flexibility and range of motion.",
duration: "30 minutes",
exercises: [
{
name: "Squat Stretch",
description: "Stand with feet wider than hip-width, lower into a deep squat, and hold the position.",
duration: 90,
emoji: "π¦΅"
},
{
name: "Reverse Lunge",
description: "Step one foot back into a lunge, keeping your front knee over your ankle, and hold the position.",
duration: 90,
emoji: "π",
needsSideSwitch: true
},
{
name: "Toe Squats",
description: "Kneel on the floor, sit back on your heels, and hold the position to stretch your toes and feet.",
duration: 90,
emoji: "π¦Ά"
},
{
name: "Pigeon Pose",
description: "From hands and knees, bring one knee forward and place it behind your wrist, extend the other leg back.",
duration: 90,
emoji: "ποΈ",
needsSideSwitch: true
},
{
name: "Folded Butterfly",
description: "Sit with soles of feet together, fold forward from your hips, and hold the position.",
duration: 90,
emoji: "π¦"
},
{
name: "Seated Straddle",
description: "Sit with legs wide apart, reach forward toward the center, then to each side.",
duration: 90,
emoji: "π¦΅"
},
{
name: "Wheel Pose",
description: "Lie on your back, place your hands by your ears, and lift up into a backbend.",
duration: 90,
emoji: "π"
},
{
name: "Headstand Prep",
description: "Kneel and place your forearms on the floor, interlace your fingers, and place the top of your head down.",
duration: 90,
emoji: "π"
},
{
name: "Scorpion Prep",
description: "Lie on your stomach, reach back and grab your feet, and lift your chest and legs off the floor.",
duration: 90,
emoji: "π¦"
},
{
name: "Final Relaxation",
description: "Lie on your back with arms at your sides, close your eyes, and take deep, slow breaths.",
duration: 90,
emoji: "π"
}
]
},
"hips": {
name: "Hips",
description: "Deep, focused stretches to open and unlock tight hips, especially helpful for people who sit a lot.",
duration: "12 minutes",
exercises: [
{
name: "Hip Circles",
description: "Stand with hands on hips, make slow circles with your hips, first clockwise, then counterclockwise.",
duration: 60,
emoji: "π"
},
{
name: "Hip Flexor Stretch",
description: "Step one foot forward into a lunge position, keeping your back leg straight and your front knee over your ankle.",
duration: 60,
emoji: "π",
needsSideSwitch: true
},
{
name: "Pigeon Pose",
description: "From hands and knees, bring one knee forward and place it behind your wrist, extend the other leg back.",
duration: 60,
emoji: "ποΈ",
needsSideSwitch: true
},
{
name: "Butterfly Stretch",
description: "Sit with the soles of your feet together, gently press your knees down toward the floor.",
duration: 60,
emoji: "π¦"
},
{
name: "Figure 4 Stretch",
description: "Lie on your back, place one ankle on the opposite knee, and pull the bottom leg toward your chest.",
duration: 60,
emoji: "4οΈβ£",
needsSideSwitch: true
},
{
name: "Seated Hip Stretch",
description: "Sit with one leg extended, cross the other leg over, and gently twist toward the bent knee.",
duration: 60,
emoji: "πͺ",
needsSideSwitch: true
},
{
name: "Lizard Pose",
description: "From downward dog, step one foot forward outside your hand, lower your forearms to the floor.",
duration: 60,
emoji: "π¦",
needsSideSwitch: true
},
{
name: "Happy Baby",
description: "Lie on your back, grab the outsides of your feet, and gently rock from side to side.",
duration: 60,
emoji: "π"
},
{
name: "Supine Hip Stretch",
description: "Lie on your back, bring one knee to your chest, then gently pull it across your body.",
duration: 60,
emoji: "π",
needsSideSwitch: true
},
{
name: "Final Relaxation",
description: "Lie on your back with arms at your sides, close your eyes, and feel your hips relax.",
duration: 60,
emoji: "π"
}
]
},
"hamstrings": {
name: "Hamstrings",
description: "Targeted routine to reduce hamstring tightness and relieve pressure on knees, pelvis, and lower back.",
duration: "10 minutes",
exercises: [
{
name: "Standing Forward Fold",
description: "Stand with feet hip-width apart, slowly bend forward from your hips, letting your arms hang down.",
duration: 60,
emoji: "β¬οΈ"
},
{
name: "Seated Forward Fold",
description: "Sit with legs extended, reach forward toward your toes while keeping your back straight.",
duration: 60,
emoji: "πͺ"
},
{
name: "Single Leg Forward Fold",
description: "Stand on one leg, extend the other leg forward, and reach toward your extended foot.",
duration: 60,
emoji: "π¦΅",
needsSideSwitch: true
},
{
name: "Pyramid Pose",
description: "Step one foot forward, keep both legs straight, and fold forward over your front leg.",
duration: 60,
emoji: "πΊ",
needsSideSwitch: true
},
{
name: "Reclined Hand to Big Toe",
description: "Lie on your back, lift one leg up, and hold your big toe or use a strap to pull your leg closer.",
duration: 60,
emoji: "π¦Ά",
needsSideSwitch: true
},
{
name: "Downward Dog",
description: "From hands and knees, tuck your toes and lift your hips up and back, straightening your legs as much as comfortable.",
duration: 60,
emoji: "π"
},
{
name: "Standing Split",
description: "From downward dog, lift one leg up high, keeping your hips square to the floor.",
duration: 60,
emoji: "π¦΅",
needsSideSwitch: true
},
{
name: "Final Relaxation",
description: "Lie on your back with arms at your sides, close your eyes, and feel your hamstrings relax.",
duration: 60,
emoji: "π"
}
]
},
"lower-back": {
name: "Lower Back",
description: "Gentle stretches aimed at relieving and preventing lower back pain, improving flexibility in lower back, pelvis, and hip flexors.",
duration: "8 minutes",
exercises: [
{
name: "Cat-Cow Stretch",
description: "On hands and knees, arch your back up like a cat, then lower it down like a cow. Move slowly and gently.",
duration: 60,
emoji: "π±"
},
{
name: "Child's Pose",
description: "Kneel and sit back on your heels, then reach your arms forward and lower your chest toward the floor.",
duration: 60,
emoji: "π§"
},
{
name: "Knee to Chest",
description: "Lie on your back, bring one knee to your chest, hold with your hands. Repeat with the other leg.",
duration: 60,
emoji: "π¦΅",
needsSideSwitch: true
},
{
name: "Supine Twist",
description: "Lie on your back, bring your knees to one side, keeping your shoulders on the floor. Hold and repeat on other side.",
duration: 60,
emoji: "π",
needsSideSwitch: true
},
{
name: "Pelvic Tilts",
description: "Lie on your back with knees bent, gently rock your pelvis up and down, pressing your lower back into the floor.",
duration: 60,
emoji: "π"
},
{
name: "Hip Flexor Stretch",
description: "Step one foot forward into a lunge position, keeping your back leg straight and your front knee over your ankle.",
duration: 60,
emoji: "π",
needsSideSwitch: true
},
{
name: "Seated Back Twist",
description: "Sit tall and gently twist your torso to the right, placing your left hand on your right knee. Hold and repeat on other side.",
duration: 60,
emoji: "π",
needsSideSwitch: true
},
{
name: "Final Relaxation",
description: "Lie on your back with arms at your sides, close your eyes, and feel your lower back relax.",
duration: 60,
emoji: "π"
}
]
},
"back-safe-hips": {
name: "Back-Safe Hip Strengthening",
description: "Gentle hip and core strengthening exercises designed for people with lower back issues. Focuses on glutes, hips, and core stability while avoiding spinal stress. Consult your physiotherapist before starting.",
duration: "12 minutes",
exercises: [
{
name: "Pelvic Tilts",
description: "Lie on your back with knees bent, feet flat. Gently tilt your pelvis, pressing your lower back into the floor. Hold for 5 seconds, then release.",
duration: 60,
emoji: "π"
},
{
name: "Glute Bridge Hold",
description: "Lie on your back, knees bent, feet flat. Lift your hips up, squeezing your glutes. Keep your spine neutral - don't arch too much. Hold for 5-10 seconds.",
duration: 75,
emoji: "π"
},
{
name: "Single Leg Glute Bridge",
description: "Same as glute bridge, but extend one leg straight while lifting hips. This strengthens glutes without spinal load. Alternate legs.",
duration: 90,
emoji: "π¦΅",
needsSideSwitch: true
},
{
name: "Clamshells",
description: "Lie on your side, knees bent. Keep feet together and lift your top knee up, opening like a clamshell. Strengthens hip external rotators.",
duration: 75,
emoji: "π",
needsSideSwitch: true
},
{
name: "Side-Lying Hip Abduction",
description: "Lie on your side, bottom leg bent for support. Lift your top leg straight up to hip height. Slow and controlled movement.",
duration: 75,
emoji: "π¦΅",
needsSideSwitch: true
},
{
name: "Bird Dog (Gentle)",
description: "On hands and knees, slowly extend one arm forward and opposite leg back. Keep core tight and spine neutral. No arching or rotating.",
duration: 90,
emoji: "π",
needsSideSwitch: true
},
{
name: "Supine Marching",
description: "Lie on your back, knees bent. Slowly lift one knee toward chest, then lower and switch. Keep lower back pressed to floor. Builds core stability.",
duration: 60,
emoji: "πΆ"
},
{
name: "Figure 4 Stretch",
description: "Lie on your back, place ankle on opposite knee. Gently pull bottom leg toward chest. Great for hip flexibility without spinal stress.",
duration: 75,
emoji: "4οΈβ£",
needsSideSwitch: true
},
{
name: "Knee to Chest (Single)",
description: "Lie on your back, gently bring one knee to chest with hands. Keep the other leg bent or extended flat. Relieves lower back pressure.",
duration: 60,
emoji: "π¦΅",
needsSideSwitch: true
},
{
name: "Dead Bug (Modified)",
description: "Lie on back, knees bent at 90Β°. Slowly lower one heel to floor while keeping lower back pressed down. Return and alternate sides.",
duration: 90,
emoji: "πͺ²"
},
{
name: "Hip Flexor Activation",
description: "Lie on back, knees bent. Press one foot into floor while trying to lift knee (resist with your hands). Isometric strengthening - no movement needed.",
duration: 60,
emoji: "πͺ",
needsSideSwitch: true
},
{
name: "Final Relaxation",
description: "Lie on your back in a comfortable position, knees bent or supported. Close your eyes, breathe deeply, and let all tension release.",
duration: 60,
emoji: "π"
}
]
},
"isometric": {
name: "Isometric",
description: "Routines that build muscle, strength, balance, and range of motion through static muscle contractions.",
duration: "15 minutes",
exercises: [
{
name: "Wall Sit",
description: "Stand with your back against a wall, slide down until your knees are at 90 degrees, and hold the position.",
duration: 60,
emoji: "πͺ"
},
{
name: "Plank Hold",
description: "Start in a push-up position, hold your body straight from head to heels, and maintain the position.",
duration: 60,
emoji: "π"
},
{
name: "Isometric Squat",
description: "Stand with feet shoulder-width apart, lower into a squat, and hold the position without moving.",
duration: 60,
emoji: "π¦΅"
},
{
name: "Glute Bridge Hold",
description: "Lie on your back with knees bent, lift your hips up, and hold the position, squeezing your glutes.",
duration: 60,
emoji: "π"
},
{
name: "Isometric Push-up",
description: "Start in a push-up position, lower halfway down, and hold the position without going up or down.",
duration: 60,
emoji: "πͺ"
},
{
name: "Single Leg Stand",
description: "Stand on one leg, lift the other leg slightly off the ground, and hold the position for balance.",
duration: 60,
emoji: "π¦΅",
needsSideSwitch: true
},
{
name: "Isometric Lunge",
description: "Step one foot forward into a lunge position, hold the position without moving up or down.",
duration: 60,
emoji: "π",
needsSideSwitch: true
},
{
name: "Dead Bug Hold",
description: "Lie on your back with arms up and knees at 90 degrees, hold the position while engaging your core.",
duration: 60,
emoji: "π"
},
{
name: "Isometric Calf Raise",
description: "Stand on your toes, hold the position at the top of a calf raise without moving up or down.",
duration: 60,
emoji: "π¦΅"
},
{
name: "Final Relaxation",
description: "Lie on your back with arms at your sides, close your eyes, and feel your muscles relax.",
duration: 60,
emoji: "π"
}
]
},
"neck": {
name: "Neck",
description: "Gentle stretches to relieve neck tension, improve mobility, and reduce stiffness from poor posture.",
duration: "8 minutes",
exercises: [
{
name: "Neck Rolls",
description: "Slowly roll your head in a circle, first clockwise, then counterclockwise. Keep movements gentle and controlled.",
duration: 60,
emoji: "π"
},
{
name: "Side Neck Stretch",
description: "Gently tilt your head to the right, hold for 15 seconds, then repeat on the left side.",
duration: 60,
emoji: "βοΈ",
needsSideSwitch: true
},
{
name: "Forward Neck Stretch",
description: "Slowly lower your chin toward your chest, feeling a gentle stretch in the back of your neck.",
duration: 60,
emoji: "β¬οΈ"
},
{
name: "Backward Neck Stretch",
description: "Gently tilt your head back, looking up toward the ceiling, feeling a stretch in the front of your neck.",
duration: 60,
emoji: "β¬οΈ"
},
{
name: "Chin Tucks",
description: "Gently pull your chin back, creating a double chin. Hold for 5 seconds, then release. Repeat slowly.",
duration: 60,
emoji: "β¬
οΈ"
},
{
name: "Neck Rotation",
description: "Slowly turn your head to the right as far as comfortable, hold for 10 seconds, then repeat on the left.",
duration: 60,
emoji: "β©οΈ",
needsSideSwitch: true
},
{
name: "Diagonal Neck Stretch",
description: "Gently tilt your head diagonally down and to the right, then repeat on the left side.",
duration: 60,
emoji: "βοΈ",
needsSideSwitch: true
},
{
name: "Final Relaxation",
description: "Sit or stand tall, close your eyes, and take 5 deep breaths while feeling your neck relax.",
duration: 60,
emoji: "π"
}
]
},
"shoulders": {
name: "Shoulders",
description: "Targeted stretches to release shoulder tension, improve range of motion, and prevent stiffness.",
duration: "10 minutes",
exercises: [
{
name: "Shoulder Shrugs",
description: "Lift your shoulders up toward your ears, hold for 3 seconds, then relax. Repeat slowly.",
duration: 60,
emoji: "π€·"
},
{
name: "Arm Circles",
description: "Make small circles with your arms, first forward, then backward. Keep movements slow and controlled.",
duration: 60,
emoji: "β",
needsSideSwitch: true
},
{
name: "Shoulder Blade Squeeze",
description: "Squeeze your shoulder blades together, hold for 5 seconds, then release. Keep your shoulders relaxed.",
duration: 60,
emoji: "π€"
},
{
name: "Cross-Body Shoulder Stretch",
description: "Bring one arm across your chest, use your other arm to gently pull it closer. Hold and repeat on other side.",
duration: 60,
emoji: "π€",
needsSideSwitch: true
},
{
name: "Behind-Back Shoulder Stretch",
description: "Reach one arm behind your back, use your other hand to gently pull it up. Hold and repeat on other side.",
duration: 60,
emoji: "π€²",
needsSideSwitch: true
},
{
name: "Overhead Shoulder Stretch",
description: "Reach one arm overhead and bend it behind your head, use your other hand to gently pull the elbow. Hold and repeat.",
duration: 60,
emoji: "π",
needsSideSwitch: true
},
{
name: "Doorway Chest Stretch",
description: "Place your forearm against a doorway, step forward to feel a stretch in your chest and front shoulder.",
duration: 60,
emoji: "πͺ"
},
{
name: "Final Relaxation",
description: "Let your arms hang naturally at your sides, close your eyes, and feel your shoulders relax completely.",
duration: 60,
emoji: "π"
}
]
},
"feet": {
name: "Feet",
description: "Foot-specific stretches to improve flexibility, reduce pain, and enhance overall foot health.",
duration: "8 minutes",
exercises: [
{
name: "Toe Spreads",
description: "Sit comfortably and spread your toes as wide as possible, hold for 5 seconds, then relax.",
duration: 60,
emoji: "π¦Ά"
},
{
name: "Toe Curls",
description: "Curl your toes under, hold for 5 seconds, then extend them as far as possible. Repeat slowly.",
duration: 60,
emoji: "π£"
},
{
name: "Ankle Circles",
description: "Sit with one leg extended, rotate your ankle in circles, first clockwise, then counterclockwise.",
duration: 60,
emoji: "π",
needsSideSwitch: true
},
{
name: "Plantar Fascia Stretch",
description: "Sit and place one foot on the opposite knee, gently pull your toes back toward your shin.",
duration: 60,
emoji: "π¦Ά",
needsSideSwitch: true
},
{
name: "Calf Raises",
description: "Stand tall and slowly rise up onto your toes, then lower back down. Keep movements controlled.",
duration: 60,
emoji: "π¦΅"
},
{
name: "Toe Squats",
description: "Kneel on the floor, sit back on your heels, and hold the position to stretch your toes and feet.",
duration: 60,
emoji: "π¦Ά"
},
{
name: "Foot Massage",
description: "Use your hands to gently massage the bottom of your foot, focusing on the arch and heel.",
duration: 60,
emoji: "π"
},
{
name: "Final Relaxation",
description: "Sit comfortably with your feet flat on the floor, close your eyes, and feel your feet relax.",
duration: 60,
emoji: "π"
}
]
},
"ankle": {
name: "Ankle",
description: "Ankle mobility exercises to improve flexibility, reduce stiffness, and prevent injury.",
duration: "6 minutes",
exercises: [
{
name: "Ankle Circles",
description: "Sit with one leg extended, rotate your ankle in circles, first clockwise, then counterclockwise.",
duration: 60,
emoji: "π",
needsSideSwitch: true
},
{
name: "Ankle Flexion",
description: "Point your toes away from you, then pull them back toward your shin. Move slowly and controlled.",
duration: 60,
emoji: "β¬οΈ"
},
{
name: "Ankle Inversion",
description: "Turn your foot inward, then outward. Keep movements gentle and within comfortable range.",
duration: 60,
emoji: "βοΈ"
},
{
name: "Calf Stretch",
description: "Stand facing a wall, place one foot forward, lean into the wall to stretch your calf and ankle.",
duration: 60,
emoji: "π¦΅",
needsSideSwitch: true
},
{
name: "Achilles Stretch",
description: "Stand on a step, let one heel hang off the edge, and gently lower it to stretch your Achilles tendon.",
duration: 60,
emoji: "π¦Ά",
needsSideSwitch: true
},
{
name: "Ankle Alphabet",
description: "Sit with one leg extended, use your big toe to trace the alphabet in the air.",
duration: 60,
emoji: "π€",
needsSideSwitch: true
},
{
name: "Final Relaxation",
description: "Sit comfortably with your feet flat on the floor, close your eyes, and feel your ankles relax.",
duration: 60,
emoji: "π"
}
]
},
"knees": {
name: "Knees",
description: "Gentle knee stretches to improve mobility, reduce stiffness, and support joint health.",
duration: "8 minutes",
exercises: [
{
name: "Knee Circles",
description: "Stand with feet hip-width apart, place hands on knees, and make gentle circles with your knees.",
duration: 60,
emoji: "π"
},
{
name: "Knee to Chest",
description: "Lie on your back, bring one knee to your chest, hold with your hands. Repeat with the other leg.",
duration: 60,
emoji: "π¦΅",
needsSideSwitch: true
},
{
name: "Seated Knee Extensions",
description: "Sit tall, extend one leg straight out, hold for 5 seconds, then lower. Repeat with other leg.",
duration: 60,
emoji: "πͺ",
needsSideSwitch: true
},
{
name: "Quad Stretch",
description: "Stand and bend one knee, bringing your heel toward your glutes. Hold your ankle and gently pull.",
duration: 60,
emoji: "π¦΅",
needsSideSwitch: true
},
{
name: "Hamstring Stretch",
description: "Sit with one leg extended, reach forward toward your toes while keeping your back straight.",
duration: 60,
emoji: "β¬οΈ"
},
{
name: "IT Band Stretch",
description: "Stand and cross one leg behind the other, lean to the side to stretch your IT band.",
duration: 60,
emoji: "βοΈ",
needsSideSwitch: true
},
{
name: "Knee Hugs",
description: "Lie on your back, bring both knees to your chest, and gently rock from side to side.",
duration: 60,
emoji: "π€"
},
{
name: "Final Relaxation",
description: "Lie on your back with legs extended, close your eyes, and feel your knees relax completely.",
duration: 60,
emoji: "π"
}
]
},
"hands": {
name: "Hands",
description: "Hand and finger stretches to improve dexterity, reduce stiffness, and prevent repetitive strain.",
duration: "6 minutes",
exercises: [
{
name: "Fist to Open",
description: "Make a tight fist, then open your hand and spread your fingers wide. Repeat slowly.",
duration: 60,
emoji: "β"
},
{
name: "Finger Spreads",
description: "Spread your fingers as wide as possible, hold for 5 seconds, then bring them together.",
duration: 60,
emoji: "ποΈ"
},
{
name: "Thumb Circles",
description: "Make circles with your thumb, first clockwise, then counterclockwise. Use your other hand for support.",
duration: 60,
emoji: "π"
},
{
name: "Finger Bends",
description: "Bend each finger individually, starting with your index finger and working to your pinky.",
duration: 60,
emoji: "π"
},
{
name: "Prayer Stretch",
description: "Press your palms together in front of your chest, then slowly lower your hands while keeping palms together.",
duration: 60,
emoji: "π"
},
{
name: "Wrist Flexor Stretch",
description: "Extend one arm, use your other hand to gently pull your fingers back toward your forearm.",
duration: 60,
emoji: "π€²",
needsSideSwitch: true
},
{
name: "Hand Massage",
description: "Use your thumb to gently massage the palm of your other hand, then switch hands.",
duration: 60,
emoji: "π",
needsSideSwitch: true