Pending course, rest ready for launch

This commit is contained in:
Marcelo
2026-03-15 13:52:11 +00:00
parent be4ca2ed78
commit 62b3cfe467
77 changed files with 6450 additions and 868 deletions

View File

@@ -1,12 +1,20 @@
import type { CourseLevel } from "./course";
export type CaseTerm = {
term: string;
definitionEs: string;
};
export type CaseStudy = {
slug: string;
title: string;
citation: string;
year: number;
summary: string;
summaryEs: string;
legalOutcomeEs: string;
level: CourseLevel;
topic: string;
keyTerms: string[];
category: string;
difficulty: string;
keyTerms: CaseTerm[];
quizPrompt: string;
};

View File

@@ -10,5 +10,6 @@ export type PracticeModule = {
title: string;
description: string;
isInteractive: boolean;
difficulty?: "Beginner" | "Intermediate" | "Advanced";
questions?: PracticeQuestion[];
};