{"version":3,"file":"component---src-pages-covid-jsx-91aadfbe31b79507df76.js","mappings":"wLAyBA,UAjBc,SAAC,GAAY,IACnBA,EADkB,EAAVC,KACQC,iBAAiBC,MAEvC,OACE,gBAAC,IAAD,CAAQC,UAAU,YACbJ,EAASK,KAAI,SAAAC,GAAO,OACnB,2BACE,gBAAC,IAAD,CAAkBC,MAAOD,EAAQE,KAAKC,YAAcH,EAAQE,KAAKC,YAAYC,UAAY,KAAMC,QAASL,EAAQM,aAChH,gBAAC,IAAD,KACI,0BAAKN,EAAQE,KAAKK,OAClB,gBAAC,IAAD,CAAeC,cAAe,CAACC,KAAYC,SAAUV,EAAQE,KAAKS","sources":["webpack://hmb/./src/pages/covid.jsx"],"sourcesContent":["import * as React from \"react\"\nimport {graphql} from \"gatsby\";\nimport Layout from '../components/Layout/Layout';\nimport WideImageSection from '../components/WideImageSection/WideImageSection';\nimport CenteredSection from '../components/CenteredSection/CenteredSection';\nimport ReactMarkdown from \"react-markdown\";\nimport rehypeRaw from 'rehype-raw';\n\nconst Covid = ({data}) => {\n const articles = data.allStrapiArticle.edges;\n \n return (\n \n {articles.map(article => (\n
\n \n \n

{article.node.Title}

\n \n
\n
\n ))}\n
\n )\n}\nexport default Covid;\n\nexport const pageQuery=graphql`\n query CovidQuery {\n allStrapiArticle(filter: {Page: {eq: \"covid\"}} sort: {order: ASC, fields: Index}) {\n edges {\n node {\n HeaderText\n HeaderImage {\n localFile {\n childImageSharp {\n fluid(quality: 90, maxWidth: 1920) {\n ...GatsbyImageSharpFluid\n }\n }\n }\n }\n Title\n Content\n }\n }\n }\n allStrapiQAndA(filter: {Page: {eq: \"covid\"}} sort: {order: ASC, fields: Index}) {\n edges {\n node {\n Question\n Answer\n }\n }\n }\n }\n`\n\n"],"names":["articles","data","allStrapiArticle","edges","pageTitle","map","article","image","node","HeaderImage","localFile","heading","HeaderText","Title","rehypePlugins","rehypeRaw","children","Content"],"sourceRoot":""}