{"version":3,"file":"component---src-pages-index-js-a01061c965635c066070.js","mappings":"+IAOA,MAAMA,GAAsBC,EAAAA,EAAAA,SAAOC,EAAAA,IAAKC,WAAA,CAAAC,YAAA,6BAAAC,YAAA,gBAAZJ,CAAY,4BAsBxC,UAlBkBK,IAAA,IAAC,SAAEC,EAAQ,KAAEC,GAAMF,EAAA,OACnCG,EAAAA,QAAAA,cAACC,EAAAA,GAAM,CAACH,SAAUA,GAChBE,EAAAA,QAAAA,cAACT,EAAmB,CAACW,UAAU,cAC7BF,EAAAA,QAAAA,cAACG,EAAAA,GAAI,CAACJ,KAAMA,EAAKK,KAAKC,QACtBL,EAAAA,QAAAA,cAACM,EAAAA,GAAK,CAACP,KAAMA,EAAKQ,MAAMF,QACxBL,EAAAA,QAAAA,cAACQ,EAAAA,GAAI,CAACT,KAAMA,EAAKU,KAAKJ,QACtBL,EAAAA,QAAAA,cAACU,EAAAA,GAAQ,CAACX,KAAMA,EAAKY,SAASN,QAC9BL,EAAAA,QAAAA,cAACY,EAAAA,GAAQ,CAACb,KAAMA,EAAKc,SAASR,QAC9BL,EAAAA,QAAAA,cAACc,EAAAA,GAAO,CAACf,KAAMA,EAAKgB,QAAQV,SAEvB,C","sources":["webpack://v4/./src/pages/index.js"],"sourcesContent":["import React from 'react';\nimport { graphql } from 'gatsby';\nimport PropTypes from 'prop-types';\nimport { Layout, Hero, About, Jobs, Featured, Projects, Contact } from '@components';\nimport styled from 'styled-components';\nimport { Main } from '@styles';\n\nconst StyledMainContainer = styled(Main)`\n counter-reset: section;\n`;\n\nconst IndexPage = ({ location, data }) => (\n \n \n \n \n \n \n \n \n \n \n);\n\nIndexPage.propTypes = {\n location: PropTypes.object.isRequired,\n data: PropTypes.object.isRequired,\n};\n\nexport default IndexPage;\n\nexport const pageQuery = graphql`\n {\n hero: allMarkdownRemark(filter: { fileAbsolutePath: { regex: \"/hero/\" } }) {\n edges {\n node {\n frontmatter {\n title\n name\n subtitle\n contactText\n }\n html\n }\n }\n }\n about: allMarkdownRemark(filter: { fileAbsolutePath: { regex: \"/about/\" } }) {\n edges {\n node {\n frontmatter {\n title\n avatar {\n childImageSharp {\n fluid(maxWidth: 700, quality: 90, traceSVG: { color: \"#64ffda\" }) {\n ...GatsbyImageSharpFluid_withWebp_tracedSVG\n }\n }\n }\n skills\n }\n html\n }\n }\n }\n jobs: allMarkdownRemark(\n filter: { fileAbsolutePath: { regex: \"/jobs/\" } }\n sort: { fields: [frontmatter___date], order: DESC }\n ) {\n edges {\n node {\n frontmatter {\n title\n company\n location\n range\n url\n }\n html\n }\n }\n }\n featured: allMarkdownRemark(\n filter: { fileAbsolutePath: { regex: \"/featured/\" } }\n sort: { fields: [frontmatter___date], order: DESC }\n ) {\n edges {\n node {\n frontmatter {\n title\n cover {\n childImageSharp {\n fluid(maxWidth: 700, quality: 90, traceSVG: { color: \"#64ffda\" }) {\n ...GatsbyImageSharpFluid_withWebp_tracedSVG\n }\n }\n }\n tech\n github\n external\n }\n html\n }\n }\n }\n projects: allMarkdownRemark(\n filter: {\n fileAbsolutePath: { regex: \"/projects/\" }\n frontmatter: { showInProjects: { ne: false } }\n }\n sort: { fields: [frontmatter___date], order: DESC }\n ) {\n edges {\n node {\n frontmatter {\n title\n tech\n github\n external\n }\n html\n }\n }\n }\n contact: allMarkdownRemark(filter: { fileAbsolutePath: { regex: \"/contact/\" } }) {\n edges {\n node {\n frontmatter {\n title\n }\n html\n }\n }\n }\n }\n`;\n"],"names":["StyledMainContainer","styled","Main","withConfig","displayName","componentId","_ref","location","data","React","Layout","className","Hero","hero","edges","About","about","Jobs","jobs","Featured","featured","Projects","projects","Contact","contact"],"sourceRoot":""}