{"version":3,"file":"component---src-pages-index-js-b6c76393cdb01e847708.js","mappings":"sIAyDA,IA9CY,WAAO,IAAD,IACVA,GAAOC,EAAAA,EAAAA,gBAAe,cAiBtBC,EAAM,UAAGF,EAAKG,KAAKC,oBAAb,aAAG,EAAwBF,OACjCG,EAAM,UAAGL,EAAKG,KAAKC,oBAAb,aAAG,EAAwBC,OAEvC,OACE,uBAAKC,UAAU,OACb,gBAAC,EAAAC,EAAD,CACED,UAAU,aACVE,OAAO,QACPC,QAAS,CAAC,OAAQ,OAAQ,QAC1BC,IAAI,4BACJC,MAAO,GACPC,OAAQ,GACRC,QAAS,GACTC,IAAI,kBARN,uBAUCZ,MAAAA,OAAA,EAAAA,EAAQa,OACP,uCACa,8BAASb,EAAOa,MAD7B,KAC6Cb,MAAAA,OAAA,EAAAA,EAAQc,UAAW,KADhE,IAGE,qBAAGC,KAAI,yBAAyBZ,MAAAA,OAAA,EAAAA,EAAQa,UAAR,KAAhC,yC,qHC3BV,EAdc,SAAC,GAAwB,IAAD,EAArBlB,EAAqB,EAArBA,KAAqB,EAAfmB,SACH,UAAAnB,EAAKG,KAAKC,oBAAV,SAAwBgB,MAC5BpB,EAAKqB,kBAAkBC,MAGrC,OACE,gBAAC,IAAD,KACE,gBAAC,IAAD,CAAKF,MAAM,SACZ,+CACA,sBAAIG,MAAO,CAACC,UAAU,GAAGC,aAAa,KAAtC,4G","sources":["webpack://Pogiff/./src/components/bio.js","webpack://Pogiff/./src/pages/index.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 * as React from \"react\"\nimport { useStaticQuery, graphql } from \"gatsby\"\nimport { StaticImage } from \"gatsby-plugin-image\"\n\nconst Bio = () => {\n const data = useStaticQuery(graphql`\n query BioQuery {\n site {\n siteMetadata {\n author {\n name\n summary\n }\n social {\n twitter\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 return (\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 * as React from \"react\"\nimport { Link, graphql } from \"gatsby\"\nimport Bio from \"../components/bio\"\nimport Layout from \"../components/layout/layout\"\nimport Post from '../components/post/post';\nimport Seo from \"../components/seo\"\n\nconst Index = ({ data, location }) => {\n const siteTitle = data.site.siteMetadata?.title || `Title`\n const posts = data.allMarkdownRemark.nodes;\n const pogiffDescription = ['“Words are dumb, Pogiff” We’re not sure what our Artificial Intelligence meant.']\n\n return (\n \n \n

What is a Pogiff?

\n

Who knows. Dadaists created the word, we’ve adopted it to describe the absurdity of this or anytime.*

\n
\n )\n}\n\nexport default Index\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 featuredImage{\n childImageSharp{\n fluid(maxWidth:800){\n ...GatsbyImageSharpFluid\n }\n }\n }\n }\n }\n }\n }\n`\n"],"names":["data","useStaticQuery","author","site","siteMetadata","social","className","S","layout","formats","src","width","height","quality","alt","name","summary","href","twitter","location","title","allMarkdownRemark","nodes","style","marginTop","marginBottom"],"sourceRoot":""}