Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | 3x 3x | import { PdfList, Template } from "../utils";
export const ABP_GUIDES: Template[] = [
{
title: "ABP Introduction",
href: "/abp/IG_AbpIntroduction.pdf",
},
{
title: "ABP General Information Implementation Guide",
href: "/abp/IG_AbpGeneralInfoImplementationGuide.pdf",
},
{
title: "ABP 1",
text: "Alternative Benefit Plan Populations Implementation Guide",
href: "/abp/IG_ABP1_AlternativeBenefitPlanPopulations.pdf",
},
{
title: "ABP 2a",
text: "Voluntary Benefit Package Selection Assurances - Eligibility Group under Section 1902(a)(10)(A)(i)(VIII) of the Act Implementation Guide",
href: "/abp/IG_ABP2a_VoluntaryBenefitPackageAssurances.pdf",
},
{
title: "ABP 2b",
text: "Voluntary Enrollment Assurances for Eligibility Groups other than the Adult Group under Section 1902(a)(10)(A)(i)(VIII) of the Act Implementation Guide",
href: "/abp/IG_ABP2b_VoluntaryEnrollmentAssurances.pdf",
},
{
title: "ABP 2c",
text: "Enrollment Assurances - Mandatory Participants",
href: "/abp/IG_ABP2c_EnrollmentAssurancesMandatoryParticipants.pdf",
},
{
title: "ABP 3",
text: "Selection of Benchmark Benefit Package or Benchmark-Equivalent Benefit Package Implementation Guide",
href: "/abp/IG_ABP3_SelectionOfBenchmark.pdf",
},
{
title: "ABP 3.1",
text: "Selection of Benchmark Benefit or Benchmark-Equivalent Benefit Package Implementation Guide",
href: "/abp/IG_ABP3.1_SelectionOfBenchmark.pdf",
},
{
title: "ABP 4",
text: "Alternative Benefit Plan Cost Sharing Implementation Guide",
href: "/abp/IG_ABP4_AbpCostSharing.pdf",
},
{
title: "ABP 5",
text: "Benefits Description Implementation Guide",
href: "/abp/IG_ABP5_BenefitsDescription.pdf",
},
{
title: "ABP 6",
text: "Benchmark-Equivalent Benefit Package Implementation Guide",
href: "/abp/IG_ABP6_BenchmarkEquivalentBenefit.pdf",
},
{
title: "ABP 7",
text: "Benefits Assurances Implementation Guide",
href: "/abp/IG_ABP7_BenefitAssurances.pdf",
},
{
title: "ABP 8",
text: "Service Delivery Systems Implementation Guide",
href: "/abp/IG_ABP8_ServiceDeliverySystems.pdf",
},
{
title: "ABP 9",
text: "Employer-Sponsored Insurance and Payment of Premiums Implementation Guide",
href: "/abp/IG_ABP9_EmployerSponsoredInsurance.pdf",
},
{
title: "ABP 10",
text: "General Assurances Implementation Guide",
href: "/abp/IG_ABP10_GeneralAssurances.pdf",
},
{
title: "ABP 11",
text: "Payment Methodology Implementation Guide",
href: "/abp/IG_ABP11_PaymentMethodology.pdf",
},
];
export const AbpImplementationGuidesSpa = () => (
<section className="space-y-2">
<p>
Medicaid Alternative Benefit Plan (ABP) SPA implementation guides can be downloaded at the
links below.
</p>
<PdfList list={ABP_GUIDES} label="template" />
</section>
);
|