diff --git a/packages/frontend/components/WhatsNewModal/Fall2024ReleaseModalContent.tsx b/packages/frontend/components/WhatsNewModal/Fall2024ReleaseModalContent.tsx index be45d7be..494cf795 100644 --- a/packages/frontend/components/WhatsNewModal/Fall2024ReleaseModalContent.tsx +++ b/packages/frontend/components/WhatsNewModal/Fall2024ReleaseModalContent.tsx @@ -13,6 +13,9 @@ import { import { ModalBodyPagination } from "./ModalBodyPagination"; import InProgressIndicatorImage from "../../public/in-progress-indicator.png"; import SearchNEUIntegrationImage from "../../public/searchneu-integration.png"; +import GeneralPlaceholdersImage from "../../public/general-placeholders.png"; +import BetaMajorsImage from "../../public/2024-beta-majors.png"; +import CoursesAddedToPlanImage from "../../public/courses-added-to-plan-check.png"; import { InfoOutlineIcon } from "@chakra-ui/icons"; import React, { useEffect } from "react"; @@ -73,6 +76,20 @@ const featurePagesData: FeaturePageData[] = [ ), image: InProgressIndicatorImage.src, }, + { + key: "courses-added-to-plan-check", + title: "Courses Added To Plan Check", + descriptionSection: ( + + See which courses have been added to your plan at a glance. + + Now, courses that have been added to your plan will be marked with a + checkmark in the sidebar! + + + ), + image: CoursesAddedToPlanImage.src, + }, { key: "searchneu-integration", title: "SearchNEU Integration", @@ -92,6 +109,37 @@ const featurePagesData: FeaturePageData[] = [ ), image: SearchNEUIntegrationImage.src, }, + { + key: "general-placeholders", + title: "General Placeholder Courses", + descriptionSection: ( + + Not fully sure what courses you want to take yet? + + Add generic elective and NUPath tiles to your schedule to get a sense + of what your plan would look like. + + + ), + image: GeneralPlaceholdersImage.src, + }, + { + key: "2024-beta-majors", + title: "Support for 2024-2025 Academic Catalog [BETA]", + descriptionSection: ( + + + We have added support for the undergraduate catalog of the 2024-2025 + academic year. + + + You can now create plans that align with the new requirements for the + 2024-2025 academic year. + + + ), + image: BetaMajorsImage.src, + }, ]; export const Fall2024ReleaseModalContent: React.FC = ({ @@ -114,7 +162,7 @@ export const Fall2024ReleaseModalContent: React.FC = ({ borderBottom="1px" borderColor="neutral.200" > - Latest Release v26.09.24 + Latest Release: Fall 2024 {featurePages.length > 0 && } diff --git a/packages/frontend/public/2024-beta-majors.png b/packages/frontend/public/2024-beta-majors.png new file mode 100644 index 00000000..4eaa8ff8 Binary files /dev/null and b/packages/frontend/public/2024-beta-majors.png differ diff --git a/packages/frontend/public/courses-added-to-plan-check.png b/packages/frontend/public/courses-added-to-plan-check.png new file mode 100644 index 00000000..afab7965 Binary files /dev/null and b/packages/frontend/public/courses-added-to-plan-check.png differ diff --git a/packages/frontend/public/general-placeholders.png b/packages/frontend/public/general-placeholders.png new file mode 100644 index 00000000..b4e6b0ab Binary files /dev/null and b/packages/frontend/public/general-placeholders.png differ