Files
NextEdu/src/app/(dashboard)/teacher/grades/report-card/loading.tsx
SpecialX 21142f9b99 feat(app): add error/loading boundaries across all dashboard routes and new routes
- Add error.tsx and loading.tsx boundaries for admin, parent, student, teacher routes

- Add admin announcements edit, audit-logs overview, curriculum-map, invitation-codes, permissions, questions, roles routes

- Add admin elective detail and components, files, course-plans, users, scheduling boundaries

- Add messages group-compose route

- Add parent course-plans, elective, grades report-card, practice routes

- Add student course-plans, elective detail, error-book dialogs, grades report-card, learning study-path, leave, schedule boundaries

- Add teacher attendance report, classes boundaries, course-plans boundaries, elective, exams analytics/edit-rich/all/create/new, grades report-card, homework boundaries, leave, lesson-plans calendar

- Add auth loading, onboarding loading, api cron
2026-07-03 10:26:25 +08:00

13 lines
460 B
TypeScript

import { Loader2 } from "lucide-react"
import { getTranslations } from "next-intl/server"
export default async function Loading() {
const t = await getTranslations("grades")
return (
<div className="flex h-full flex-col items-center justify-center gap-3 p-12">
<Loader2 className="h-8 w-8 animate-spin text-muted-foreground" aria-hidden="true" />
<p className="text-sm text-muted-foreground">{t("reportCard.loading")}</p>
</div>
)
}