feat(targeted): add targeted practice functionality

feat(analytics); add analytics page
This commit is contained in:
shafin-r
2026-02-05 15:07:24 +06:00
parent 2ac88835f9
commit 903653a212
20 changed files with 2018 additions and 35 deletions

View File

@ -19,6 +19,7 @@ import { StudentLayout } from "./pages/student/StudentLayout";
import { TargetedPractice } from "./pages/student/targeted-practice/page";
import { Drills } from "./pages/student/drills/page";
import { HardTestModules } from "./pages/student/hard-test-modules/page";
import { Analytics } from "./pages/student/Analytics";
function App() {
const router = createBrowserRouter([
@ -53,6 +54,10 @@ function App() {
path: "profile",
element: <Profile />,
},
{
path: "analytics",
element: <Analytics />,
},
{
path: "practice/:sheetId",
element: <Pretest />,