{"version":3,"file":"component---src-pages-blog-js-72c610b599848e8ac043.js","mappings":"2JAsEA,IAzDY,WAAO,IAAD,QACVA,GAAOC,EAAAA,EAAAA,gBAAe,cA0BtBC,EAAM,UAAGF,EAAKG,KAAKC,oBAAb,aAAG,EAAwBF,OAGjCG,GAFM,UAAGL,EAAKG,KAAKC,oBAAb,OAAG,EAAwBE,OAExBN,MAAAA,GAAH,UAAGA,EAAMK,cAAT,iBAAG,EAAcE,uBAAjB,aAAG,EAA+BC,OAE9C,OACE,uBAAKC,UAAU,OACZJ,GACC,gBAAC,IAAD,CACEG,MAAOH,EACPK,KAAKR,MAAAA,OAAA,EAAAA,EAAQS,OAAR,GACLF,UAAU,aACVG,SAAU,CACRC,aAAa,UAIlBX,MAAAA,OAAA,EAAAA,EAAQS,OACP,uCACa,8BAAST,EAAOS,MAD7B,KAC6CT,MAAAA,OAAA,EAAAA,EAAQY,UAAW,S,6CCxBxE,IAhCe,SAAC,GAAmC,IAAjCC,EAAgC,EAAhCA,SAAUC,EAAsB,EAAtBA,MAAOC,EAAe,EAAfA,SAE3BC,EADQ,MACKH,EAASI,SAiB5B,OAdID,EAEA,sBAAIT,UAAU,gBACZ,gBAAC,EAAAW,KAAD,CAAMC,GAAG,KAAKL,IAKhB,gBAAC,EAAAI,KAAD,CAAMX,UAAU,mBAAmBY,GAAG,KACnCL,GAML,uBAAKP,UAAU,iBAAiB,oBAAmBS,GAEjD,4BAAOD,M,2FCoDb,UApEkB,SAAC,GAAwB,IAAD,MAIhB,IAJLjB,EAAqB,EAArBA,KAAMe,EAAe,EAAfA,SAEnBO,GADY,UAAAtB,EAAKG,KAAKC,oBAAV,SAAwBY,MAC5BhB,EAAKuB,kBAAkBC,OAErC,OAAqB,IAAjBF,EAAMG,OAEN,gBAAC,KAAD,KAEE,gBAAC,IAAD,CACET,MAAM,YACNU,QAAS1B,MAAAA,GAAF,UAAEA,EAAM2B,mBAAR,iBAAE,EAAmBpB,uBAArB,aAAE,EAAoCC,MAAMoB,IACnDC,YAAY,mEACZC,IAAKf,EAASgB,OAAShB,EAASI,WAGlC,uLAUJ,gBAAC,KAAD,KACE,gBAAC,IAAD,CAAQJ,SAAUA,EAAUC,MAAM,kBAEhC,gBAAC,IAAD,CACEA,MAAM,YACNU,QAAS1B,MAAAA,GAAF,UAAEA,EAAM2B,mBAAR,iBAAE,EAAmBpB,uBAArB,aAAE,EAAoCC,MAAMoB,IACnDC,YAAY,mEACZC,IAAKf,EAASgB,OAAShB,EAASI,WAGlC,sBAAIa,MAAO,CAAEC,UAAU,SACpBX,EAAMY,KAAI,SAACC,GACV,IAAMnB,EAAQmB,EAAKC,YAAYpB,OAASmB,EAAKE,OAAOC,KAEpD,OACE,sBAAIC,IAAKJ,EAAKE,OAAOC,MACnB,2BAAS7B,UAAU,iBAAiB+B,WAAS,EAACC,SAAS,6BACrD,8BACE,sBAAIT,MAAO,CAAEU,WAAY,QACvB,gBAAC,EAAAtB,KAAD,CAAMC,GAAI,QAAUc,EAAKE,OAAOC,KAAMK,SAAS,OAC7C,wBAAMA,SAAS,YAAY3B,KAG/B,6BAAQmB,EAAKC,YAAYQ,OAE3B,+BACE,qBACEC,wBAAyB,CACvBC,OAAQX,EAAKC,YAAYP,aAAeM,EAAKY,SAE/CJ,SAAS","sources":["webpack://liftology-website/./src/components/bio.js","webpack://liftology-website/./src/components/layout.js","webpack://liftology-website/./src/pages/blog.js"],"sourcesContent":["/**\n * Bio component that queries for data\n * with Gatsby's useStaticQuery component\n *\n * See: https://www.gatsbyjs.com/docs/use-static-query/\n */\n\nimport React from \"react\"\nimport { useStaticQuery, graphql } from \"gatsby\"\nimport Image from \"gatsby-image\"\n\n// avatar: file(absolutePath: { regex: \"/profile-pic.jpg/\" }) {\n\nconst Bio = () => {\n const data = useStaticQuery(graphql`\n query BioQuery {\n avatar: file(\n absolutePath: { regex: \"/mitch-standing-arms-crossed-blue-20200506_152253-2-778x778.jpg/\" }\n ) {\n childImageSharp {\n fixed(width: 50, height: 50, quality: 95) {\n ...GatsbyImageSharpFixed\n }\n }\n }\n site {\n siteMetadata {\n author {\n name\n summary\n }\n social {\n twitterId\n }\n }\n }\n }\n `)\n\n // Set these values by editing \"siteMetadata\" in gatsby-config.js\n const author = data.site.siteMetadata?.author\n const social = data.site.siteMetadata?.social\n\n const avatar = data?.avatar?.childImageSharp?.fixed\n\n return (\n
\n {avatar && (\n \n )}\n {author?.name && (\n

\n Written by {author.name} {author?.summary || null}\n {/* {` `}\n \n You should follow them on Twitter\n */}\n

\n )}\n
\n )\n}\n\nexport default Bio\n","import React from \"react\"\nimport { Link } from \"gatsby\"\n\nconst Layout = ({ location, title, children }) => {\n const rootPath = `${__PATH_PREFIX__}/`\n const isRootPath = location.pathname === rootPath\n let header\n\n if (isRootPath) {\n header = (\n

\n {title}\n

\n )\n } else {\n header = (\n \n {title}\n \n )\n }\n\n return (\n
\n {/*
{header}
*/}\n
{children}
\n {/* */}\n
\n )\n}\n\nexport default Layout\n","import React from \"react\"\nimport { Link, graphql } from \"gatsby\"\n\nimport { PageLayout } from \"../components/PageLayout\"\n\nimport Bio from \"../components/bio\"\nimport Layout from \"../components/layout\"\nimport SEO from \"../components/seo\"\n\nconst BlogIndex = ({ data, location }) => {\n const siteTitle = data.site.siteMetadata?.title || `Title`\n const posts = data.allMarkdownRemark.nodes\n\n if (posts.length === 0) {\n return (\n \n {/* */}\n \n {/* */}\n

\n No blog posts found. Add markdown posts to \"content/blog\" (or the directory you specified\n for the \"gatsby-source-filesystem\" plugin in gatsby-config.js).\n

\n {/*
*/}\n
\n )\n }\n\n return (\n \n \n {/* */}\n \n {/* */}\n
    \n {posts.map((post) => {\n const title = post.frontmatter.title || post.fields.slug\n\n return (\n
  1. \n
    \n
    \n

    \n \n {title}\n \n

    \n {post.frontmatter.date}\n
    \n
    \n \n
    \n
    \n
  2. \n )\n })}\n
\n
\n
\n )\n}\n\nexport default BlogIndex\n\nexport const pageQuery = graphql`\n query {\n site {\n siteMetadata {\n title\n }\n }\n allMarkdownRemark(sort: { fields: [frontmatter___date], order: DESC }) {\n nodes {\n excerpt\n fields {\n slug\n }\n frontmatter {\n date(formatString: \"MMMM DD, YYYY\")\n title\n description\n }\n }\n }\n socialImage: file(\n absolutePath: { regex: \"/mitch-alex-bunker-wall-logo-social-1200x628.jpg/\" }\n ) {\n childImageSharp {\n fixed(width: 778, height: 778, quality: 95) {\n ...GatsbyImageSharpFixed_withWebp\n }\n }\n }\n }\n`\n"],"names":["data","useStaticQuery","author","site","siteMetadata","avatar","social","childImageSharp","fixed","className","alt","name","imgStyle","borderRadius","summary","location","title","children","isRootPath","pathname","Link","to","posts","allMarkdownRemark","nodes","length","ogImage","socialImage","src","description","url","origin","style","listStyle","map","post","frontmatter","fields","slug","key","itemScope","itemType","fontWeight","itemProp","date","dangerouslySetInnerHTML","__html","excerpt"],"sourceRoot":""}