feat: Add precalculus course to catalog (#66089)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Jessica Wilkins
2026-03-12 10:55:17 -07:00
committed by GitHub
parent ab14a6a9b1
commit 4015c354b9
56 changed files with 1763 additions and 0 deletions
+7
View File
@@ -19,6 +19,7 @@ enum Topic {
InformationSecurity = 'information-security',
ComputerFundamentals = 'computer-fundamentals',
ComputerScience = 'computer-science',
Math = 'math',
Databases = 'databases',
Bash = 'bash',
Git = 'git',
@@ -202,6 +203,12 @@ export const catalog: Catalog[] = [
hours: 6,
topic: Topic.ComputerScience
},
{
superBlock: SuperBlocks.IntroductionToPrecalculus,
level: Levels.Intermediate,
hours: 6,
topic: Topic.Math
},
{
superBlock: SuperBlocks.IntroductionToBash,
level: Levels.Intermediate,
@@ -368,6 +368,7 @@ export const superBlockToCertMap: {
[SuperBlocks.CssAnimations]: null,
[SuperBlocks.LearnPythonForBeginners]: null,
[SuperBlocks.IntroductionToAlgorithmsAndDataStructures]: null,
[SuperBlocks.IntroductionToPrecalculus]: null,
[SuperBlocks.IntroductionToBash]: null,
[SuperBlocks.IntroductionToSQLAndPostgreSQL]: null,
[SuperBlocks.LearnBashScripting]: null,
+2
View File
@@ -67,6 +67,7 @@ export enum SuperBlocks {
CssAnimations = 'css-animations',
LearnPythonForBeginners = 'learn-python-for-beginners',
IntroductionToAlgorithmsAndDataStructures = 'introduction-to-algorithms-and-data-structures',
IntroductionToPrecalculus = 'introduction-to-precalculus',
IntroductionToBash = 'introduction-to-bash',
IntroductionToSQLAndPostgreSQL = 'introduction-to-sql-and-postgresql',
LearnBashScripting = 'learn-bash-scripting',
@@ -226,6 +227,7 @@ export const superBlockStages: StageMap = {
SuperBlocks.CssAnimations,
SuperBlocks.LearnPythonForBeginners,
SuperBlocks.IntroductionToAlgorithmsAndDataStructures,
SuperBlocks.IntroductionToPrecalculus,
SuperBlocks.IntroductionToBash,
SuperBlocks.IntroductionToSQLAndPostgreSQL,
SuperBlocks.LearnBashScripting,