First commit

This commit is contained in:
mdares
2026-02-07 18:08:42 -06:00
commit b7a86a2d1c
57 changed files with 9188 additions and 0 deletions

12
types/caseStudy.ts Normal file
View File

@@ -0,0 +1,12 @@
import type { CourseLevel } from "./course";
export type CaseStudy = {
slug: string;
title: string;
citation: string;
year: number;
summary: string;
level: CourseLevel;
topic: string;
keyTerms: string[];
};