Study/src/config/studyModes.ts
Elijah 611a585757
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m4s
Initial addition of the Arcade study feature. Add connections as the first working game.
2026-07-13 17:35:18 -07:00

9 lines
517 B
TypeScript

export const STUDY_MODES = [
{ key: "flashcards", label: "Flashcards", path: "flashcards", icon: "▤" },
{ key: "quizzes", label: "Quizzes", path: "quizzes", icon: "✓" },
{ key: "spaced-repetition", label: "Spaced Repetition", path: "spaced-repetition", icon: "↻" },
{ key: "arcade", label: "Arcade", path: "arcade", icon: "◆" },
// Future modes get added here — the layout, tab bar, and auth middleware need no changes.
] as const;
export type StudyModeKey = (typeof STUDY_MODES)[number]["key"];