@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,224 @@
|
|
|
1
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowToThing } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { PeripheralVisionTrainerUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'peripheral-vision-trainer';
|
|
6
|
+
const title = 'Peripheral Vision Trainer';
|
|
7
|
+
const description =
|
|
8
|
+
'Train your peripheral visual field with this agility game. Improve reading speed, situational awareness, and ocular reaction time.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'What exactly is peripheral vision?',
|
|
13
|
+
answer:
|
|
14
|
+
'It is the part of our vision that occurs outside the central focus point. Although not sharp, it is very sensitive to movement and contrast, allowing us to detect objects without looking at them directly.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'How does this test help read faster?',
|
|
18
|
+
answer:
|
|
19
|
+
'Speed reading depends on how many words you can capture in one glance. By training your periphery, you increase the width of your "fixations", allowing you to read entire lines with fewer eye movements.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'Is it normal to fail a lot at first?',
|
|
23
|
+
answer:
|
|
24
|
+
'Yes. Our brain is used to ignoring peripheral information to concentrate. With practice, the neural networks of the magnocellular system become more efficient and faster.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'What are the risks of this exercise?',
|
|
28
|
+
answer:
|
|
29
|
+
'The exercise uses rapid flashes. If you have a history of photosensitive epilepsy or migraines with aura, you should avoid it or consult a specialist before using it.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Focus on the Central Point',
|
|
36
|
+
text: 'Keep your eyes fixed on the orange point in the center throughout the training. Do not give in to the temptation to look sideways.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Detect the Arrow',
|
|
40
|
+
text: 'Arrows will appear at the edges of the screen randomly. Try to identify their direction using only your lateral vision.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Press the Correct Key',
|
|
44
|
+
text: 'Press the corresponding arrow key on your keyboard as quickly as possible. Speed and level will increase as you score.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Analyze Your Rank',
|
|
48
|
+
text: 'After the 60 seconds are up, you will see your score and a rank based on your visual agility and detection field.',
|
|
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<PeripheralVisionTrainerUI> = {
|
|
86
|
+
slug,
|
|
87
|
+
title,
|
|
88
|
+
description,
|
|
89
|
+
faqTitle: 'Frequently asked questions about peripheral vision',
|
|
90
|
+
faq: faqData,
|
|
91
|
+
bibliographyTitle: 'Scientific references',
|
|
92
|
+
bibliography: [
|
|
93
|
+
{
|
|
94
|
+
name: 'Perceptual learning in the absence of awareness (Seitz & Watanabe, 2003)',
|
|
95
|
+
url: 'https://pubmed.ncbi.nlm.nih.gov/19285458/',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'Eye movements, the perceptual span, and reading speed',
|
|
99
|
+
url: 'https://www.researchgate.net/publication/49694262_Eye_movements_the_perceptual_span_and_reading_speed',
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
howTo: howToData,
|
|
103
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
104
|
+
ui: {
|
|
105
|
+
introTitle: 'Peripheral Vision',
|
|
106
|
+
introDesc:
|
|
107
|
+
'Train your ability to process information outside your direct focus. Ideal for speed reading and mental agility.',
|
|
108
|
+
benefit1Title: 'Speed',
|
|
109
|
+
benefit1Desc: 'Reduces reaction time to unexpected stimuli.',
|
|
110
|
+
benefit2Title: 'Speed Reading',
|
|
111
|
+
benefit2Desc: 'Expand your visual field to capture entire phrases.',
|
|
112
|
+
benefit3Title: 'Focus',
|
|
113
|
+
benefit3Desc: 'Improve concentration while keeping the center fixed.',
|
|
114
|
+
btnStart: 'Start Training',
|
|
115
|
+
hudPoints: 'Points',
|
|
116
|
+
hudLevel: 'Level',
|
|
117
|
+
hudTime: 'Time',
|
|
118
|
+
methodNote:
|
|
119
|
+
'METHOD: Keep your gaze fixed on the central orange point. React to the arrows using the keyboard without diverting your eyes from the center.',
|
|
120
|
+
mobileTitle: 'Screen Too Small',
|
|
121
|
+
mobileDesc:
|
|
122
|
+
'The Peripheral Vision Trainer requires a physical keyboard and a large screen area to accurately measure your real visual field.',
|
|
123
|
+
mobileTip: 'Please access from a computer with a physical keyboard to make the most of this exercise.',
|
|
124
|
+
resultTotal: 'Total',
|
|
125
|
+
rank3Title: 'FRACTAL VISION',
|
|
126
|
+
rank3Text: 'Your hemispheric integration is total. You possess elite situational awareness.',
|
|
127
|
+
rank2Title: 'HAWK',
|
|
128
|
+
rank2Text: 'Excellent performance. Your visual field is significantly above average.',
|
|
129
|
+
rank1Title: 'EXPLORER',
|
|
130
|
+
rank1Text: 'Good start. Train daily to expand your lateral perception.',
|
|
131
|
+
btnRestart: 'Restart Protocol',
|
|
132
|
+
},
|
|
133
|
+
seo: [
|
|
134
|
+
{
|
|
135
|
+
type: 'summary',
|
|
136
|
+
title: 'Peripheral Trainer',
|
|
137
|
+
items: [
|
|
138
|
+
'<strong>60 seconds</strong> of training per session: simple, effective and measurable.',
|
|
139
|
+
'<strong>Progressive difficulty</strong>: appearance speed increases with your score.',
|
|
140
|
+
'<strong>3 ranks</strong>: Explorer, Hawk and Fractal Vision based on your performance.',
|
|
141
|
+
'<strong>Desktop only</strong>: requires a physical keyboard to capture arrow key responses.',
|
|
142
|
+
],
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
type: 'title',
|
|
146
|
+
text: 'Peripheral Vision Training: How to Expand Your Visual Field and Read Faster',
|
|
147
|
+
level: 2,
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
type: 'paragraph',
|
|
151
|
+
html: '<strong>Peripheral vision</strong> is the ability to detect objects and movements outside the direct focus point (foveal vision). While the fovea allows us to see sharp details and colors, the periphery is optimized for detecting movement and changes in low-light conditions. Training this skill not only improves safety but is the secret behind professional speed reading.',
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: 'paragraph',
|
|
155
|
+
html: 'Most people read word by word, making multiple "fixations" per line. By expanding your visual field, you can process entire blocks of text or even complete lines in a single glance, drastically reducing reading time and eye fatigue.',
|
|
156
|
+
},
|
|
157
|
+
{ type: 'title', text: 'Why Train Your Eye Periphery?', level: 2 },
|
|
158
|
+
{
|
|
159
|
+
type: 'paragraph',
|
|
160
|
+
html: 'The human brain is capable of processing much more information than we usually allow it. Consistent training offers benefits in multiple areas of daily life:',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
type: 'list',
|
|
164
|
+
items: [
|
|
165
|
+
'<strong>Speed Reading:</strong> By seeing more words to the sides of your focus point, you reduce the number of stops your eyes must make.',
|
|
166
|
+
'<strong>Safe Driving:</strong> Detecting a merging car or a pedestrian stepping off the curb milliseconds earlier can prevent serious accidents.',
|
|
167
|
+
'<strong>Athletic Performance:</strong> In sports like soccer or basketball, seeing your teammates positions without taking your eyes off the ball is a critical competitive advantage.',
|
|
168
|
+
'<strong>Situational Awareness:</strong> Improves your ability to navigate crowded environments and detect potential hazards in your surroundings.',
|
|
169
|
+
],
|
|
170
|
+
icon: 'mdi:eye-outline',
|
|
171
|
+
},
|
|
172
|
+
{ type: 'title', text: 'Scientific Techniques to Improve Peripheral Vision', level: 2 },
|
|
173
|
+
{
|
|
174
|
+
type: 'table',
|
|
175
|
+
headers: ['Technique', 'Goal', 'Recommended Frequency'],
|
|
176
|
+
rows: [
|
|
177
|
+
['<strong>Schulte Tables</strong>', 'Train rapid visual search in a static field.', '5 minutes per day.'],
|
|
178
|
+
['<strong>Flash Tracking</strong>', 'Improve peripheral reaction time to dynamic stimuli.', '10 minutes, 3 times per week.'],
|
|
179
|
+
['<strong>Active Central Fixation</strong>', 'Maintain focus on a point while describing lateral objects.', 'During walks or free time.'],
|
|
180
|
+
['<strong>Block Reading</strong>', 'Group 3-4 words per fixation instead of one.', 'Whenever you read for pleasure.'],
|
|
181
|
+
],
|
|
182
|
+
},
|
|
183
|
+
{ type: 'title', text: 'The Anatomy of Your Gaze: Parvocellular and Magnocellular Pathways', level: 2 },
|
|
184
|
+
{
|
|
185
|
+
type: 'paragraph',
|
|
186
|
+
html: 'Your visual system is divided into two major neural "highways": the <strong>Parvocellular System</strong> (the "what") specialized in fine detail, color and static shapes, concentrated in the fovea; and the <strong>Magnocellular System</strong> (the "where") designed to detect movement, depth and rapid contrast changes, which dominates peripheral vision and is extremely fast.',
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
type: 'paragraph',
|
|
190
|
+
html: 'The problem with the modern screen-dominated lifestyle is that it overstimulates the Parvocellular system (central focus) and atrophies the Magnocellular. This imbalance causes "tunnel vision", increases eye fatigue and raises cortisol levels.',
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
type: 'card',
|
|
194
|
+
icon: 'mdi:brain',
|
|
195
|
+
title: 'The Digital Stress Tunnel Vision Phenomenon',
|
|
196
|
+
html: '<p>When we are under stress or high concentration in front of a monitor, the brain enters an alert state that prioritizes central focus. This phenomenon inhibits our brain\'s ability to process lateral stimuli. Peripheral training acts as a biological switch: by forcing the brain to process peripheral information while maintaining central focus, we activate the parasympathetic nervous system, reducing stress and promoting a state of calm alertness.</p>',
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
type: 'tip',
|
|
200
|
+
title: 'Critical Training Instructions',
|
|
201
|
+
html: '<strong>GOLDEN RULE:</strong> Do not try to follow the flashes with your eyes. Your goal is <strong>NOT</strong> to look at the arrow directly. You must <strong>KNOW</strong> which direction the arrow indicates using exclusively your lateral vision. If you notice your eyes jumping toward the edge of the screen, the exercise loses its neurological effectiveness.',
|
|
202
|
+
},
|
|
203
|
+
{ type: 'title', text: 'Clinical and Cognitive Benefits of Visual Expansion', level: 2 },
|
|
204
|
+
{
|
|
205
|
+
type: 'list',
|
|
206
|
+
items: [
|
|
207
|
+
'<strong>Drastic Reduction of Eye Fatigue:</strong> By learning to use the full visual field, you reduce the workload of the ciliary muscles that force constant central focus.',
|
|
208
|
+
'<strong>Improved Working Memory:</strong> Processing multiple simultaneous stimuli forces the brain to better manage attention resources, resulting in greater short-term data retention capacity.',
|
|
209
|
+
'<strong>Driving Safety:</strong> An expanded visual field allows you to detect vehicles, cyclists or pedestrians approaching from the flanks long before they enter your direct line of vision.',
|
|
210
|
+
'<strong>Anxiety Management:</strong> There is a physiological correlation between peripheral vision and relaxation. By "opening" the gaze, you signal to your amygdala that there are no immediate threats, lowering heart rate.',
|
|
211
|
+
],
|
|
212
|
+
},
|
|
213
|
+
{ type: 'title', text: 'Speed Reading: The Expanded Fixation Technique', level: 2 },
|
|
214
|
+
{
|
|
215
|
+
type: 'paragraph',
|
|
216
|
+
html: 'In conventional reading, the eye makes small jumps called saccades. Most people make one fixation per word. By training your periphery, you can go from reading word by word to reading groups of three or four words per fixation. Your reading speed can double or triple simply by reducing the number of stops your eyes make per line.',
|
|
217
|
+
},
|
|
218
|
+
{ type: 'title', text: 'Conclusion: Recovering Natural Vision', level: 2 },
|
|
219
|
+
{
|
|
220
|
+
type: 'paragraph',
|
|
221
|
+
html: 'Our ancestors depended on their peripheral vision to survive in natural environments. Today, we recover that skill not to hunt, but to navigate the digital information jungle with greater fluency and less stress. This trainer is your first step toward leaving tunnel vision behind and rediscovering the breadth of your visual field.',
|
|
222
|
+
},
|
|
223
|
+
],
|
|
224
|
+
};
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowToThing } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { PeripheralVisionTrainerUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'entrenador-vision-periferica';
|
|
6
|
+
const title = 'Entrenador de Visión Periférica';
|
|
7
|
+
const description =
|
|
8
|
+
'Entrena tu campo visual periférico con este juego de agilidad. Mejora la velocidad de lectura, la atención situacional y el tiempo de reacción ocular.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: '¿Qué es exactamente la visión periférica?',
|
|
13
|
+
answer:
|
|
14
|
+
'Es la parte de nuestra visión que ocurre fuera del punto central de enfoque. Aunque no es nítida, es muy sensible al movimiento y al contraste, permitiéndonos detectar objetos sin mirarlos directamente.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: '¿Cómo ayuda este test a leer más rápido?',
|
|
18
|
+
answer:
|
|
19
|
+
'La lectura rápida depende de cuántas palabras puedes captar de un solo vistazo. Al entrenar tu periferia, aumentas el ancho de tus "fijaciones", permitiéndote leer líneas enteras con menos movimientos oculares.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: '¿Es normal fallar mucho al principio?',
|
|
23
|
+
answer:
|
|
24
|
+
'Sí. Nuestro cerebro está habituado a ignorar la información periférica para concentrarse. Con la práctica, las redes neuronales del sistema magnocelular se vuelven más eficientes y rápidas.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: '¿Cuáles son los riesgos de este ejercicio?',
|
|
28
|
+
answer:
|
|
29
|
+
'El ejercicio utiliza destellos rápidos. Si tienes antecedentes de epilepsia fotosensible o migrañas con aura, debes evitarlo o consultar con un especialista antes de usarlo.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Enfoca el Punto Central',
|
|
36
|
+
text: 'Mantén tus ojos fijos en el punto naranja del centro durante todo el entrenamiento. No cedas a la tentación de mirar hacia los lados.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Detecta la Flecha',
|
|
40
|
+
text: 'Aparecerán flechas en los bordes de la pantalla de forma aleatoria. Intenta identificar su dirección usando solo tu visión lateral.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Pulsa la Tecla Correcta',
|
|
44
|
+
text: 'Presiona la flecha correspondiente en tu teclado lo más rápido posible. La velocidad y el nivel aumentarán conforme aciertes.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Analiza tu Rango',
|
|
48
|
+
text: 'Al finalizar los 60 segundos, verás tu puntuación y un rango basado en tu agilidad visual y campo de detección.',
|
|
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<PeripheralVisionTrainerUI> = {
|
|
86
|
+
slug,
|
|
87
|
+
title,
|
|
88
|
+
description,
|
|
89
|
+
faqTitle: 'Preguntas frecuentes sobre visión periférica',
|
|
90
|
+
faq: faqData,
|
|
91
|
+
bibliographyTitle: 'Referencias científicas',
|
|
92
|
+
bibliography: [
|
|
93
|
+
{
|
|
94
|
+
name: 'Perceptual learning in the absence of awareness (Seitz & Watanabe, 2003)',
|
|
95
|
+
url: 'https://pubmed.ncbi.nlm.nih.gov/19285458/',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'Eye movements, the perceptual span, and reading speed',
|
|
99
|
+
url: 'https://www.researchgate.net/publication/49694262_Eye_movements_the_perceptual_span_and_reading_speed',
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
howTo: howToData,
|
|
103
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
104
|
+
ui: {
|
|
105
|
+
introTitle: 'Visión Periférica',
|
|
106
|
+
introDesc:
|
|
107
|
+
'Entrena tu capacidad para procesar información fuera de tu foco directo. Ideal para lectura rápida y agilidad mental.',
|
|
108
|
+
benefit1Title: 'Velocidad',
|
|
109
|
+
benefit1Desc: 'Reduce el tiempo de reacción ante estímulos inesperados.',
|
|
110
|
+
benefit2Title: 'Lectura Rápida',
|
|
111
|
+
benefit2Desc: 'Amplía tu campo visual para captar frases enteras.',
|
|
112
|
+
benefit3Title: 'Foco',
|
|
113
|
+
benefit3Desc: 'Mejora la concentración manteniendo el centro fijo.',
|
|
114
|
+
btnStart: 'Comenzar Entrenamiento',
|
|
115
|
+
hudPoints: 'Puntos',
|
|
116
|
+
hudLevel: 'Nivel',
|
|
117
|
+
hudTime: 'Tiempo',
|
|
118
|
+
methodNote:
|
|
119
|
+
'MÉTODO: Mantén la mirada fija en el punto naranja central. Reacciona a las flechas usando el teclado sin desviar tus ojos del centro.',
|
|
120
|
+
mobileTitle: 'Pantalla Demasiado Pequeña',
|
|
121
|
+
mobileDesc:
|
|
122
|
+
'El Entrenador de Visión Periférica requiere un teclado físico y un área de pantalla extensa para medir tu campo visual real con precisión.',
|
|
123
|
+
mobileTip: 'Por favor, accede desde un ordenador con teclado físico para aprovechar al máximo este ejercicio.',
|
|
124
|
+
resultTotal: 'Total',
|
|
125
|
+
rank3Title: 'VISIÓN FRACTAL',
|
|
126
|
+
rank3Text: 'Tu integración hemisférica es total. Posees una alerta situacional de élite.',
|
|
127
|
+
rank2Title: 'HALCÓN',
|
|
128
|
+
rank2Text: 'Excelente desempeño. Tu campo visual es significativamente superior a la media.',
|
|
129
|
+
rank1Title: 'EXPLORADOR',
|
|
130
|
+
rank1Text: 'Buen inicio. Entrena a diario para expandir tu percepción lateral.',
|
|
131
|
+
btnRestart: 'Reiniciar Protocolo',
|
|
132
|
+
},
|
|
133
|
+
seo: [
|
|
134
|
+
{
|
|
135
|
+
type: 'summary',
|
|
136
|
+
title: 'Entrenador Periférico',
|
|
137
|
+
items: [
|
|
138
|
+
'<strong>60 segundos</strong> de entrenamiento por sesión: simple, eficaz y medible.',
|
|
139
|
+
'<strong>Dificultad progresiva</strong>: la velocidad de aparición aumenta con tu puntuación.',
|
|
140
|
+
'<strong>3 rangos</strong>: Explorador, Halcón y Visión Fractal según tu rendimiento.',
|
|
141
|
+
'<strong>Solo desktop</strong>: requiere teclado físico para capturar la respuesta de teclas de flecha.',
|
|
142
|
+
],
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
type: 'title',
|
|
146
|
+
text: 'Entrenamiento de Visión Periférica: Cómo ampliar tu campo visual y leer más rápido',
|
|
147
|
+
level: 2,
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
type: 'paragraph',
|
|
151
|
+
html: 'La <strong>visión periférica</strong> es la capacidad de detectar objetos y movimientos fuera del punto de enfoque directo (visión fóvea). Mientras que la fóvea nos permite ver detalles nítidos y colores, la periferia está optimizada para detectar movimiento y cambios en condiciones de baja luz. Entrenar esta habilidad no solo mejora la seguridad, sino que es el secreto detrás de la lectura rápida profesional.',
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: 'paragraph',
|
|
155
|
+
html: 'La mayoría de las personas leen palabra por palabra, realizando múltiples "fijaciones" por línea. Al expandir tu campo visual, puedes procesar bloques enteros de texto o incluso líneas completas de un solo vistazo, reduciendo drásticamente el tiempo de lectura y la fatiga ocular.',
|
|
156
|
+
},
|
|
157
|
+
{ type: 'title', text: '¿Por qué entrenar la periferia del ojo?', level: 2 },
|
|
158
|
+
{
|
|
159
|
+
type: 'paragraph',
|
|
160
|
+
html: 'El cerebro humano es capaz de procesar mucha más información de la que habitualmente le permitimos. El entrenamiento constante ofrece beneficios en múltiples áreas de la vida cotidiana:',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
type: 'list',
|
|
164
|
+
items: [
|
|
165
|
+
'<strong>Lectura Rápida:</strong> Al ver más palabras a los lados de tu punto de enfoque, reduces el número de paradas que tus ojos deben hacer.',
|
|
166
|
+
'<strong>Conducción Segura:</strong> Detectar un coche que se incorpora o un peatón que baja de la acera milisegundos antes puede evitar accidentes graves.',
|
|
167
|
+
'<strong>Rendimiento Deportivo:</strong> En deportes como el fútbol o el baloncesto, ver la posición de tus compañeros sin dejar de mirar al balón es una ventaja competitiva crítica.',
|
|
168
|
+
'<strong>Alerta Situacional:</strong> Mejora tu capacidad para navegar en entornos concurridos y detectar peligros potenciales en tu entorno.',
|
|
169
|
+
],
|
|
170
|
+
icon: 'mdi:eye-outline',
|
|
171
|
+
},
|
|
172
|
+
{ type: 'title', text: 'Técnicas científicas para mejorar la visión periférica', level: 2 },
|
|
173
|
+
{
|
|
174
|
+
type: 'table',
|
|
175
|
+
headers: ['Técnica', 'Objetivo', 'Frecuencia Recomendada'],
|
|
176
|
+
rows: [
|
|
177
|
+
['<strong>Tablas de Schulte</strong>', 'Entrenar la búsqueda visual rápida en un campo estático.', '5 minutos al día.'],
|
|
178
|
+
['<strong>Seguimiento de Destellos</strong>', 'Mejorar el tiempo de reacción periférica ante estímulos dinámicos.', '10 minutos, 3 veces por semana.'],
|
|
179
|
+
['<strong>Fijación Central Activa</strong>', 'Mantener el enfoque en un punto mientras se describen objetos laterales.', 'Durante caminatas o tiempo libre.'],
|
|
180
|
+
['<strong>Lectura en Bloque</strong>', 'Agrupar 3-4 palabras por fijación en lugar de una.', 'Siempre que leas por placer.'],
|
|
181
|
+
],
|
|
182
|
+
},
|
|
183
|
+
{ type: 'title', text: 'La anatomía de tu mirada: Rutas Parvocelular y Magnocelular', level: 2 },
|
|
184
|
+
{
|
|
185
|
+
type: 'paragraph',
|
|
186
|
+
html: 'Para entender por qué el entrenamiento de la visión lateral es tan efectivo, debemos observar cómo el cerebro procesa la luz. Tu sistema visual se divide en dos grandes "autopistas" neuronales: el <strong>Sistema Parvocelular</strong> (el "qué") especializado en detalle fino, color y formas estáticas, concentrado en la fóvea; y el <strong>Sistema Magnocelular</strong> (el "dónde") diseñado para detectar movimiento, profundidad y cambios rápidos de contraste, que domina la visión periférica y es extremadamente rápido.',
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
type: 'paragraph',
|
|
190
|
+
html: 'El problema del estilo de vida moderno, dominado por las pantallas, es que hiperestimula el sistema Parvocelular (enfoque central) y atrofia el Magnocelular. Este desequilibrio provoca una visión de "túnel", aumenta la fatiga ocular y eleva los niveles de cortisol.',
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
type: 'card',
|
|
194
|
+
icon: 'mdi:brain',
|
|
195
|
+
title: 'El Fenómeno de la Visión de Túnel por Estrés Digital',
|
|
196
|
+
html: '<p>Cuando estamos bajo estrés o alta concentración frente a un monitor, el cerebro entra en un estado de alerta que prioriza el foco central. Este fenómeno inhibe la capacidad de nuestro cerebro para procesar estímulos laterales. El entrenamiento de la periferia actúa como un interruptor biológico: al obligar al cerebro a procesar información periférica mientras mantenemos el foco central, activamos el sistema nervioso parasimpático, reduciendo el estrés y promoviendo un estado de calma atenta.</p>',
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
type: 'tip',
|
|
200
|
+
title: 'Instrucciones Críticas para el Entrenamiento',
|
|
201
|
+
html: '<strong>REGLA DE ORO:</strong> No intentes seguir los destellos con los ojos. Tu objetivo <strong>NO</strong> es mirar la flecha directamente. Debes <strong>SABER</strong> qué dirección indica la flecha usando exclusivamente tu visión lateral. Si notas que tus ojos saltan hacia el borde de la pantalla, el ejercicio pierde su efectividad neurológica.',
|
|
202
|
+
},
|
|
203
|
+
{ type: 'title', text: 'Beneficios Clínicos y Cognitivos de la Expansión Visual', level: 2 },
|
|
204
|
+
{
|
|
205
|
+
type: 'list',
|
|
206
|
+
items: [
|
|
207
|
+
'<strong>Reducción Drástica de la Fatiga Ocular:</strong> Al aprender a usar todo el campo visual, disminuyes la carga de trabajo de los músculos ciliares que fuerzan el enfoque central constante.',
|
|
208
|
+
'<strong>Mejora de la Memoria de Trabajo:</strong> Procesar múltiples estímulos simultáneos obliga al cerebro a gestionar mejor los recursos de atención, lo que se traduce en una mayor capacidad de retención de datos a corto plazo.',
|
|
209
|
+
'<strong>Seguridad en la Conducción:</strong> Un campo visual expandido te permite detectar vehículos, ciclistas o peatones que se aproximan por los flancos mucho antes de que entren en tu línea de visión directa.',
|
|
210
|
+
'<strong>Gestión de la Ansiedad:</strong> Existe una correlación fisiológica entre la visión periférica y la relajación. Al "abrir" la mirada, le indicas a tu amígdala que no hay amenazas inmediatas, bajando el ritmo cardíaco.',
|
|
211
|
+
],
|
|
212
|
+
},
|
|
213
|
+
{ type: 'title', text: 'Lectura Rápida: La técnica de la Fijación Ampliada', level: 2 },
|
|
214
|
+
{
|
|
215
|
+
type: 'paragraph',
|
|
216
|
+
html: 'En la lectura convencional, el ojo realiza pequeños saltos llamados sacádicos. La mayoría de la gente hace una fijación por cada palabra. Al entrenar tu periferia, puedes pasar de leer palabra por palabra a leer grupos de tres o cuatro palabras por fijación. Tu velocidad de lectura puede duplicarse o triplicarse simplemente reduciendo el número de paradas que tus ojos hacen por línea.',
|
|
217
|
+
},
|
|
218
|
+
{ type: 'title', text: 'Conclusión: Recuperando la Visión Natural', level: 2 },
|
|
219
|
+
{
|
|
220
|
+
type: 'paragraph',
|
|
221
|
+
html: 'Nuestros antepasados dependían de su visión periférica para sobrevivir en entornos naturales. Hoy, recuperamos esa habilidad no para cazar, sino para navegar por la jungla de información digital con mayor fluidez y menos estrés. Este entrenador es tu primer paso para dejar atrás la visión de túnel y redescubrir la amplitud de tu campo visual.',
|
|
222
|
+
},
|
|
223
|
+
],
|
|
224
|
+
};
|