From f443ac18ccb8ab34fb5bf69b0802eb69cf89cf06 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 7 Dec 2025 18:50:08 +0900 Subject: feat(client): add study session page with card flip and rating UI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Implements the complete study flow frontend: - Study session page with card display and flip interaction - Rating buttons (Again, Hard, Good, Easy) with keyboard shortcuts - Progress display showing remaining cards count - Session complete screen with review summary - Study Now button on deck detail page 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/client/App.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'src/client/App.tsx') diff --git a/src/client/App.tsx b/src/client/App.tsx index 4c5b08a..f774003 100644 --- a/src/client/App.tsx +++ b/src/client/App.tsx @@ -1,6 +1,12 @@ import { Route, Switch } from "wouter"; import { ProtectedRoute } from "./components"; -import { DeckDetailPage, HomePage, LoginPage, NotFoundPage } from "./pages"; +import { + DeckDetailPage, + HomePage, + LoginPage, + NotFoundPage, + StudyPage, +} from "./pages"; export function App() { return ( @@ -15,6 +21,11 @@ export function App() { + + + + + -- cgit v1.2.3-70-g09d2