diff --git a/src/lib/components/Navigation.svelte b/src/lib/components/Navigation.svelte index 97c57237..3271c142 100644 --- a/src/lib/components/Navigation.svelte +++ b/src/lib/components/Navigation.svelte @@ -2,18 +2,29 @@ import {serialPort, syncing} from "$lib/serial/connection" import {browser} from "$app/environment" import {page} from "$app/stores" + + const training = [ + {slug: "cpm", title: "CPM - Characters Per Minute", icon: "music_note"}, + {slug: "chords", title: "ChM - Chords Mastered", icon: "piano"}, + {slug: "avg-wpm", title: "aWPM - Average Words Per Minute", icon: "avg_pace"}, + {slug: "sentences", title: "StM - Sentences Mastered", icon: "lyrics"}, + {slug: "top-wpm", title: "tWPM - Top Words Per Minute", icon: "speed"}, + {slug: "cm", title: "CM - Concepts Mastered", icon: "cognition"}, + ]