{"version":3,"file":"component---src-templates-generic-content-index-en-js-8de7dd08a28d60f99584.js","mappings":"iKAyBA,IAnBuB,SAAC,GAAkB,IAClCA,EADiC,EAAfC,SACeC,MAAK,SAAAC,GAAC,MAAe,mBAAXA,EAAEC,QAEnD,OACE,uBAAKC,UAAU,kBAEb,sBAAIA,UAAU,yBACVL,EAAsBM,OAG1B,gBAAC,IAAD,CACED,UAAU,8BACVE,YAAcP,EAAsBO,iB,sFCS5C,UAlB6B,SAAC,GAAwB,IAAtBC,EAAqB,EAArBA,SAAUC,EAAW,EAAXA,KAClCC,EAASD,EAAKC,OACdT,EAAW,IAAMQ,EAAN,8BAA2C,IACtDE,EAAYF,EAAKE,UACjBC,EAAc,IAAMH,EAAN,oBAAiC,IAErD,OACE,gBAAC,IAAD,CACED,SAAWA,EACXE,OAASA,EACTG,KAAOJ,EAAKK,mBACZH,UAAYA,EACZC,YAAcA,GACZ,gBAAC,IAAD,CAAgBX,SAAWA","sources":["webpack://gatsby-starter-default/./src/components/pages/GenericContent/GenericContent.js","webpack://gatsby-starter-default/./src/templates/GenericContent/index.en.js"],"sourcesContent":["// NPM\nimport React from 'react'\n\n// Shared components\nimport Description from 'src/components/Shared/Description'\n\nconst GenericContent = ({ sections }) => {\n const genericContentSection = sections.find(s => s.uuid === \"genericContent\")\n\n return (\n
\n\n

\n { genericContentSection.title }\n

\n\n \n
\n )\n \n}\n\nexport default GenericContent","// NPM\nimport * as React from \"react\"\nimport { graphql } from 'gatsby'\nimport _ from 'lodash'\n\n// Components\nimport Layout from \"src/layouts/en\"\nimport GenericContent from \"src/components/pages/GenericContent/GenericContent\"\n\nconst GenericContentPageEn = ({ location, data }) => {\n const topNav = data.topNav\n const sections = _.get(data, `genericContentPage.sections`, [])\n const bottomNav = data.bottomNav\n const socialMedia = _.get(data, `socialMedia.nodes`, [])\n\n return (\n \n \n \n )\n}\n\nexport default GenericContentPageEn\n\nexport const query = graphql`\n query GenericContentPageEnQuery($id: String) {\n topNav: strapiTopNav(locale: {eq: \"en\"}) {\n ...topNavContent\n }\n \n genericContentPage: strapiPage(id: {eq: $id}) {\n ...pageInformation\n }\n \n bottomNav: strapiBottomNav(locale: {eq: \"en\"}) {\n ...bottomNavContent\n }\n\n socialMedia: allStrapiSocialMedia(filter: {locale: {eq: \"en\"}}) {\n nodes {\n ...socialMedia\n }\n }\n\n\n\n }\n`"],"names":["genericContentSection","sections","find","s","uuid","className","title","description","location","data","topNav","bottomNav","socialMedia","page","genericContentPage"],"sourceRoot":""}