{"version":3,"file":"component---src-pages-index-tsx-0b382f5bd294dec0ab4e.js","mappings":"2IAwFA,IA7EY,WAAO,IAAD,MACRA,GAAOC,EAAAA,EAAAA,gBAAe,cAwBtBC,EAAM,UAAGF,EAAKG,KAAKC,oBAAb,aAAG,EAAwBF,OACjCG,EAAI,UAAGL,EAAKG,KAAKC,oBAAb,aAAG,EAAwBC,KAC/BC,EAAW,UAAGN,EAAKG,KAAKC,oBAAb,aAAG,EAAwBE,YAE5C,OACI,gCACI,uBAAKC,UAAU,QACVL,MAAAA,OAAA,EAAAA,EAAQM,OACL,0BACI,0CACiB,8BAASN,EAAOM,MAAe,KAC3CN,MAAAA,OAAA,EAAAA,EAAQO,UAAW,MAExB,2DAEI,8BACI,qBAAGC,OAAQ,SAAUC,KAAMT,EAAOU,cAC7B,IACAV,EAAOW,YAIpB,qFAGI,8BACI,qBAAGH,OAAQ,SAAUC,KAAMN,EAAKS,MAC3B,IACAT,EAAKG,KAAM,MANxB,KASOH,EAAKC,eAgBxB,yBAAIA,M,gFCnFhB,EAAe,IAA0B,sD,8BCmCzC,EA5BkB,SAAC,GAAwB,IAAD,EAArBN,EAAqB,EAArBA,KAAMa,EAAe,EAAfA,SACL,UAAAb,EAAKG,KAAKC,oBAAV,SAAwBW,MAE1C,OACI,gBAAC,IAAD,CAAQF,SAAUA,EAAUE,MAAO,aAC/B,gBAAC,IAAD,CAAKA,MAAM,cACX,gBAAC,IAAD,MAEA,2BAEA,uBACIC,MAAO,CACHC,QAAS,OACTC,UAAW,SACXC,eAAgB,SAChBC,KAAM,IACNC,cAAe,WAEnB,0DACA,kDACA,uBAAKL,MAAO,CAAEM,SAAU,UACpB,uBAAKC,IAAKC,EAAYC,IAAI","sources":["webpack://personal_blog/./src/components/bio.tsx","webpack://personal_blog/./src/images/cooking.gif","webpack://personal_blog/./src/pages/index.tsx"],"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'\n// import { 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 location\n locationLink\n }\n work {\n name\n link\n description\n }\n social {\n username\n }\n description\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 work = data.site.siteMetadata?.work\n const description = data.site.siteMetadata?.description\n\n return (\n <>\n
\n {author?.name && (\n \n )}\n {/* */}\n
\n

{description}

\n \n )\n}\n\nexport default Bio\n","export default __webpack_public_path__ + \"static/cooking-1c4524a2372a56002928ba43bb57efcd.gif\";","import * as React from 'react'\nimport { graphql } from 'gatsby'\nimport CookingGIF from 'images/cooking.gif'\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\n return (\n \n \n \n\n
\n\n \n

Something good is cooking 😋

\n

please be patient 😌

\n
\n \"cooking\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 }\n`\n\n/*\n// // import { Link, graphql } from 'gatsby'\n\n// import Bio from 'components/bio'\n// import Layout from 'components/layout'\n// import Seo from 'components/seo'\n// import CookingGIF from 'images/cooking.gif'\n\n// const BlogIndex = ({ data, location }): JSX.Element => {\n// const siteTitle = data.site.siteMetadata?.title || `Title`\n// // const posts = data.allMarkdownRemark.nodes\n\n// return (\n// \n// \n// \n\n//
\n// \n//

Something good is cooking 😋

\n//

please be patient 😌

\n//
\n// \"cooking\n//
\n// \n//
\n// )\n\n// // return (\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// // \n// // {title}\n// // \n// // \n// //

    \n// // {post.frontmatter.date}\n// //
    \n// //
    \n// // \n// //
    \n// // \n// //
  2. \n// // )\n// // })}\n// //
\n// //
\n// // )\n// }\n\n// export default BlogIndex\n\n// // export 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// // }\n// // `\n*/\n"],"names":["data","useStaticQuery","author","site","siteMetadata","work","description","className","name","summary","target","href","locationLink","location","link","title","style","display","textAlign","justifyContent","flex","flexDirection","fontSize","src","CookingGIF","alt"],"sourceRoot":""}