import { Stethoscope } from "lucide-react" import { getAuthContext } from "@/shared/lib/auth-guard" import { getStudentMasterySummary } from "@/modules/diagnostic/data-access" import { getDiagnosticReports } from "@/modules/diagnostic/data-access-reports" import { StudentDiagnosticView } from "@/modules/diagnostic/components/student-diagnostic-view" export const dynamic = "force-dynamic" export default async function StudentDiagnosticPage() { const ctx = await getAuthContext() const [summary, reports] = await Promise.all([ getStudentMasterySummary(ctx.userId), getDiagnosticReports({ studentId: ctx.userId }), ]) return (
Your knowledge point mastery analysis and diagnostic reports.