{"version":3,"file":"static/chunks/4842.844be5ff706ef7f8.js","mappings":"qNAKA,IAAMA,EAAa,OAAC,CAAEC,SAAAA,CAAQ,CAAEC,MAAAA,CAAK,CAAEC,GAAAA,CAAE,CAAEC,UAAAA,EAAY,EAAE,CAAE,CAAAC,EACvD,GAAI,CAACF,EACD,MAAO,GAAAG,EAAAC,GAAA,EAACC,OAAAA,UAAMN,GAASD,IAG3B,IAAMQ,EAAUC,IAAWC,IAAAA,IAAS,CAAE,SAAU,CAC5C,CAAC,GAAaC,MAAA,CAAVR,GAAY,CAAEA,CACtB,GACA,MACI,GAAAE,EAAAC,GAAA,EAACM,IAAAA,CAAET,UAAWK,EAASK,KAAM,IAAOF,MAAA,CAAHT,GAAMA,GAAIA,WACvC,GAAAG,EAAAC,GAAA,EAACC,OAAAA,UAAMN,GAASD,KAG5B,CAEAD,CAAAA,EAAWe,SAAS,CAAG,CACnBb,MAAOc,IAAAA,MAAgB,CACvBb,GAAIa,IAAAA,MAAgB,CACpBZ,UAAWY,IAAAA,MAAgB,ECrB/B,IAAAC,EDwBejB,+KElBf,IAAMkB,EAAmB,OAAC,CAAEC,KAAAA,CAAI,CAAEC,OAAAA,CAAM,CAAE,CAAAf,EAChCI,EAAUC,IAAWW,IAAAA,gBAA0B,CAAE,CACnD,CAACA,GAAM,CAAC,qBAA4BT,MAAA,CAAPQ,GAAS,CAAC,CAAEA,CAC7C,GAEA,MACI,GAAAd,EAAAC,GAAA,EAACe,EAAAA,CAAeA,CAAAA,CAACF,OAAQA,EAAQX,QAASA,WACtC,GAAAH,EAAAC,GAAA,EAACgB,MAAAA,CAAInB,UAAWiB,IAAAA,2BAAqC,UACjD,GAAAf,EAAAC,GAAA,EAACgB,MAAAA,CACGnB,UAAWiB,IAAAA,yBAAmC,CAC9CG,wBAAyB,CAAEC,OAAQN,CAAK,OAK5D,CAEAD,CAAAA,EAAiBH,SAAS,CAAG,CACzBI,KAAMH,IAAAA,MAAgB,CAACU,UAAU,CACjCN,OAAQJ,IAAAA,MAAgB,ECzB5B,IAAAW,ED4BeT,kKEtBf,IAAMI,EAAkB,OAAC,CACrBF,OAAAA,EAAS,IAAI,CACbQ,QAAAA,EAAU,EAAE,CACZC,WAAAA,EAAa,EAAE,CACfpB,QAAAA,EAAU,EAAE,CACZR,SAAAA,EAAW,IAAI,CAClB,CAAAI,QACG,GAAAC,EAAAwB,IAAA,EAACC,UAAAA,CACG3B,UAAWM,IAAWW,IAAAA,eAAyB,CAAEZ,EAAS,CACtD,CAACY,GAAM,CAAC,oBAA2BT,MAAA,CAAPQ,GAAS,CAAC,CAAE,CAAC,CAACA,CAC9C,aACCQ,GACG,GAAAtB,EAAAC,GAAA,EAACyB,KAAAA,CAAG5B,UAAWiB,IAAAA,wBAAkC,UAC5CQ,EACG,GAAAvB,EAAAC,GAAA,EAACP,EAAAA,CAAUA,CAAAA,CAACE,MAAO0B,EAASzB,GAAI0B,IAEhCD,IAIX3B,KAITqB,CAAAA,EAAgBP,SAAS,CAAG,CACxBK,OAAQJ,IAAAA,MAAgB,CACxBY,QAASZ,IAAAA,MAAgB,CACzBa,WAAYb,IAAAA,MAAgB,CAC5BP,QAASO,IAAAA,MAAgB,CACzBf,SAAUe,IAAAA,IAAc,CAACU,UAAU,ECnCvC,IAAAO,EDsCeX,oBEvCfY,EAAAC,OAAA,EAAkB,iDCAlBD,EAAAC,OAAA,EAAkB,uUCAlBD,EAAAC,OAAA,EAAkB","sources":["webpack://_N_E/./components/AnchorLink/AnchorLink.js","webpack://_N_E/./components/AnchorLink/index.js","webpack://_N_E/./components/CampaignPreamble/CampaignPreamble.js","webpack://_N_E/./components/CampaignPreamble/index.js","webpack://_N_E/./components/CampaignSection/CampaignSection.js","webpack://_N_E/./components/CampaignSection/index.js","webpack://_N_E/./components/AnchorLink/AnchorLink.module.scss","webpack://_N_E/./components/CampaignPreamble/CampaignPreamble.module.scss","webpack://_N_E/./components/CampaignSection/CampaignSection.module.scss"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\nimport classNames from 'classnames';\nimport s from './AnchorLink.module.scss';\n\nconst AnchorLink = ({ children, title, id, className = '' }) => {\n    if (!id) {\n        return <span>{title || children}</span>;\n    }\n\n    const classes = classNames(s['Root'], 'Anchor', {\n        [`${className}`]: className,\n    });\n    return (\n        <a className={classes} href={`#${id}`} id={id}>\n            <span>{title || children}</span>\n        </a>\n    );\n};\n\nAnchorLink.propTypes = {\n    title: PropTypes.string,\n    id: PropTypes.string,\n    className: PropTypes.string,\n};\n\nexport default AnchorLink;\n","import AnchorLink from './AnchorLink';\n\nexport default AnchorLink;\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport classNames from 'classnames';\n\nimport CampaignSection from '../CampaignSection';\n\nimport styles from './CampaignPreamble.module.scss';\n\nconst CampaignPreamble = ({ text, colors }) => {\n    const classes = classNames(styles['CampaignPreamble'], {\n        [styles[`CampaignPreamble--${colors}`]]: colors,\n    });\n\n    return (\n        <CampaignSection colors={colors} classes={classes}>\n            <div className={styles['CampaignPreamble__Container']}>\n                <div\n                    className={styles['CampaignPreamble__Content']}\n                    dangerouslySetInnerHTML={{ __html: text }}\n                />\n            </div>\n        </CampaignSection>\n    );\n};\n\nCampaignPreamble.propTypes = {\n    text: PropTypes.string.isRequired,\n    colors: PropTypes.string,\n};\n\nexport default CampaignPreamble;\n","import CampaignPreamble from './CampaignPreamble';\n\nexport default CampaignPreamble;\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport classNames from 'classnames';\n\nimport AnchorLink from '../AnchorLink';\n\nimport styles from './CampaignSection.module.scss';\n\nconst CampaignSection = ({\n    colors = null,\n    heading = '',\n    anchorLink = '',\n    classes = '',\n    children = null,\n}) => (\n    <section\n        className={classNames(styles['CampaignSection'], classes, {\n            [styles[`CampaignSection--${colors}`]]: !!colors,\n        })}>\n        {heading && (\n            <h2 className={styles['CampaignSection__Heading']}>\n                {anchorLink ? (\n                    <AnchorLink title={heading} id={anchorLink} />\n                ) : (\n                    heading\n                )}\n            </h2>\n        )}\n        {children}\n    </section>\n);\n\nCampaignSection.propTypes = {\n    colors: PropTypes.string,\n    heading: PropTypes.string,\n    anchorLink: PropTypes.string,\n    classes: PropTypes.string,\n    children: PropTypes.node.isRequired,\n};\n\nexport default CampaignSection;\n","import CampaignSection from './CampaignSection';\n\nexport default CampaignSection;\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"Root\":\"AnchorLink_Root__gIFSV\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"CampaignPreamble__Content\":\"CampaignPreamble_CampaignPreamble__Content__EdTA6\",\"CampaignPreamble\":\"CampaignPreamble_CampaignPreamble__YIEAa\",\"CampaignPreamble__Container\":\"CampaignPreamble_CampaignPreamble__Container__hV9uu\",\"CampaignPreamble--WhiteOnBlue\":\"CampaignPreamble_CampaignPreamble--WhiteOnBlue__nFYM3\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"CampaignSection__Heading\":\"CampaignSection_CampaignSection__Heading__qWfXv\",\"CampaignSection\":\"CampaignSection_CampaignSection__d6O_t\",\"CampaignSection--BlackOnWhite\":\"CampaignSection_CampaignSection--BlackOnWhite__7G85o\",\"CampaignSection--BlackOnYellow\":\"CampaignSection_CampaignSection--BlackOnYellow__zRUYZ\",\"CampaignSection--WhiteOnBlue\":\"CampaignSection_CampaignSection--WhiteOnBlue__hHoZ5\",\"CampaignSection--YellowOnBlue\":\"CampaignSection_CampaignSection--YellowOnBlue__hCyMA\",\"CampaignSection--BlueOnYellow\":\"CampaignSection_CampaignSection--BlueOnYellow__AC3dm\"};"],"names":["AnchorLink","children","title","id","className","param","jsx_runtime","jsx","span","classes","classNames","s","concat","a","href","propTypes","PropTypes","components_AnchorLink","CampaignPreamble","text","colors","styles","CampaignSection","div","dangerouslySetInnerHTML","__html","isRequired","components_CampaignPreamble","heading","anchorLink","jsxs","section","h2","components_CampaignSection","module","exports"],"sourceRoot":""}