{"version":3,"sources":["webpack:///./src/components/Card/Card.jsx","webpack:///./src/components/Card/CardTitle.jsx","webpack:///./src/components/Card/CardSubTitle.jsx","webpack:///./src/components/Card/CardText.jsx","webpack:///./src/pages/about.jsx"],"names":["Card","title","children","className","image","contentCenter","Container","Header","Title","Body","src","fluid","ImageWrapper","imageTop","top","StyledGatsbyImage","Image","Content","props","GatsbyImage","defaultProps","CardTitle","CardSubTitle","SubTitle","CardText","Text","Interests","InterestCard","About"],"mappings":"0SAMMA,EAAO,SAAC,GAAD,IAAGC,EAAH,EAAGA,MAAOC,EAAV,EAAUA,SAAUC,EAApB,EAAoBA,UAAWC,EAA/B,EAA+BA,MAAOC,EAAtC,EAAsCA,cAAtC,OACX,YAACC,EAAD,CAAWH,UAAWA,GACnBF,GACC,YAACM,EAAD,KACE,YAACC,EAAD,KAAQP,IAGZ,YAACQ,EAAD,KACIL,GAASA,EAAMM,KACdN,EAAMO,OACL,YAACC,EAAD,CAAcC,SAAUT,EAAMU,KAC3BV,EAAMO,MACL,YAACI,EAAD,CAAmBJ,MAAOP,EAAMO,QAEhC,YAACK,EAAD,CAAON,IAAKN,EAAMM,OAI1B,YAACO,EAAD,CAASZ,cAAeA,GAAgBH,MAKxCI,EAAS,gXAQTC,EAAM,0NAINE,EAAI,6GAGJD,EAAK,iIAGLI,EAAY,kMAKA,SAAAM,GAAK,OAAKA,EAAML,SAAW,OAAS,QALpC,2EASA,SAAAK,GAAK,OAAKA,EAAML,SAAW,OAAS,QATpC,KAYZG,EAAK,0GAILD,EAAoB,YAAOI,IAAP,sBAAH,uGAGjBF,EAAO,gFAIbjB,EAAKoB,aAAe,CAClBhB,MAAO,CACLU,KAAK,EACLJ,IAAK,KACLC,MAAO,OAgBIX,QClFAqB,EAJG,SAAC,GAAD,IAAGnB,EAAH,EAAGA,SAAUC,EAAb,EAAaA,UAAb,OAChB,YAAC,EAAD,CAAOA,UAAWA,GAAYD,IAK1BM,EAAK,4HCJIc,EAFM,SAAC,GAAD,IAAGpB,EAAH,EAAGA,SAAH,OAAkB,YAACqB,EAAD,KAAWrB,IAI5CqB,EAAQ,sMCFCC,EAFE,SAAC,GAAD,IAAGtB,EAAH,EAAGA,SAAH,OAAkB,YAACuB,EAAD,KAAOvB,IAIpCuB,EAAI,mT,uJC8DJC,EAAS,6HAITC,EAAe,YAAO3B,IAAP,sBAAH,uMAiBH4B,UA5ED,kBACZ,YAAC,IAAD,KACE,YAAC,IAAD,CAAK3B,MAAM,UACX,YAAC,IAAD,6EAGA,YAAC,IAAD,CAAMA,MAAM,gBACV,YAAC,IAAD,+VAQF,YAACyB,EAAD,KACE,YAACC,EAAD,KACE,YAAC,IAAD,MACA,YAAC,IAAD,sRAOF,YAACA,EAAD,KACE,YAAC,IAAD,MACA,YAAC,IAAD,0RAOF,YAACA,EAAD,KACE,YAAC,IAAD,MACA,YAAC,IAAD,iHAKF,YAACA,EAAD,CAActB,eAAe,GAC3B,YAAC,IAAD,MACA,YAAC,IAAD","file":"component---src-pages-about-jsx-14fb8295124ae2184dda.js","sourcesContent":["import React from \"react\"\nimport { any, string, shape, boolean, object } from \"prop-types\"\nimport styled from \"@emotion/styled\"\nimport tw from \"../../../tailwind\"\nimport GatsbyImage from \"gatsby-image\"\n\nconst Card = ({ title, children, className, image, contentCenter }) => (\n \n {title && (\n
\n {title}\n
\n )}\n \n {(image && image.src) ||\n (image.fluid && (\n \n {image.fluid ? (\n \n ) : (\n \n )}\n \n ))}\n {children}\n \n
\n)\n\nconst Container = styled.div`\n ${tw`flex flex-col shadow-md hover:shadow-lg rounded-tl-lg rounded-lg overflow-hidden`}\n transition: ease .2s;\n &:hover {\n transform: translateY(-0.05rem);\n }\n`\n\nconst Header = styled.div`\n ${tw`flex bg-teal text-white flex-1 rounded-tl-lg rounded-bl-lg rounded-br-full mr-32`}\n`\n\nconst Body = styled.div`\n ${tw`p-4 flex relative flex-wrap`}\n`\nconst Title = styled.h3`\n ${tw`m-0 p-2 rounded-tl-lg rounded-bl-lg `}\n`\nconst ImageWrapper = styled.div`\n ${tw`m-0 p-1 flex-shrink text-center`}\n flex-basis: 100%;\n @media screen and (min-width: 576px) {\n ${tw`text-left`}\n flex-basis: ${props => (props.imageTop ? \"100%\" : \"30%\")}\n }\n @media screen and (min-width: 768px) {\n ${tw`text-left`}\n flex-basis: ${props => (props.imageTop ? \"100%\" : \"20%\")}\n }\n`\nconst Image = styled.img`\n ${tw`max-w-xs max-h-xs m-0 w-full`}\n`\n\nconst StyledGatsbyImage = styled(GatsbyImage)`\n ${tw`max-w-xs max-h-xs m-0 w-full mx-auto`}\n`\nconst Content = styled.div`\n ${tw`p-2 w-full flex-1 ${props =>\n props.contentCenter ? \"text-center\" : \"text-left\"}`}\n`\nCard.defaultProps = {\n image: {\n top: false,\n src: null,\n fluid: null,\n },\n}\n\nCard.propTypes = {\n children: any,\n title: string,\n className: string,\n image: shape({\n top: boolean,\n src: string,\n fluid: object,\n }),\n contentCenter: boolean,\n}\n\nexport default Card\n","import React from \"react\"\nimport styled from \"@emotion/styled\"\nimport tw from \"../../../tailwind\"\n\nconst CardTitle = ({ children, className }) => (\n {children}\n)\n\nexport default CardTitle\n\nconst Title = styled.h3`\n ${tw`mb-0 text-center sm:text-left `}\n`\n","import React from \"react\"\nimport styled from \"@emotion/styled\"\nimport tw from \"../../../tailwind\"\n\nconst CardSubTitle = ({ children }) => {children}\n\nexport default CardSubTitle\n\nconst SubTitle = styled.h2`\n ${tw`text-center text-grey-dark font-light my-2 sm:text-left text-2xl`}\n`\n","import React from \"react\"\nimport styled from \"@emotion/styled\"\nimport tw from \"../../../tailwind\"\n\nconst CardText = ({ children }) => {children}\n\nexport default CardText\n\nconst Text = styled.p`\n ${tw`mb-2 text-center font-sans sm:text-left `}\n`\n","import React from \"react\"\nimport tw from \"../../tailwind\"\nimport styled from \"@emotion/styled\"\n\nimport Layout from \"../components/layout\"\nimport SEO from \"../components/seo\"\nimport {IntroText} from \"../components/Intro\"\nimport {Card, CardText} from \"../components/Card\"\nimport {\n GiGamepad,\n GiBeerStein,\n GiCoffeeMug,\n GiWeightLiftingDown,\n} from \"react-icons/gi\"\n\nconst About = () => (\n \n \n \n I also happen to be a real live human! Here are some things on that.\n \n \n \n Hey there, I'm Phil. I reside in Barrie Ontario with my partner, two\n toddlers, and two cats. We're a happy family, at least while my children\n still think im cool (not sure how long thats going to last). While I'm\n not spending time with them, I often enjoy playing video games, lifting\n weights at the gym, and drinking coffee and craft beers.\n \n \n \n \n \n \n I've been playing video games since I was a very young age, and is\n still a passtime that has stuck with me in adulthood, granted with\n much less time to spend with them. When i do find time, I'm generally\n a sucker for RPG's,action games or co-op games with my brothers.\n \n \n \n \n \n As long as I've been drinking (Age will remain unspecified), I've\n always enjoyed a beer, however in more recent years I've grown into\n the craft beer scene. So far I've found that I like a good sour or a\n stout. I like other stuff like IPA's too, just generally not AS much.\n \n \n \n \n \n Not much to say here. I like to drink coffee, I like the taste and it\n keeps me awake when I need to be.\n \n \n \n \n \n Fitness is important to me, and weight lifting in general is fun to\n me. It's very rewarding and getting better at moving heavy objects\n tickles something in my brain i guess. Small children have made it\n harder to keep up, but it's something I always try to squeeze in to me\n schedule, especially while I have a desk job.\n \n \n \n \n)\n\nconst Interests = styled.div`\n ${tw`flex flex-row flex-wrap justify-between`}\n`\n\nconst InterestCard = styled(Card)`\n svg {\n font-size: 5rem;\n }\n margin: 1rem 0;\n flex-basis: 100%;\n @media screen and (min-width: 576px) {\n flex-basis: 48%;\n }\n @media screen and (min-width: 920px) {\n flex-basis: 48%;\n }\n svg {\n margin: auto;\n }\n`\n\nexport default About\n"],"sourceRoot":""}