From f5b27a3968d0969446b3be6f0a73b5f813c9affa Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Wed, 21 Feb 2018 20:03:31 +0000 Subject: [PATCH] add descriptions --- src/components/Main.vue | 42 ++++++++++++++++++++++++++++++++--------- 1 file changed, 33 insertions(+), 9 deletions(-) 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' } } }