diff --git a/src/pages/student/Drills.tsx b/src/pages/student/Drills.tsx index a1cb2b0..2b8d477 100644 --- a/src/pages/student/Drills.tsx +++ b/src/pages/student/Drills.tsx @@ -1,26 +1,117 @@ +import { + BookOpen, + Clock, + DraftingCompass, + Loader2, + Target, + Trophy, + Zap, +} from "lucide-react"; import { useAuthStore } from "../../stores/authStore"; +import { + Card, + CardAction, + CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, +} from "../../components/ui/card"; +import { Button } from "../../components/ui/button"; export const Drills = () => { const user = useAuthStore((state) => state.user); return ( -
-
-
-

Drills

-
-

Email: {user?.email}

-

Role: {user?.role}

-

Status: {user?.status}

-

- Member since:{" "} - {user?.joined_at - ? new Date(user.joined_at).toLocaleDateString() - : "N/A"} -

-
+
+
+
+
-
-
+
+
+ 0 +
+ +
+ +
+ + + See where you stand + + + + +

+ Test your knowledge with an adaptive practice test. +

+
+ + + +
+
+ +
+
+
+
+

Practice your way

+ + +
+ +
+
+ Targeted Practice + Focus on what matters +
+ +
+ +
+
+
+
+ + +
+ +
+
+ Drills + Train speed and accuracy +
+ +
+ +
+
+
+
+ + +
+ +
+
+ Hard Test Modules + Focus on what matters +
+ +
+ +
+
+
+
+
+
); }; diff --git a/src/pages/student/StudentLayout.tsx b/src/pages/student/StudentLayout.tsx index f847fed..ae96261 100644 --- a/src/pages/student/StudentLayout.tsx +++ b/src/pages/student/StudentLayout.tsx @@ -31,7 +31,7 @@ export function StudentLayout() { return (
{/* Top Header */} -
+ {/*
@@ -53,7 +53,7 @@ export function StudentLayout() {
-
+
*/} {/* Main Content */}