Spaces:
Sleeping
Sleeping
File size: 1,140 Bytes
0698e11 cc3a713 0698e11 cc3a713 0698e11 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
// web/src/lib/courseDirectory.ts
export type Person = {
name: string;
email?: string; // optional: can be empty for now
};
export type CourseDirectoryItem = {
id: string;
name: string;
instructor?: Person; // optional: some courses may not have info yet
teachingAssistant?: Person; // optional
};
/**
* NOTE:
* - Fill in missing names/emails here once confirmed.
* - Keep emails empty ("") or undefined if you don't have them yet.
*/
export const COURSE_DIRECTORY: CourseDirectoryItem[] = [
{
id: "intro_ai",
name: "Introduction to AI",
instructor: { name: "Dr. Sarah Johnson", email: "" },
teachingAssistant: { name: "Michael Chen", email: "" },
},
{
id: "ml",
name: "Machine Learning",
instructor: { name: "TBD", email: "" },
teachingAssistant: { name: "TBD", email: "" },
},
{
id: "ds",
name: "Data Structures",
instructor: { name: "TBD", email: "" },
teachingAssistant: { name: "TBD", email: "" },
},
{
id: "web_dev",
name: "Web Development",
instructor: { name: "TBD", email: "" },
teachingAssistant: { name: "TBD", email: "" },
},
];
|