This commit is contained in:
Marcelo
2026-02-17 00:07:00 +00:00
parent b7a86a2d1c
commit be4ca2ed78
92 changed files with 6850 additions and 1188 deletions

View File

@@ -0,0 +1,7 @@
import { requireTeacher } from "@/lib/auth/requireTeacher";
import TeacherUploadsLibraryClient from "@/components/teacher/TeacherUploadsLibraryClient";
export default async function TeacherUploadsPage() {
await requireTeacher();
return <TeacherUploadsLibraryClient />;
}