{"version":3,"file":"component---src-pages-case-studies-tsx-d61dd4d849cad19ae892.js","mappings":"8JA0GA,UAzCoB,SAAC,GAAyC,IAAD,gBAAtCA,EAAsC,EAAtCA,KAAMC,EAAgC,EAAhCA,SACrBC,EAAOF,EAAKG,sBACZC,EAAcJ,EAAKK,2BAA2BC,MACpD,OACE,gBAAC,KAAD,KACE,gBAAC,KAAD,CACEC,MAAOL,MAAAA,GAAF,UAAEA,EAAMM,WAAR,aAAE,EAAWD,MAClBE,YAAaP,MAAAA,GAAF,UAAEA,EAAMM,WAAR,iBAAE,EAAWC,mBAAb,aAAE,EAAwBA,YACrCC,cAAeR,MAAAA,GAAF,UAAEA,EAAMM,WAAR,iBAAE,EAAWE,qBAAb,aAAE,EAA0BC,UACzCC,SAAS,EACTC,IAAKZ,EAASa,KACdC,MAAOb,MAAAA,GAAF,UAAEA,EAAMM,WAAR,iBAAE,EAAWO,aAAb,iBAAE,EAAkBC,aAApB,aAAE,EAAyBC,MAElC,gBAAC,KAAD,CAAgBC,QAAShB,MAAAA,OAAF,EAAEA,EAAMgB,QAASC,UAAU,UAChD,gBAAC,KAAD,CAAUC,QAASlB,EAAKmB,OAAQC,QAAQ,sBAEzClB,EAAYmB,KAAI,WAAgBC,GAAhB,QAAGC,EAAH,EAAGA,KAAH,OACf,gBAAC,KAAD,CACEC,IAAKD,EAAKE,cACVC,iBAAkBJ,EAAQ,GAAM,EAAI,gBAAkB,QACtDN,QAASO,EAAKI,KACdT,QAASK,EAAKK,gBACdf,MAAOU,MAAAA,GAAF,UAAEA,EAAMM,qBAAR,aAAE,EAAqBC,gBAC5BC,SAAUR,MAAAA,GAAF,UAAEA,EAAMM,qBAAR,aAAE,EAAqBxB,MAC/B2B,eAAgBV,EAAQ,GAAM,EAC9BW,qBAAqB,EACrBC,kBAAkB,EAClBC,oBAAoB,GAEpB,gBAAC,KAAD,KACE,gBAAC,KAAD,CAAgBC,IAAIC,EAAAA,EAAAA,IAAcd,EAAKe,MAAOC,MAAM,aAApD,sBAMN,gBAAC,KAAD","sources":["webpack://marketing-site/./src/pages/case-studies.tsx"],"sourcesContent":["import React from \"react\"\nimport { graphql } from \"gatsby\"\nimport { IGatsbyImageData } from \"gatsby-plugin-image\"\n\nimport {\n Seo,\n Layout,\n HeaderTextOnly,\n RichText,\n FormEnterpriseContact,\n SectionTextWithImage,\n ButtonWithIcon,\n ButtonList,\n} from \"../components\"\nimport { caseStudySlug } from \"../utils\"\n\ntype CaseStudy = {\n node: {\n contentful_id: string\n featuredImage: {\n gatsbyImageData: IGatsbyImageData\n title: string\n }\n listPageSummary: {\n raw: string\n }\n pageSections: any\n caseStudySections: any\n }\n}\n\ntype CaseStudiesPage = {\n location: {\n href: string\n }\n data: {\n contentfulPageGeneric: {\n id: string\n heading: string\n header: {\n raw: string\n }\n slug: string\n pageSections: any\n seo: {\n description: {\n description: string\n }\n titleTemplate: {\n extension: string\n }\n title: string\n image: {\n fixed: {\n src: string\n }\n }\n }\n }\n allContentfulPageCaseStudy: {\n edges: Array\n }\n }\n}\n\nconst CaseStudies = ({ data, location }: CaseStudiesPage) => {\n const page = data.contentfulPageGeneric\n const caseStudies = data.allContentfulPageCaseStudy.edges\n return (\n \n \n \n \n \n {caseStudies.map(({ node }: any, index: number) => (\n \n \n \n Find out more\n \n \n \n ))}\n \n \n )\n}\n\nexport default CaseStudies\n\nexport const pageQuery = graphql`\n query getCaseStudiesData {\n contentfulPageGeneric(name: { eq: \"Case studies\" }) {\n id\n heading\n header {\n raw\n }\n seo {\n description {\n description\n }\n titleTemplate {\n extension\n }\n title\n image {\n fixed {\n src\n }\n }\n }\n }\n allContentfulPageCaseStudy {\n edges {\n node {\n contentful_id\n name\n slug\n featuredImage {\n gatsbyImageData\n title\n }\n companyLogo {\n gatsbyImageData\n title\n }\n listPageSummary {\n raw\n }\n }\n }\n }\n }\n`\n"],"names":["data","location","page","contentfulPageGeneric","caseStudies","allContentfulPageCaseStudy","edges","title","seo","description","titleTemplate","extension","article","url","href","image","fixed","src","heading","alignment","content","header","variant","map","index","node","key","contentful_id","backgroundColour","name","listPageSummary","featuredImage","gatsbyImageData","imageAlt","showImageFirst","imageBlobBackground","showSignUpButton","scheduleDemoButton","to","caseStudySlug","slug","style"],"sourceRoot":""}