- Add error.tsx and loading.tsx boundaries for admin, parent, student, teacher routes - Add dashboard-error-fallback and dashboard-loading-skeleton components - Add student/learning page, parent/leave routes, teacher textbook components - Update existing app routes across auth, dashboard, and API endpoints - Update proxy middleware and next-auth type declarations
12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
import { DashboardGreetingHeader } from "../dashboard-greeting-header"
|
|
|
|
interface StudentDashboardHeaderProps {
|
|
studentName: string
|
|
}
|
|
|
|
export function StudentDashboardHeader({ studentName }: StudentDashboardHeaderProps) {
|
|
return (
|
|
<DashboardGreetingHeader userName={studentName} />
|
|
)
|
|
}
|