diff --git a/react-app/src/assets/abp/IG_AbpIntroduction_Final_20241205.pdf b/react-app/src/assets/abp/IG_AbpIntroduction_Final_20241205.pdf new file mode 100644 index 0000000000..289a6d13c2 Binary files /dev/null and b/react-app/src/assets/abp/IG_AbpIntroduction_Final_20241205.pdf differ diff --git a/react-app/src/assets/chp/IG_ChipEligibilityIntroduction_Final_20241205.pdf b/react-app/src/assets/chp/IG_ChipEligibilityIntroduction_Final_20241205.pdf new file mode 100644 index 0000000000..c8646aeae0 Binary files /dev/null and b/react-app/src/assets/chp/IG_ChipEligibilityIntroduction_Final_20241205.pdf differ diff --git a/react-app/src/assets/mpc/IG_CostSharingBackground.pdf b/react-app/src/assets/mpc/IG_CostSharingBackground.pdf new file mode 100644 index 0000000000..2566a41a16 Binary files /dev/null and b/react-app/src/assets/mpc/IG_CostSharingBackground.pdf differ diff --git a/react-app/src/features/faq/content/abpGuides.ts b/react-app/src/features/faq/content/abpGuides.ts index f1b6794bfc..265e148ab8 100644 --- a/react-app/src/features/faq/content/abpGuides.ts +++ b/react-app/src/features/faq/content/abpGuides.ts @@ -1,6 +1,10 @@ import { Template } from "./chpRenderSection"; export const ABP_GUIDES: Template[] = [ + { + title: "ABP Introduction", + href: "/abp/IG_AbpIntroduction_Final_20241205.pdf", + }, { title: "ABP 1", text: "Alternative Benefit Plan Populations Implementation Guide", diff --git a/react-app/src/features/faq/content/chpGuides.ts b/react-app/src/features/faq/content/chpGuides.ts index 93ed263aef..7200650a93 100644 --- a/react-app/src/features/faq/content/chpGuides.ts +++ b/react-app/src/features/faq/content/chpGuides.ts @@ -2,10 +2,14 @@ import { Template } from "./chpRenderSection"; export const CHP_GUIDES: Template[] = [ // MAGI Eligibility & Methods + { + title: "CHIP Eligibility Introduction", + href: "/chp/IG_ChipEligibilityIntroduction_Final_20241205.pdf", + }, { title: "CS 7", text: "Eligibility - Targeted Low-Income Children Implementation Guide", - href: "/chip/IG_CS7_TargetedLow-IncomeChildren.pdf", + href: "/chp/IG_CS7_TargetedLow-IncomeChildren.pdf", }, { title: "CS 8", diff --git a/react-app/src/features/faq/content/chpRenderSection.tsx b/react-app/src/features/faq/content/chpRenderSection.tsx index b536913ef9..a25fa4bd63 100644 --- a/react-app/src/features/faq/content/chpRenderSection.tsx +++ b/react-app/src/features/faq/content/chpRenderSection.tsx @@ -6,7 +6,7 @@ export function cn(...inputs: ClassValue[]) { } export interface Template { title: string; - text: string; + text?: string; href: string; subtext?: string[]; } diff --git a/react-app/src/features/faq/content/mpcGuides.ts b/react-app/src/features/faq/content/mpcGuides.ts index 92ab499581..7eb581afca 100644 --- a/react-app/src/features/faq/content/mpcGuides.ts +++ b/react-app/src/features/faq/content/mpcGuides.ts @@ -1,6 +1,10 @@ import { Template } from "./chpRenderSection"; export const MPC_GUIDES: Template[] = [ + { + title: "Medicaid Cost Sharing Background", + href: "/mpc/IG_CostSharingBackground.pdf", + }, { title: "G 1", text: "Cost-Sharing Requirements Implementation Guide", diff --git a/react-app/src/features/faq/content/oneMACFAQContent.tsx b/react-app/src/features/faq/content/oneMACFAQContent.tsx index bbfbe2b6de..13bbcdd54c 100644 --- a/react-app/src/features/faq/content/oneMACFAQContent.tsx +++ b/react-app/src/features/faq/content/oneMACFAQContent.tsx @@ -887,7 +887,8 @@ export const oneMACFAQContent: FAQContent[] = [ rel="noopener noreferrer" className="text-blue-600" > - {pdf.title}: {pdf.text} + {pdf.title} + {pdf.text && `: ${pdf.text}`} ))} @@ -941,7 +942,8 @@ export const oneMACFAQContent: FAQContent[] = [ rel="noopener noreferrer" className="text-blue-600" > - {pdf.title}: {pdf.text} + {pdf.title} + {pdf.text && `: ${pdf.text}`} ))} @@ -1019,63 +1021,79 @@ export const oneMACFAQContent: FAQContent[] = [ anchorText: "chip-spa-implentation-guides", question: "Where can I download CHIP eligibility SPA implementation guides?", answerJSX: ( -
-

CHIP eligibility SPA implementation guides can be downloaded at the links below.

- -
+
+
+

+ CHIP eligibility SPA implementation guides can be downloaded at the links below. +

+ + +
+
), }, ],