Initial working commit
Some checks failed
Automated Container Build / build-and-push (push) Failing after 7s
Some checks failed
Automated Container Build / build-and-push (push) Failing after 7s
This commit is contained in:
parent
666ceb7325
commit
b7ce314f01
105 changed files with 35510 additions and 11 deletions
7
src/config/studyModes.ts
Normal file
7
src/config/studyModes.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
export const STUDY_MODES = [
|
||||
{ key: "flashcards", label: "Flashcards", path: "flashcards" },
|
||||
{ key: "quizzes", label: "Quizzes", path: "quizzes" },
|
||||
// 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"];
|
||||
Loading…
Add table
Add a link
Reference in a new issue