import type { CourseLevel } from "./course"; export type CaseStudy = { slug: string; title: string; citation: string; year: number; summary: string; level: CourseLevel; topic: string; keyTerms: string[]; };