feat(pages): add targeted practice, drills, hard test modules pages

This commit is contained in:
shafin-r
2026-02-01 17:35:35 +06:00
parent 60e858c931
commit 62238cbf8f
5 changed files with 50 additions and 4 deletions

View File

@ -16,6 +16,9 @@ import { Test } from "./pages/student/practice/Test";
import { Profile } from "./pages/student/Profile";
import { Rewards } from "./pages/student/Rewards";
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";
function App() {
const router = createBrowserRouter([
@ -54,9 +57,20 @@ function App() {
path: "practice/:sheetId",
element: <Pretest />,
},
{
path: "practice/targeted-practice",
element: <TargetedPractice />,
},
{
path: "practice/drills",
element: <Drills />,
},
{
path: "practice/hard-test-modules",
element: <HardTestModules />,
},
],
},
{
path: "practice/:sheetId/test",
element: <Test />,