{"version":3,"file":"component---src-pages-about-js-40e11e60c8e733afb7b5.js","mappings":"6IAYA,SAASA,EAAT,GAAkD,IAAD,IAAlCC,EAAkC,EAAlCA,YAAaC,EAAqB,EAArBA,KAAMC,EAAe,EAAfA,KAAMC,EAAS,EAATA,MAC9BC,GAASC,EAAAA,EAAAA,gBAAe,YAAxBD,KAcFE,EAAkBN,GAAeI,EAAKG,aAAaP,YACnDQ,EAAY,UAAGJ,EAAKG,oBAAR,aAAG,EAAmBJ,MAExC,OACE,wBAAC,IAAD,CACEM,eAAgB,CACdR,KAAAA,GAEFE,MAAOA,EACPO,cAAeF,EAAY,QAAWA,EAAiB,KACvDN,KAAM,CACJ,CACES,KAAK,cACLC,QAASN,GAEX,CACEO,SAAS,WACTD,QAAST,GAEX,CACEU,SAAS,iBACTD,QAASN,GAEX,CACEO,SAAS,UACTD,QAAQ,WAEV,CACED,KAAK,eACLC,QAAQ,WAEV,CACED,KAAK,kBACLC,SAAS,UAAAR,EAAKG,oBAAL,eAAmBO,SAAnB,IAEX,CACEH,KAAK,gBACLC,QAAST,GAEX,CACEQ,KAAK,sBACLC,QAASN,IAEXS,OAAOb,KAKfH,EAAIiB,aAAe,CACjBf,KAAK,KACLC,KAAM,GACNF,YAAY,IAUd,O,8DCtDA,UA9BkB,SAAC,GAAD,EAAGiB,KAAH,OAChB,wBAAC,IAAD,KACE,wBAAC,IAAD,CAAKd,MAAM,UACX,+BAAKe,UAAU,mCACb,8BAAIC,MAAM,kBAAV,YACA,6BAAGA,MAAM,SAAT,wJAKA,6BAAGA,MAAM,SAAT,iaAQA,6BAAGA,MAAM,SAAT,gEAGA,6BAAGA,MAAM,SAAT","sources":["webpack://portfolio/./src/components/seo.js","webpack://portfolio/./src/pages/about.js"],"sourcesContent":["/**\n * SEO component that queries for data with\n * Gatsby's useStaticQuery React hook\n *\n * See: https://www.gatsbyjs.com/docs/use-static-query/\n */\n\nimport React from \"react\"\nimport PropTypes from \"prop-types\"\nimport { Helmet } from \"react-helmet\"\nimport { useStaticQuery, graphql } from \"gatsby\"\n\nfunction SEO({ description, lang, meta, title }) {\n const { site } = useStaticQuery(\n graphql`\n query {\n site {\n siteMetadata {\n title\n description\n author\n }\n }\n }\n `\n )\n\n const metaDescription = description || site.siteMetadata.description\n const defaultTitle = site.siteMetadata?.title\n\n return (\n \n )\n}\n\nSEO.defaultProps = {\n lang: `en`,\n meta: [],\n description: ``,\n}\n\nSEO.propTypes = {\n description: PropTypes.string,\n lang: PropTypes.string,\n meta: PropTypes.arrayOf(PropTypes.object),\n title: PropTypes.string.isRequired,\n}\n\nexport default SEO\n","import React from \"react\"\nimport Layout from \"../components/layout\"\nimport SEO from \"../components/seo\"\n\nconst AboutPage = ({ data }) => (\n \n \n
\n

About Me

\n

\n I'm a developer, hacker, and designer all packed into one. I'm currently\n focused on blockchain projects and working on the decentralized web\n (web3).\n

\n

\n I grew up in Mullica Hill, New Jersey where I first became introduced to\n computers through my father. As I grew up I was a huge fan of online\n video games like Runescape, Age of Empires, and League of Legends. While\n playing these games I always wondered how things like bots, DDoS\n attacks, and private servers worked. This lead me down the path of\n getting a formal computer science education at Rutgers University.\n

\n

\n In 2014 I wrote my first line of code and never looked back.\n

\n

\n When I'm not working you can catch me playing video games with friends,\n producing music, hitting the gym, or cooking a delicious meal (sesame\n chicken anyone?).\n

\n
\n
\n)\n\nexport default AboutPage\n"],"names":["SEO","description","lang","meta","title","site","useStaticQuery","metaDescription","siteMetadata","defaultTitle","htmlAttributes","titleTemplate","name","content","property","author","concat","defaultProps","data","className","class"],"sourceRoot":""}