All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m4s
9 lines
517 B
TypeScript
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"];
|