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 | 3x 3x | import { PdfList, Template } from "../utils"; export const MPC_TEMPLATES: Template[] = [ { title: "Premiums and Cost Sharing Public Notice and General Information", href: "/mpc/P&CSPN&GI.pdf", }, { title: "G 1", text: "Cost Sharing Requirements", href: "/mpc/G1.pdf", }, { title: "G 2a", text: "Cost Sharing Amounts - Categorically Needy", href: "/mpc/G2a.pdf", }, { title: "G 2b", text: "Cost Sharing Amounts - Medically Needy", href: "/mpc/G2b.pdf", }, { title: "G 2c", text: "Cost Sharing Amounts - Targeting", href: "/mpc/G2c.pdf", }, { title: "G 3", text: "Cost Sharing Limitations", href: "/mpc/G3.pdf", }, ]; export const MpcSpaTemplates = () => ( <section className="space-y-2"> <p> Medicaid Premiums and Cost Sharing SPA templates can be downloaded at the links below. After downloading and completing the templates you need, upload them as part of the SPA submission. The template PDFs can only be opened using Adobe Reader or Acrobat. </p> <PdfList list={MPC_TEMPLATES} label="template" /> </section> ); |