@jjlmoya/utils-health 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +60 -0
- package/src/category/i18n/en.ts +60 -0
- package/src/category/i18n/es.ts +60 -0
- package/src/category/i18n/fr.ts +60 -0
- package/src/category/index.ts +22 -0
- package/src/category/seo.astro +15 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +28 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +36 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +146 -0
- package/src/pages/[locale].astro +251 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/locale_completeness.test.ts +42 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/seo_length.test.ts +22 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tests/tool_validation.test.ts +17 -0
- package/src/tool/binauralTuner/bibliography.astro +14 -0
- package/src/tool/binauralTuner/component.astro +687 -0
- package/src/tool/binauralTuner/i18n/en.ts +187 -0
- package/src/tool/binauralTuner/i18n/es.ts +187 -0
- package/src/tool/binauralTuner/i18n/fr.ts +187 -0
- package/src/tool/binauralTuner/index.ts +27 -0
- package/src/tool/binauralTuner/seo.astro +14 -0
- package/src/tool/binauralTuner/ui.ts +18 -0
- package/src/tool/bloodUnitConverter/bibliography.astro +14 -0
- package/src/tool/bloodUnitConverter/component.astro +915 -0
- package/src/tool/bloodUnitConverter/i18n/en.ts +227 -0
- package/src/tool/bloodUnitConverter/i18n/es.ts +250 -0
- package/src/tool/bloodUnitConverter/i18n/fr.ts +218 -0
- package/src/tool/bloodUnitConverter/index.ts +27 -0
- package/src/tool/bloodUnitConverter/seo.astro +14 -0
- package/src/tool/bloodUnitConverter/ui.ts +38 -0
- package/src/tool/bmiCalculator/bibliography.astro +14 -0
- package/src/tool/bmiCalculator/component.astro +415 -0
- package/src/tool/bmiCalculator/i18n/en.ts +217 -0
- package/src/tool/bmiCalculator/i18n/es.ts +221 -0
- package/src/tool/bmiCalculator/i18n/fr.ts +217 -0
- package/src/tool/bmiCalculator/index.ts +27 -0
- package/src/tool/bmiCalculator/seo.astro +14 -0
- package/src/tool/bmiCalculator/ui.ts +21 -0
- package/src/tool/breathingVisualizer/bibliography.astro +14 -0
- package/src/tool/breathingVisualizer/component.astro +636 -0
- package/src/tool/breathingVisualizer/i18n/en.ts +206 -0
- package/src/tool/breathingVisualizer/i18n/es.ts +206 -0
- package/src/tool/breathingVisualizer/i18n/fr.ts +206 -0
- package/src/tool/breathingVisualizer/index.ts +27 -0
- package/src/tool/breathingVisualizer/seo.astro +14 -0
- package/src/tool/breathingVisualizer/ui.ts +31 -0
- package/src/tool/caffeineTracker/bibliography.astro +14 -0
- package/src/tool/caffeineTracker/component.astro +1210 -0
- package/src/tool/caffeineTracker/i18n/en.ts +198 -0
- package/src/tool/caffeineTracker/i18n/es.ts +198 -0
- package/src/tool/caffeineTracker/i18n/fr.ts +198 -0
- package/src/tool/caffeineTracker/index.ts +27 -0
- package/src/tool/caffeineTracker/logic.ts +31 -0
- package/src/tool/caffeineTracker/seo.astro +14 -0
- package/src/tool/caffeineTracker/ui.ts +36 -0
- package/src/tool/daltonismSimulator/bibliography.astro +14 -0
- package/src/tool/daltonismSimulator/component.astro +383 -0
- package/src/tool/daltonismSimulator/i18n/en.ts +188 -0
- package/src/tool/daltonismSimulator/i18n/es.ts +218 -0
- package/src/tool/daltonismSimulator/i18n/fr.ts +168 -0
- package/src/tool/daltonismSimulator/index.ts +27 -0
- package/src/tool/daltonismSimulator/seo.astro +14 -0
- package/src/tool/daltonismSimulator/ui.ts +20 -0
- package/src/tool/digestionStopwatch/bibliography.astro +14 -0
- package/src/tool/digestionStopwatch/component.astro +627 -0
- package/src/tool/digestionStopwatch/i18n/en.ts +173 -0
- package/src/tool/digestionStopwatch/i18n/es.ts +173 -0
- package/src/tool/digestionStopwatch/i18n/fr.ts +173 -0
- package/src/tool/digestionStopwatch/index.ts +27 -0
- package/src/tool/digestionStopwatch/logic.ts +63 -0
- package/src/tool/digestionStopwatch/seo.astro +14 -0
- package/src/tool/digestionStopwatch/ui.ts +20 -0
- package/src/tool/epworthSleepinessScale/bibliography.astro +14 -0
- package/src/tool/epworthSleepinessScale/component.astro +528 -0
- package/src/tool/epworthSleepinessScale/i18n/en.ts +217 -0
- package/src/tool/epworthSleepinessScale/i18n/es.ts +217 -0
- package/src/tool/epworthSleepinessScale/i18n/fr.ts +217 -0
- package/src/tool/epworthSleepinessScale/index.ts +27 -0
- package/src/tool/epworthSleepinessScale/seo.astro +14 -0
- package/src/tool/epworthSleepinessScale/ui.ts +27 -0
- package/src/tool/hydrationCalculator/bibliography.astro +14 -0
- package/src/tool/hydrationCalculator/component.astro +694 -0
- package/src/tool/hydrationCalculator/i18n/en.ts +217 -0
- package/src/tool/hydrationCalculator/i18n/es.ts +222 -0
- package/src/tool/hydrationCalculator/i18n/fr.ts +199 -0
- package/src/tool/hydrationCalculator/index.ts +27 -0
- package/src/tool/hydrationCalculator/seo.astro +14 -0
- package/src/tool/hydrationCalculator/ui.ts +28 -0
- package/src/tool/pelliRobsonTest/bibliography.astro +14 -0
- package/src/tool/pelliRobsonTest/component.astro +653 -0
- package/src/tool/pelliRobsonTest/i18n/en.ts +205 -0
- package/src/tool/pelliRobsonTest/i18n/es.ts +205 -0
- package/src/tool/pelliRobsonTest/i18n/fr.ts +205 -0
- package/src/tool/pelliRobsonTest/index.ts +27 -0
- package/src/tool/pelliRobsonTest/seo.astro +14 -0
- package/src/tool/pelliRobsonTest/ui.ts +21 -0
- package/src/tool/peripheralVisionTrainer/bibliography.astro +14 -0
- package/src/tool/peripheralVisionTrainer/component.astro +678 -0
- package/src/tool/peripheralVisionTrainer/i18n/en.ts +224 -0
- package/src/tool/peripheralVisionTrainer/i18n/es.ts +224 -0
- package/src/tool/peripheralVisionTrainer/i18n/fr.ts +211 -0
- package/src/tool/peripheralVisionTrainer/index.ts +27 -0
- package/src/tool/peripheralVisionTrainer/seo.astro +14 -0
- package/src/tool/peripheralVisionTrainer/ui.ts +26 -0
- package/src/tool/readingDistanceCalculator/bibliography.astro +14 -0
- package/src/tool/readingDistanceCalculator/component.astro +588 -0
- package/src/tool/readingDistanceCalculator/i18n/en.ts +202 -0
- package/src/tool/readingDistanceCalculator/i18n/es.ts +215 -0
- package/src/tool/readingDistanceCalculator/i18n/fr.ts +193 -0
- package/src/tool/readingDistanceCalculator/index.ts +31 -0
- package/src/tool/readingDistanceCalculator/seo.astro +14 -0
- package/src/tool/readingDistanceCalculator/ui.ts +18 -0
- package/src/tool/screenDecompressionTime/bibliography.astro +14 -0
- package/src/tool/screenDecompressionTime/component.astro +671 -0
- package/src/tool/screenDecompressionTime/i18n/en.ts +225 -0
- package/src/tool/screenDecompressionTime/i18n/es.ts +247 -0
- package/src/tool/screenDecompressionTime/i18n/fr.ts +225 -0
- package/src/tool/screenDecompressionTime/index.ts +27 -0
- package/src/tool/screenDecompressionTime/seo.astro +14 -0
- package/src/tool/screenDecompressionTime/ui.ts +32 -0
- package/src/tool/tinnitusReliever/bibliography.astro +14 -0
- package/src/tool/tinnitusReliever/component.astro +581 -0
- package/src/tool/tinnitusReliever/i18n/en.ts +161 -0
- package/src/tool/tinnitusReliever/i18n/es.ts +161 -0
- package/src/tool/tinnitusReliever/i18n/fr.ts +161 -0
- package/src/tool/tinnitusReliever/index.ts +27 -0
- package/src/tool/tinnitusReliever/seo.astro +14 -0
- package/src/tool/tinnitusReliever/ui.ts +9 -0
- package/src/tool/ubeCalculator/bibliography.astro +14 -0
- package/src/tool/ubeCalculator/component.astro +683 -0
- package/src/tool/ubeCalculator/i18n/en.ts +200 -0
- package/src/tool/ubeCalculator/i18n/es.ts +200 -0
- package/src/tool/ubeCalculator/i18n/fr.ts +196 -0
- package/src/tool/ubeCalculator/index.ts +27 -0
- package/src/tool/ubeCalculator/seo.astro +14 -0
- package/src/tool/ubeCalculator/ui.ts +26 -0
- package/src/tool/waterPurifier/bibliography.astro +14 -0
- package/src/tool/waterPurifier/component.astro +628 -0
- package/src/tool/waterPurifier/i18n/en.ts +167 -0
- package/src/tool/waterPurifier/i18n/es.ts +167 -0
- package/src/tool/waterPurifier/i18n/fr.ts +167 -0
- package/src/tool/waterPurifier/index.ts +27 -0
- package/src/tool/waterPurifier/seo.astro +14 -0
- package/src/tool/waterPurifier/ui.ts +18 -0
- package/src/tools.ts +19 -0
- package/src/types.ts +72 -0
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowToThing } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { BreathingVisualizerUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'breathing-visualizer';
|
|
6
|
+
const title = 'Conscious Breathing Visualizer: Box Breathing and Wim Hof Method';
|
|
7
|
+
const description =
|
|
8
|
+
'Instantly reduce stress and anxiety with our breathing visualizer. Bio-feedback guide for Box Breathing, 4-7-8 and Wim Hof Method.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'What is Box Breathing?',
|
|
13
|
+
answer:
|
|
14
|
+
'It is a rhythmic breathing technique used by elite units (Navy SEALs) to maintain calm under pressure. It consists of four equal steps: inhale, hold, exhale and hold, usually for 4 seconds each.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'How does breathing help reduce anxiety?',
|
|
18
|
+
answer:
|
|
19
|
+
'By breathing slowly and in a controlled manner, we stimulate the vagus nerve, which activates the parasympathetic nervous system. This reduces heart rate and blood pressure, sending a safety signal to the brain.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'What is the 4-7-8 technique?',
|
|
23
|
+
answer:
|
|
24
|
+
'It is a deep relaxation technique that involves inhaling for 4 seconds, holding the breath for 7, and exhaling loudly for 8. It is very effective for helping fall asleep.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Is it safe to practice the Wim Hof method alone?',
|
|
28
|
+
answer:
|
|
29
|
+
'The Wim Hof method is safe for healthy people, but should never be practiced in water or while driving, as it can cause dizziness or temporary loss of consciousness. Always consult a doctor if you have cardiovascular problems.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Choose a technique',
|
|
36
|
+
text: 'Select between Box Breathing, 4-7-8 or custom techniques according to your goal (calm, sleep or energy).',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Follow the visual guide',
|
|
40
|
+
text: 'Watch the circle on screen. Inhale as it expands and exhale as it contracts, following the exact rhythm.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Focus the mind',
|
|
44
|
+
text: 'Try not to think about anything other than the flow of air entering and leaving your lungs.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Check your sensations',
|
|
48
|
+
text: 'After 5-10 minutes, analyze your stress level. You should notice a clear reduction in muscular and mental tension.',
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqData.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const howToSchema: WithContext<HowToThing> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'HowTo',
|
|
65
|
+
name: title,
|
|
66
|
+
description,
|
|
67
|
+
step: howToData.map((step, i) => ({
|
|
68
|
+
'@type': 'HowToStep',
|
|
69
|
+
position: i + 1,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'HealthApplication',
|
|
81
|
+
operatingSystem: 'Web',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export const content: ToolLocaleContent<BreathingVisualizerUI> = {
|
|
86
|
+
slug,
|
|
87
|
+
title,
|
|
88
|
+
description,
|
|
89
|
+
faqTitle: 'Frequently asked questions about breathing techniques',
|
|
90
|
+
faq: faqData,
|
|
91
|
+
bibliographyTitle: 'Breathing Science and Medical Evidence',
|
|
92
|
+
bibliography: [
|
|
93
|
+
{
|
|
94
|
+
name: 'Box Breathing: Benefits and How to Do It (Cleveland Clinic)',
|
|
95
|
+
url: 'https://health.clevelandclinic.org/box-breathing-benefits',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'The Effect of Diaphragmatic Breathing on Attention, Negative Affect and Cortisol (Frontiers in Psychology)',
|
|
99
|
+
url: 'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5455070/',
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
name: 'Voluntary activation of the sympathetic nervous system and attenuation of the innate immune response in humans (PNAS - Wim Hof Study)',
|
|
103
|
+
url: 'https://www.pnas.org/doi/10.1073/pnas.1322174111',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
name: 'Brief structured respiration practices enhance mood and reduce physiological arousal (Cell Reports Medicine)',
|
|
107
|
+
url: 'https://www.cell.com/cell-reports-medicine/fulltext/S2666-3791(22)00474-8',
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
name: 'Navy SEALs Box Breathing: How to control your stress response',
|
|
111
|
+
url: 'https://www.medicalnewstoday.com/articles/321805',
|
|
112
|
+
},
|
|
113
|
+
],
|
|
114
|
+
howTo: howToData,
|
|
115
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
116
|
+
ui: {
|
|
117
|
+
startLabel: 'START SESSION',
|
|
118
|
+
stopLabel: 'STOP',
|
|
119
|
+
idlePhase: 'Select a technique to begin',
|
|
120
|
+
sessionEnded: 'Session ended',
|
|
121
|
+
orbIdle: 'Peace',
|
|
122
|
+
roundPrefix: 'Round',
|
|
123
|
+
breathPrefix: 'Breath',
|
|
124
|
+
btnBox: 'Box Breathing (4-4)',
|
|
125
|
+
btnRelax: '4-7-8 Relax',
|
|
126
|
+
btnWimhof: 'Wim Hof (30 cycles)',
|
|
127
|
+
loopTitle: 'Repeat automatically',
|
|
128
|
+
vibTitle: 'Vibration',
|
|
129
|
+
phaseInhale: 'Inhale',
|
|
130
|
+
phaseHold: 'Hold',
|
|
131
|
+
phaseExhale: 'Exhale',
|
|
132
|
+
phaseEmpty: 'Empty',
|
|
133
|
+
phaseRelease: 'Release',
|
|
134
|
+
phaseRecover: 'Recover',
|
|
135
|
+
labelBoxInhale: 'Fill your lungs',
|
|
136
|
+
labelBoxHold: 'Hold the air',
|
|
137
|
+
labelBoxExhale: 'Release gently',
|
|
138
|
+
labelBoxEmpty: 'Pause and relax',
|
|
139
|
+
labelRelaxInhale: 'Through the nose',
|
|
140
|
+
labelRelaxHold: 'Hold your breath',
|
|
141
|
+
labelRelaxExhale: 'Release through mouth',
|
|
142
|
+
labelWimInhale: 'Deep breath in',
|
|
143
|
+
labelWimRelease: 'Let it go',
|
|
144
|
+
labelWimHold: 'Breath retention',
|
|
145
|
+
labelWimRecover: 'Inhale and hold',
|
|
146
|
+
},
|
|
147
|
+
seo: [
|
|
148
|
+
{
|
|
149
|
+
type: 'summary',
|
|
150
|
+
title: 'Conscious Breathing Visualizer',
|
|
151
|
+
items: [
|
|
152
|
+
'<strong>Box Breathing (4-4-4-4)</strong>: Navy SEALs technique for alert calm and stress control.',
|
|
153
|
+
'<strong>4-7-8 Technique</strong>: Dr. Weil\'s natural sedative for insomnia and anxiety.',
|
|
154
|
+
'<strong>Wim Hof Method</strong>: 30 breathing cycles for energy, immunity and resilience.',
|
|
155
|
+
'<strong>Visual orb guide</strong>: expands on inhale and contracts on exhale for perfect bio-feedback.',
|
|
156
|
+
],
|
|
157
|
+
},
|
|
158
|
+
{ type: 'title', text: 'Box Breathing: The Navy SEALs Technique', level: 2 },
|
|
159
|
+
{
|
|
160
|
+
type: 'paragraph',
|
|
161
|
+
html: '<strong>Box breathing</strong> is the technique of choice for professionals operating under extreme stress: surgeons, Navy SEALs special forces and high-performance athletes. Its goal is to place you in a state of <strong>"alert calm"</strong>. Box Breathing mechanically interrupts the stress cycle, stimulating the vagus nerve and forcing the brain to recover homeostasis.',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: 'list',
|
|
165
|
+
items: [
|
|
166
|
+
'<strong>Inhale (4s):</strong> Fill the abdomen, not the chest. Introduce fresh oxygen.',
|
|
167
|
+
'<strong>Hold (4s):</strong> Comfortably hold the air. Allow complete gas exchange.',
|
|
168
|
+
'<strong>Exhale (4s):</strong> Release gently. Feel tension leave your shoulders.',
|
|
169
|
+
'<strong>Empty (4s):</strong> Vital pause. Reset your heart rate before the next cycle.',
|
|
170
|
+
],
|
|
171
|
+
},
|
|
172
|
+
{ type: 'title', text: 'The 4-7-8 Technique: The Natural Sedative', level: 2 },
|
|
173
|
+
{
|
|
174
|
+
type: 'paragraph',
|
|
175
|
+
html: 'Popularized by Dr. Andrew Weil, the 4-7-8 technique is considered a <strong>natural tranquilizer</strong> for the nervous system. The exhalation that doubles the inhalation time is the biological key to reducing blood pressure and calming the mind almost instantly. It is very effective for falling asleep.',
|
|
176
|
+
},
|
|
177
|
+
{ type: 'title', text: 'The Wim Hof Method: Science and Immune Resilience', level: 2 },
|
|
178
|
+
{
|
|
179
|
+
type: 'paragraph',
|
|
180
|
+
html: 'The <strong>Wim Hof Method (WHM)</strong> aims to "hack" the immune system. Through 30 deep breaths followed by a prolonged retention, a temporary alkalosis is induced in the blood. Studies at <strong>Radboud University</strong> confirmed this technique allows voluntary influence over the autonomic nervous system.',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'list',
|
|
184
|
+
items: [
|
|
185
|
+
'<strong>30 Breaths:</strong> Inhale strongly through the mouth, release relaxed. 1.5-second cycles.',
|
|
186
|
+
'<strong>Retention (60s+):</strong> After the last exhalation, hold without air in the lungs.',
|
|
187
|
+
'<strong>Recovery (15s):</strong> Inhale deeply once and hold the pressure in the head.',
|
|
188
|
+
],
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
type: 'tip',
|
|
192
|
+
title: 'Safety Warning',
|
|
193
|
+
html: 'NEVER practice the Wim Hof Method in water or while driving. It can cause dizziness or loss of consciousness. Always practice seated or lying down in a safe place.',
|
|
194
|
+
},
|
|
195
|
+
{ type: 'title', text: 'Benefits of Conscious Breathing for Health', level: 2 },
|
|
196
|
+
{
|
|
197
|
+
type: 'list',
|
|
198
|
+
items: [
|
|
199
|
+
'<strong>Cardiovascular Health:</strong> Reduces heart rate variability (HRV) and improves cardiac efficiency long-term.',
|
|
200
|
+
'<strong>Immunity and pH:</strong> Hyper-oxygenation balances blood pH and reduces chronic inflammation.',
|
|
201
|
+
'<strong>Emotional Control:</strong> Strengthens the connection between the prefrontal cortex and the limbic system.',
|
|
202
|
+
'<strong>Sports Recovery:</strong> Accelerates lymphatic drainage and elimination of metabolic waste.',
|
|
203
|
+
],
|
|
204
|
+
},
|
|
205
|
+
],
|
|
206
|
+
};
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowToThing } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { BreathingVisualizerUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'visualizador-respiracion';
|
|
6
|
+
const title = 'Visualizador de Respiración Consciente: Box Breathing y Método Wim Hof';
|
|
7
|
+
const description =
|
|
8
|
+
'Reduce el estrés y la ansiedad al instante con nuestro visualizador de respiración. Guía bio-feedback para Box Breathing, 4-7-8 y Método Wim Hof.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: '¿Qué es la respiración de caja (Box Breathing)?',
|
|
13
|
+
answer:
|
|
14
|
+
'Es una técnica de respiración rítmica utilizada por unidades de élite (Navy SEALs) para mantener la calma bajo presión. Consiste en cuatro pasos iguales: inhalar, retener, exhalar y retener, usualmente por 4 segundos cada uno.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: '¿Cómo ayuda la respiración a reducir la ansiedad?',
|
|
18
|
+
answer:
|
|
19
|
+
'Al respirar de forma lenta y controlada, estimulamos el nervio vago, lo que activa el sistema nervioso parasimpático. Esto reduce el ritmo cardíaco y la presión arterial, enviando una señal de seguridad al cerebro.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: '¿Qué es la técnica 4-7-8?',
|
|
23
|
+
answer:
|
|
24
|
+
'Es una técnica de relajación profunda que consiste en inhalar por 4 segundos, retener el aire por 7 y exhalar ruidosamente por 8. Es muy efectiva para ayudar a conciliar el sueño.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: '¿Es seguro practicar el método Wim Hof solo?',
|
|
28
|
+
answer:
|
|
29
|
+
'El método Wim Hof es seguro para personas sanas, pero nunca debe practicarse en el agua o mientras se conduce, ya que puede causar mareos o pérdida de conocimiento temporal. Siempre consulta con un médico si tienes problemas cardiovasculares.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Elegir técnica',
|
|
36
|
+
text: 'Selecciona entre Box Breathing, 4-7-8 o técnicas personalizadas según tu objetivo (calma, sueño o energía).',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Seguir el guía visual',
|
|
40
|
+
text: 'Observa el círculo en pantalla. Inhala cuando se expande y exhala cuando se contrae, siguiendo el ritmo exacto.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Enfocar la mente',
|
|
44
|
+
text: 'Intenta no pensar en nada más que en el flujo de aire entrando y saliendo de tus pulmones.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Comprobar sensaciones',
|
|
48
|
+
text: 'Tras 5-10 minutos, analiza tu nivel de estrés. Deberías notar una reducción clara de la tensión muscular y mental.',
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqData.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const howToSchema: WithContext<HowToThing> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'HowTo',
|
|
65
|
+
name: title,
|
|
66
|
+
description,
|
|
67
|
+
step: howToData.map((step, i) => ({
|
|
68
|
+
'@type': 'HowToStep',
|
|
69
|
+
position: i + 1,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'HealthApplication',
|
|
81
|
+
operatingSystem: 'Web',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export const content: ToolLocaleContent<BreathingVisualizerUI> = {
|
|
86
|
+
slug,
|
|
87
|
+
title,
|
|
88
|
+
description,
|
|
89
|
+
faqTitle: 'Preguntas frecuentes sobre técnicas de respiración',
|
|
90
|
+
faq: faqData,
|
|
91
|
+
bibliographyTitle: 'Ciencia de la Respiración y Evidencia Médica',
|
|
92
|
+
bibliography: [
|
|
93
|
+
{
|
|
94
|
+
name: 'Box Breathing: Benefits and How to Do It (Cleveland Clinic)',
|
|
95
|
+
url: 'https://health.clevelandclinic.org/box-breathing-benefits',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'The Effect of Diaphragmatic Breathing on Attention, Negative Affect and Cortisol (Frontiers in Psychology)',
|
|
99
|
+
url: 'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5455070/',
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
name: 'Voluntary activation of the sympathetic nervous system and attenuation of the innate immune response in humans (PNAS - Wim Hof Study)',
|
|
103
|
+
url: 'https://www.pnas.org/doi/10.1073/pnas.1322174111',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
name: 'Brief structured respiration practices enhance mood and reduce physiological arousal (Cell Reports Medicine)',
|
|
107
|
+
url: 'https://www.cell.com/cell-reports-medicine/fulltext/S2666-3791(22)00474-8',
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
name: 'Navy SEALs Box Breathing: How to control your stress response',
|
|
111
|
+
url: 'https://www.medicalnewstoday.com/articles/321805',
|
|
112
|
+
},
|
|
113
|
+
],
|
|
114
|
+
howTo: howToData,
|
|
115
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
116
|
+
ui: {
|
|
117
|
+
startLabel: 'INICIAR SESIÓN',
|
|
118
|
+
stopLabel: 'DETENER',
|
|
119
|
+
idlePhase: 'Selecciona una técnica para comenzar',
|
|
120
|
+
sessionEnded: 'Sesión terminada',
|
|
121
|
+
orbIdle: 'Paz',
|
|
122
|
+
roundPrefix: 'Ronda',
|
|
123
|
+
breathPrefix: 'Respiración',
|
|
124
|
+
btnBox: 'Box Breathing (4-4)',
|
|
125
|
+
btnRelax: '4-7-8 Relax',
|
|
126
|
+
btnWimhof: 'Wim Hof (30 ciclos)',
|
|
127
|
+
loopTitle: 'Repetir automáticamente',
|
|
128
|
+
vibTitle: 'Vibración',
|
|
129
|
+
phaseInhale: 'Inhalar',
|
|
130
|
+
phaseHold: 'Retener',
|
|
131
|
+
phaseExhale: 'Exhalar',
|
|
132
|
+
phaseEmpty: 'Vacío',
|
|
133
|
+
phaseRelease: 'Soltar',
|
|
134
|
+
phaseRecover: 'Recuperar',
|
|
135
|
+
labelBoxInhale: 'Llena tus pulmones',
|
|
136
|
+
labelBoxHold: 'Mantén el aire',
|
|
137
|
+
labelBoxExhale: 'Suelta suavemente',
|
|
138
|
+
labelBoxEmpty: 'Pausa y relaja',
|
|
139
|
+
labelRelaxInhale: 'Por la nariz',
|
|
140
|
+
labelRelaxHold: 'Contén el aliento',
|
|
141
|
+
labelRelaxExhale: 'Suelta por la boca',
|
|
142
|
+
labelWimInhale: 'Toma aire profundo',
|
|
143
|
+
labelWimRelease: 'Deja que salga',
|
|
144
|
+
labelWimHold: 'Retención sin aire',
|
|
145
|
+
labelWimRecover: 'Inhala y mantén',
|
|
146
|
+
},
|
|
147
|
+
seo: [
|
|
148
|
+
{
|
|
149
|
+
type: 'summary',
|
|
150
|
+
title: 'Visualizador de Respiración Consciente',
|
|
151
|
+
items: [
|
|
152
|
+
'<strong>Box Breathing (4-4-4-4)</strong>: técnica de Navy SEALs para calma alerta y control del estrés.',
|
|
153
|
+
'<strong>Técnica 4-7-8</strong>: sedante natural del Dr. Weil para el insomnio y la ansiedad.',
|
|
154
|
+
'<strong>Método Wim Hof</strong>: 30 ciclos de respiración para energía, inmunidad y resiliencia.',
|
|
155
|
+
'<strong>Orbe guía visual</strong>: se expande al inhalar y se contrae al exhalar para un bio-feedback perfecto.',
|
|
156
|
+
],
|
|
157
|
+
},
|
|
158
|
+
{ type: 'title', text: 'Respiración Cuadrada (Box Breathing): La Técnica de los Navy SEALs', level: 2 },
|
|
159
|
+
{
|
|
160
|
+
type: 'paragraph',
|
|
161
|
+
html: 'La <strong>respiración cuadrada</strong> es la técnica de elección para profesionales que operan bajo estrés extremo: cirujanos, fuerzas especiales de los Navy SEALs y atletas de alto rendimiento. Su objetivo es situarte en un estado de <strong>"calma alerta"</strong>. El Box Breathing interrumpe mecánicamente el ciclo de estrés, estimulando el nervio vago y forzando al cerebro a recuperar la homeostasis.',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: 'list',
|
|
165
|
+
items: [
|
|
166
|
+
'<strong>Inhalar (4s):</strong> Llena el abdomen, no el pecho. Introduce oxígeno fresco.',
|
|
167
|
+
'<strong>Retener (4s):</strong> Mantén el aire cómodamente. Permite el intercambio gaseoso.',
|
|
168
|
+
'<strong>Exhalar (4s):</strong> Suelta suavemente. Siente cómo la tensión sale de tus hombros.',
|
|
169
|
+
'<strong>Vacío (4s):</strong> Pausa vital. Resetea tu ritmo cardíaco antes del siguiente ciclo.',
|
|
170
|
+
],
|
|
171
|
+
},
|
|
172
|
+
{ type: 'title', text: 'La Técnica 4-7-8: El Sedante Natural', level: 2 },
|
|
173
|
+
{
|
|
174
|
+
type: 'paragraph',
|
|
175
|
+
html: 'Popularizada por el Dr. Andrew Weil, la técnica 4-7-8 es considerada un <strong>tranquilizante natural</strong> para el sistema nervioso. La exhalación que duplica el tiempo de inhalación es la clave biológica para reducir la presión arterial y calmar la mente casi instantáneamente. Es muy efectiva para conciliar el sueño.',
|
|
176
|
+
},
|
|
177
|
+
{ type: 'title', text: 'El Método Wim Hof: Ciencia y Resiliencia Inmune', level: 2 },
|
|
178
|
+
{
|
|
179
|
+
type: 'paragraph',
|
|
180
|
+
html: 'El <strong>Método Wim Hof (WHM)</strong> busca "hackear" el sistema inmunológico. A través de 30 respiraciones profundas seguidas de una retención prolongada, se induce una alcalosis temporal en la sangre. Estudios en la <strong>Universidad Radboud</strong> confirmaron que esta técnica permite influir voluntariamente en el sistema nervioso autónomo, reduciendo la respuesta inflamatoria.',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'list',
|
|
184
|
+
items: [
|
|
185
|
+
'<strong>30 Respiraciones:</strong> Inhalar fuerte por la boca, soltar relajado. Ciclos de 1.5 segundos.',
|
|
186
|
+
'<strong>Retención (60s+):</strong> Tras la última exhalación, aguantar sin aire en los pulmones.',
|
|
187
|
+
'<strong>Recuperación (15s):</strong> Inhalar profundamente una vez y mantener la presión en la cabeza.',
|
|
188
|
+
],
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
type: 'tip',
|
|
192
|
+
title: 'Advertencia de Seguridad',
|
|
193
|
+
html: 'NUNCA practiques el Método Wim Hof en el agua o mientras conduces. Puede causar mareos o pérdida de conocimiento. Practica siempre sentado o tumbado en un lugar seguro.',
|
|
194
|
+
},
|
|
195
|
+
{ type: 'title', text: 'Beneficios de la Respiración Consciente para la Salud', level: 2 },
|
|
196
|
+
{
|
|
197
|
+
type: 'list',
|
|
198
|
+
items: [
|
|
199
|
+
'<strong>Salud Cardiovascular:</strong> Reduce la variabilidad del ritmo cardíaco y mejora la eficiencia cardíaca a largo plazo.',
|
|
200
|
+
'<strong>Inmunidad y pH:</strong> La hiperoxigenación equilibra el pH de la sangre y reduce la inflamación crónica.',
|
|
201
|
+
'<strong>Control Emocional:</strong> Fortalece la conexión entre la corteza prefrontal y el sistema límbico.',
|
|
202
|
+
'<strong>Recuperación Deportiva:</strong> Acelera el drenaje linfático y la eliminación de residuos metabólicos.',
|
|
203
|
+
],
|
|
204
|
+
},
|
|
205
|
+
],
|
|
206
|
+
};
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowToThing } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { BreathingVisualizerUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'visualiseur-respiration';
|
|
6
|
+
const title = 'Visualiseur de Respiration Consciente: Box Breathing et Méthode Wim Hof';
|
|
7
|
+
const description =
|
|
8
|
+
'Réduisez le stress et l\'anxiété instantanément avec notre visualiseur de respiration. Guide bio-feedback pour Box Breathing, 4-7-8 et Méthode Wim Hof.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Qu\'est-ce que la respiration en boîte (Box Breathing)?',
|
|
13
|
+
answer:
|
|
14
|
+
'C\'est une technique de respiration rythmique utilisée par les unités d\'élite (Navy SEALs) pour maintenir le calme sous pression. Elle consiste en quatre étapes égales: inhaler, retenir, expirer et retenir, généralement pendant 4 secondes chacune.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'Comment la respiration aide-t-elle à réduire l\'anxiété?',
|
|
18
|
+
answer:
|
|
19
|
+
'En respirant lentement et de manière contrôlée, nous stimulons le nerf vague, ce qui active le système nerveux parasympathique. Cela réduit le rythme cardiaque et la pression artérielle, envoyant un signal de sécurité au cerveau.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'Qu\'est-ce que la technique 4-7-8?',
|
|
23
|
+
answer:
|
|
24
|
+
'C\'est une technique de relaxation profonde qui consiste à inhaler pendant 4 secondes, retenir l\'air pendant 7 et expirer bruyamment pendant 8. Elle est très efficace pour aider à s\'endormir.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Est-il sécuritaire de pratiquer la méthode Wim Hof seul?',
|
|
28
|
+
answer:
|
|
29
|
+
'La méthode Wim Hof est sûre pour les personnes en bonne santé, mais ne doit jamais être pratiquée dans l\'eau ou en conduisant, car elle peut provoquer des étourdissements ou une perte de conscience temporaire. Consultez toujours un médecin si vous avez des problèmes cardiovasculaires.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Choisir une technique',
|
|
36
|
+
text: 'Sélectionnez entre Box Breathing, 4-7-8 ou des techniques personnalisées selon votre objectif (calme, sommeil ou énergie).',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Suivre le guide visuel',
|
|
40
|
+
text: 'Observez le cercle à l\'écran. Inspirez quand il se dilate et expirez quand il se contracte, en suivant le rythme exact.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Concentrer l\'esprit',
|
|
44
|
+
text: 'Essayez de ne penser à rien d\'autre qu\'au flux d\'air entrant et sortant de vos poumons.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Vérifier les sensations',
|
|
48
|
+
text: 'Après 5-10 minutes, analysez votre niveau de stress. Vous devriez remarquer une réduction claire de la tension musculaire et mentale.',
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqData.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const howToSchema: WithContext<HowToThing> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'HowTo',
|
|
65
|
+
name: title,
|
|
66
|
+
description,
|
|
67
|
+
step: howToData.map((step, i) => ({
|
|
68
|
+
'@type': 'HowToStep',
|
|
69
|
+
position: i + 1,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'HealthApplication',
|
|
81
|
+
operatingSystem: 'Web',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export const content: ToolLocaleContent<BreathingVisualizerUI> = {
|
|
86
|
+
slug,
|
|
87
|
+
title,
|
|
88
|
+
description,
|
|
89
|
+
faqTitle: 'Questions fréquentes sur les techniques de respiration',
|
|
90
|
+
faq: faqData,
|
|
91
|
+
bibliographyTitle: 'Science de la Respiration et Preuves Médicales',
|
|
92
|
+
bibliography: [
|
|
93
|
+
{
|
|
94
|
+
name: 'Box Breathing: Benefits and How to Do It (Cleveland Clinic)',
|
|
95
|
+
url: 'https://health.clevelandclinic.org/box-breathing-benefits',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'The Effect of Diaphragmatic Breathing on Attention, Negative Affect and Cortisol (Frontiers in Psychology)',
|
|
99
|
+
url: 'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5455070/',
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
name: 'Voluntary activation of the sympathetic nervous system and attenuation of the innate immune response in humans (PNAS - Wim Hof Study)',
|
|
103
|
+
url: 'https://www.pnas.org/doi/10.1073/pnas.1322174111',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
name: 'Brief structured respiration practices enhance mood and reduce physiological arousal (Cell Reports Medicine)',
|
|
107
|
+
url: 'https://www.cell.com/cell-reports-medicine/fulltext/S2666-3791(22)00474-8',
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
name: 'Navy SEALs Box Breathing: How to control your stress response',
|
|
111
|
+
url: 'https://www.medicalnewstoday.com/articles/321805',
|
|
112
|
+
},
|
|
113
|
+
],
|
|
114
|
+
howTo: howToData,
|
|
115
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
116
|
+
ui: {
|
|
117
|
+
startLabel: 'DÉMARRER',
|
|
118
|
+
stopLabel: 'ARRÊTER',
|
|
119
|
+
idlePhase: 'Sélectionnez une technique pour commencer',
|
|
120
|
+
sessionEnded: 'Session terminée',
|
|
121
|
+
orbIdle: 'Paix',
|
|
122
|
+
roundPrefix: 'Tour',
|
|
123
|
+
breathPrefix: 'Souffle',
|
|
124
|
+
btnBox: 'Box Breathing (4-4)',
|
|
125
|
+
btnRelax: '4-7-8 Relax',
|
|
126
|
+
btnWimhof: 'Wim Hof (30 cycles)',
|
|
127
|
+
loopTitle: 'Répéter automatiquement',
|
|
128
|
+
vibTitle: 'Vibration',
|
|
129
|
+
phaseInhale: 'Inspirer',
|
|
130
|
+
phaseHold: 'Retenir',
|
|
131
|
+
phaseExhale: 'Expirer',
|
|
132
|
+
phaseEmpty: 'Vide',
|
|
133
|
+
phaseRelease: 'Relâcher',
|
|
134
|
+
phaseRecover: 'Récupérer',
|
|
135
|
+
labelBoxInhale: 'Remplissez vos poumons',
|
|
136
|
+
labelBoxHold: 'Gardez l\'air',
|
|
137
|
+
labelBoxExhale: 'Relâchez doucement',
|
|
138
|
+
labelBoxEmpty: 'Pause et détente',
|
|
139
|
+
labelRelaxInhale: 'Par le nez',
|
|
140
|
+
labelRelaxHold: 'Retenez votre souffle',
|
|
141
|
+
labelRelaxExhale: 'Relâchez par la bouche',
|
|
142
|
+
labelWimInhale: 'Respiration profonde',
|
|
143
|
+
labelWimRelease: 'Laissez sortir',
|
|
144
|
+
labelWimHold: 'Rétention sans air',
|
|
145
|
+
labelWimRecover: 'Inspirez et maintenez',
|
|
146
|
+
},
|
|
147
|
+
seo: [
|
|
148
|
+
{
|
|
149
|
+
type: 'summary',
|
|
150
|
+
title: 'Visualiseur de Respiration Consciente',
|
|
151
|
+
items: [
|
|
152
|
+
'<strong>Box Breathing (4-4-4-4)</strong>: technique des Navy SEALs pour le calme alerte et le contrôle du stress.',
|
|
153
|
+
'<strong>Technique 4-7-8</strong>: sédatif naturel du Dr. Weil pour l\'insomnie et l\'anxiété.',
|
|
154
|
+
'<strong>Méthode Wim Hof</strong>: 30 cycles de respiration pour l\'énergie, l\'immunité et la résilience.',
|
|
155
|
+
'<strong>Orbe guide visuel</strong>: se dilate à l\'inspiration et se contracte à l\'expiration.',
|
|
156
|
+
],
|
|
157
|
+
},
|
|
158
|
+
{ type: 'title', text: 'Box Breathing: La Technique des Navy SEALs', level: 2 },
|
|
159
|
+
{
|
|
160
|
+
type: 'paragraph',
|
|
161
|
+
html: 'La <strong>respiration en boîte</strong> est la technique de prédilection des professionnels opérant sous stress extrême: chirurgiens, forces spéciales des Navy SEALs et athlètes de haut niveau. Son objectif est de vous placer dans un état de <strong>"calme alerte"</strong>. Le Box Breathing interrompt mécaniquement le cycle de stress en stimulant le nerf vague.',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: 'list',
|
|
165
|
+
items: [
|
|
166
|
+
'<strong>Inspirer (4s):</strong> Remplissez l\'abdomen, pas la poitrine. Introduisez de l\'oxygène frais.',
|
|
167
|
+
'<strong>Retenir (4s):</strong> Maintenez l\'air confortablement. Permettez l\'échange gazeux complet.',
|
|
168
|
+
'<strong>Expirer (4s):</strong> Relâchez doucement. Sentez la tension quitter vos épaules.',
|
|
169
|
+
'<strong>Vide (4s):</strong> Pause vitale. Réinitialisez votre rythme cardiaque.',
|
|
170
|
+
],
|
|
171
|
+
},
|
|
172
|
+
{ type: 'title', text: 'La Technique 4-7-8: Le Sédatif Naturel', level: 2 },
|
|
173
|
+
{
|
|
174
|
+
type: 'paragraph',
|
|
175
|
+
html: 'Popularisée par le Dr. Andrew Weil, la technique 4-7-8 est considérée comme un <strong>tranquillisant naturel</strong> pour le système nerveux. L\'expiration qui double le temps d\'inspiration est la clé biologique pour réduire la pression artérielle et calmer l\'esprit presque instantanément.',
|
|
176
|
+
},
|
|
177
|
+
{ type: 'title', text: 'La Méthode Wim Hof: Science et Résilience Immunitaire', level: 2 },
|
|
178
|
+
{
|
|
179
|
+
type: 'paragraph',
|
|
180
|
+
html: 'La <strong>Méthode Wim Hof (WHM)</strong> vise à "pirater" le système immunitaire. À travers 30 respirations profondes suivies d\'une rétention prolongée, une alcalose temporaire est induite dans le sang. Des études à l\'<strong>Université Radboud</strong> ont confirmé que cette technique permet d\'influencer volontairement le système nerveux autonome.',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'list',
|
|
184
|
+
items: [
|
|
185
|
+
'<strong>30 Respirations:</strong> Inspirer fort par la bouche, relâcher détendu. Cycles de 1,5 seconde.',
|
|
186
|
+
'<strong>Rétention (60s+):</strong> Après la dernière expiration, retenir sans air dans les poumons.',
|
|
187
|
+
'<strong>Récupération (15s):</strong> Inspirer profondément une fois et maintenir la pression dans la tête.',
|
|
188
|
+
],
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
type: 'tip',
|
|
192
|
+
title: 'Avertissement de Sécurité',
|
|
193
|
+
html: 'NE JAMAIS pratiquer la Méthode Wim Hof dans l\'eau ou en conduisant. Elle peut provoquer des étourdissements ou une perte de conscience. Pratiquez toujours assis ou allongé dans un endroit sûr.',
|
|
194
|
+
},
|
|
195
|
+
{ type: 'title', text: 'Bienfaits de la Respiration Consciente pour la Santé', level: 2 },
|
|
196
|
+
{
|
|
197
|
+
type: 'list',
|
|
198
|
+
items: [
|
|
199
|
+
'<strong>Santé Cardiovasculaire:</strong> Réduit la variabilité du rythme cardiaque et améliore l\'efficacité cardiaque.',
|
|
200
|
+
'<strong>Immunité et pH:</strong> L\'hyper-oxygénation équilibre le pH sanguin et réduit l\'inflammation chronique.',
|
|
201
|
+
'<strong>Contrôle Émotionnel:</strong> Renforce la connexion entre le cortex préfrontal et le système limbique.',
|
|
202
|
+
'<strong>Récupération Sportive:</strong> Accélère le drainage lymphatique et l\'élimination des déchets métaboliques.',
|
|
203
|
+
],
|
|
204
|
+
},
|
|
205
|
+
],
|
|
206
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { HealthToolEntry, ToolDefinition } from '../../types';
|
|
2
|
+
import BreathingVisualizerComponent from './component.astro';
|
|
3
|
+
import BreathingVisualizerSEO from './seo.astro';
|
|
4
|
+
import BreathingVisualizerBibliography from './bibliography.astro';
|
|
5
|
+
import type { BreathingVisualizerUI } from './ui';
|
|
6
|
+
|
|
7
|
+
export const breathingVisualizer: HealthToolEntry<BreathingVisualizerUI> = {
|
|
8
|
+
id: 'breathingVisualizer',
|
|
9
|
+
icons: {
|
|
10
|
+
bg: 'mdi:lungs',
|
|
11
|
+
fg: 'mdi:timer-outline',
|
|
12
|
+
},
|
|
13
|
+
i18n: {
|
|
14
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
15
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
16
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export { BreathingVisualizerComponent, BreathingVisualizerSEO, BreathingVisualizerBibliography };
|
|
21
|
+
|
|
22
|
+
export const BREATHING_VISUALIZER_TOOL: ToolDefinition = {
|
|
23
|
+
entry: breathingVisualizer,
|
|
24
|
+
Component: BreathingVisualizerComponent,
|
|
25
|
+
SEOComponent: BreathingVisualizerSEO,
|
|
26
|
+
BibliographyComponent: BreathingVisualizerBibliography,
|
|
27
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { SEORenderer } from '@jjlmoya/utils-shared';
|
|
3
|
+
import { breathingVisualizer } from './index';
|
|
4
|
+
import type { KnownLocale } from '../../types';
|
|
5
|
+
|
|
6
|
+
interface Props {
|
|
7
|
+
locale?: KnownLocale;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const { locale = 'es' } = Astro.props;
|
|
11
|
+
const content = await breathingVisualizer.i18n[locale]?.();
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
{content && <SEORenderer content={{ locale, sections: content.seo }} />}
|