diff --git a/src/components/Main.vue b/src/components/Main.vue index 9bab8ce..ab00361 100644 --- a/src/components/Main.vue +++ b/src/components/Main.vue @@ -14,12 +14,16 @@ +
+

{{ preset.charAt(0).toUpperCase() + preset.slice(1) }} Waves

+

{{ presets[preset].description }}

+
@@ -39,13 +43,33 @@ export default { presets: { alpha: { waveform: 'sine', - right: 150, - left: 155 + left: 130, + right: 115, + description: 'mediating, daydreaming; routine tasks' }, beta: { waveform: 'sine', - right: 130, - left: 139 + left: 100, + right: 115, + description: 'awake, alert, active, engaged' + }, + gamma: { + waveform: 'sine', + left: 160, + right: 210, + description: 'ability to process large amounts of information fastly' + }, + delta: { + waveform: 'sine', + left: 120, + right: 124, + description: 'relaxation, healing, spiritual' + }, + theta: { + waveform: 'sine', + left: 150, + right: 155, + description: 'trance, daydreaming' } } }