-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomponent---src-pages-about-js-4e83183a9791021196c3.js.map
1 lines (1 loc) · 4.5 KB
/
component---src-pages-about-js-4e83183a9791021196c3.js.map
1
{"version":3,"sources":["webpack:///./src/pages/about.js"],"names":["AboutPage","render","data","this","props","title","className","allCertBadgesJson","edges","map","edge","index","certBadgeItem","node","key","image","childImageSharp","fluid","alt","src","publicURL","description","React","Component"],"mappings":"2MAUMA,G,4GACFC,OAAA,WACI,IAAQC,EAASC,KAAKC,MAAdF,KAER,OACI,kBAAC,IAAD,KACI,kBAAC,IAAD,CAAMG,MAAM,UACZ,kBAAC,IAAD,KACI,yBAAKC,UAAU,eACX,yBAAKA,UAAU,YACX,iCAEI,6BAFJ,sDAKA,4PAEI,6BAFJ,IAEW,6BAFX,qMAQR,yBAAKA,UAAU,cACX,uDACA,yBAAKA,UAAU,aAEPJ,EAAKK,kBAAkBC,MAAMC,KAAI,SAACC,EAAMC,GACpC,IAAMC,EAAgBF,EAAKG,KAE3B,OACI,yBAAKC,IAAKH,EAAOL,UAAU,qBACvB,yBAAKA,UAAU,gBAELM,EAAcG,OAAWH,EAAcG,MAAMC,gBAC7C,kBAAC,IAAD,CAAKC,MAAOL,EAAcG,MAAMC,gBAAgBC,MAC9CC,IAAK,gCACP,yBAAKC,IAAKP,EAAcG,MAAMK,UAAWF,IAAK,iCAGxD,uBAAGZ,UAAU,iBACRM,EAAcS,sB,GAzCvCC,IAAMC,YAuDfvB,a","file":"component---src-pages-about-js-4e83183a9791021196c3.js","sourcesContent":["import React from 'react'\n\nimport Container from '../components/container'\nimport Head from '../components/head'\nimport Fade from 'react-reveal/Fade'\nimport Img from 'gatsby-image'\nimport { graphql } from 'gatsby'\n\nimport '../styles/about.css'\n\nclass AboutPage extends React.Component {\n render () {\n const { data } = this.props\n\n return (\n <Container>\n <Head title=\"About\"/>\n <Fade>\n <div className=\"heroSection\">\n <div className=\"heroCont\">\n <h2>\n 👋\n <br />\n I'm Akshansh, a developer and a life-long student.\n </h2>\n <p>\n I started my coding journey in college, subsequently working as a freelance developer. I've worked internships and part-times, and with clients to oversee sprints and shipped experiences from envisioning through to launch.\n <br /> <br />\n I enjoy challenges and solving business and user problems by interfacing digital products. I want to spend my time developing solutions to make measureable differences in the lives of others.\n </p>\n </div>\n </div>\n \n <div className=\"certBadges\">\n <h2>Certifications & Badges</h2>\n <div className=\"imageCont\">\n {\n data.allCertBadgesJson.edges.map((edge, index) => {\n const certBadgeItem = edge.node\n \n return (\n <div key={index} className=\"certBadgeItemCont\">\n <div className=\"certBadgeImg\">\n {\n !!certBadgeItem.image && !!certBadgeItem.image.childImageSharp\n ? <Img fluid={certBadgeItem.image.childImageSharp.fluid}\n alt={\"Certification / Badge Image\"} />\n : <img src={certBadgeItem.image.publicURL} alt={\"Certification / Badge Image\"} />\n }\n </div>\n <p className=\"certBadgeDesc\">\n {certBadgeItem.description}\n </p>\n </div>\n )\n })\n }\n </div>\n </div>\n </Fade>\n </Container>\n )\n }\n}\n\nexport default AboutPage\n\n\nexport const certBadgesQuery = graphql`\n query {\n allCertBadgesJson {\n edges {\n node {\n description\n image {\n childImageSharp {\n fluid {\n ...GatsbyImageSharpFluid\n }\n }\n }\n }\n }\n }\n }\n`"],"sourceRoot":""}