{"version":3,"sources":["webpack:///./src/components/Subscribe.js","webpack:///./src/components/AboutHead.js","webpack:///./src/components/About.js","webpack:///./src/pages/about.js"],"names":["Subscribe","useState","emailValue","setEmail","nameValue","setName","returnMessage","setReturnMessage","className","styles","subscribeContainer","id","subscribeTitle","subscribeHead","href","target","rel","subscribeMsg","subscribeForm","placeholder","type","name","value","onChange","e","onClick","email","fetch","method","headers","body","JSON","stringify","then","catch","err","console","log","subscribeButton","return","AboutHead","aboutHead","avatar","src","config","userAvatar","replace","alt","userName","About","aboutWrapper","footerDetails","footerList","AboutPage","isDarkTheme","title","siteTitle"],"mappings":"wMA8DeA,EA1DG,WAAO,IAAD,EACSC,mBAAS,IAAjCC,EADe,KACHC,EADG,OAEOF,mBAAS,IAA/BG,EAFe,KAEJC,EAFI,OAGoBJ,mBAAS,IAA5CK,EAHe,KAGAC,EAHA,KA0BtB,OACE,yBAAKC,UAAWC,IAAOC,mBAAoBC,GAAG,eAC5C,yBAAKH,UAAWC,IAAOG,gBACrB,wBAAIJ,UAAWC,IAAOI,eACpB,uBAAGC,KAAK,+CAA+CC,OAAO,SAASC,IAAI,uBAAsB,gDAEnG,wBAAIR,UAAWC,IAAOQ,cAAtB,iCAEF,yBAAKT,UAAWC,IAAOS,eACnB,2BACEC,YAAY,QACZC,KAAK,QACLC,KAAK,gBACLV,GAAG,eACHW,MAAOpB,EACPqB,SAAU,SAACC,GAAD,OAAOrB,EAASqB,EAAET,OAAOO,UAErC,2BACEH,YAAY,wBACZC,KAAK,OACLC,KAAK,qBACLV,GAAG,oBACHW,MAAOlB,EACPmB,SAAU,SAACC,GAAD,OAAOnB,EAAQmB,EAAET,OAAOO,UAEpC,4BAAQG,QAAS,kBA9CFC,EA8CsBxB,EA9CfmB,EA8C2BjB,OA7CvDuB,MAAM,2DAA4D,CAC9DC,OAAQ,OACRC,QAAS,CACL,eAAgB,oBAEpBC,KAAMC,KAAKC,UAAU,CACjB,MAASN,EACT,KAAQL,MAGfY,MAAK,WACF1B,EAAiB,cAAcL,EAAf,yEAChBC,EAAS,IACTE,EAAQ,OAEX6B,OAAM,SAACC,GACJC,QAAQC,IAAIF,MAjBI,IAACT,EAAOL,GA8CuCb,UAAWC,IAAO6B,gBAAiBlB,KAAK,SAASC,KAAK,oBAAoBV,GAAG,iBAA1I,cAEJ,yBAAKH,UAAWC,IAAO8B,QAASjC,K,iCCrCvBkC,EAhBG,kBAChB,yBAAKhC,UAAWC,IAAOgC,WACpB,yBACGjC,UAAWC,IAAOiC,OAClBC,IAAKC,IAAOC,WAAWC,QAAQ,SAAU,IACzCC,IAAKH,IAAOI,WAEd,4CAGA,yG,qBC+DSC,EAvED,kBACZ,yBAAKzC,UAAWC,IAAOyC,cACrB,kBAAC,EAAD,MACA,6BACI,uDACA,8KAKA,oQAMJ,6BACE,kEACE,qKAIA,kIAEe,uBAAGnC,OAAO,SAASC,IAAI,sBAAsBF,KAAK,iDAAlD,aAFf,iDAKA,oTAOJ,6BACE,0DACA,4BACE,4BACE,uBAAGA,KAAK,oCAAoCC,OAAO,SAASC,IAAI,uBAAsB,kDADxF,2DAE0D,uBAAGF,KAAK,oCAAoCC,OAAO,SAASC,IAAI,uBAAhE,kBAF1D,+CAIA,4BACE,uBAAGF,KAAK,mCAAkC,8CAD5C,uIAKA,4BACE,uBAAGA,KAAK,sCAAqC,+CAD/C,yMAKA,6JAMJ,kBAAC,EAAD,MACA,wBAAIN,UAAWC,IAAO0C,eACpB,wBAAI3C,UAAWC,IAAO2C,YACpB,qCACA,4DAEF,wBAAI5C,UAAWC,IAAO2C,YACpB,0CACA,uECxDOC,UATG,kBAChB,kBAAC,IAAD,CAAaC,aAAW,GACtB,8BACE,kBAAC,IAAD,CAAQC,MAAK,WAAaX,IAAOY,YACjC,kBAAC,EAAD","file":"component---src-pages-about-js-f7e101de6f732aa3bc0f.js","sourcesContent":["import React, { useState } from 'react'\nimport styles from './Subscribe.module.scss'\nimport config from '../../data/SiteConfig'\n\nconst Subscribe = () => {\n const [emailValue, setEmail] = useState(\"\");\n const [nameValue, setName] = useState(\"\");\n const [returnMessage, setReturnMessage] = useState(\"\");\n\n const addSubscriber = (email, name) => {\n fetch('https://aparnajoshi.netlify.app/.netlify/functions/index', {\n method: 'POST', \n headers: {\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify({\n \"email\": email,\n \"name\": name\n })\n })\n .then(() => {\n setReturnMessage(`The email: ${emailValue} has been added to subscribers list. Please confirm your subscription`);\n setEmail(\"\");\n setName(\"\");\n })\n .catch((err) => {\n console.log(err)\n })\n }\n\n return(\n
\n
\n

\n Newsletter\n

\n

Subscribe to my mailing list

\n
\n
\n setEmail(e.target.value)}\n />\n setName(e.target.value)}\n />\n \n
\n
{returnMessage}
\n
\n)\n }\n\nexport default Subscribe\n","import React from 'react'\nimport config from '../../data/SiteConfig'\nimport styles from './AboutHead.module.scss'\n\nconst AboutHead = () => (\n
\n \n

\n APARNA JOSHI\n

\n \n Software Engineer, Blogger, and Artist in Bangalore, Karnataka, India\n \n
\n)\n\nexport default AboutHead\n","import React from 'react'\nimport Subscribe from './Subscribe'\nimport AboutHead from './AboutHead'\nimport styles from './About.module.scss'\n\n\nconst About = () => (\n
\n \n
\n

What do I generally do?

\n

\n Hi there, My name is Aparna Joshi. \n I am a software engineer based out of Bangalore. \n I completed my Bachelor`s in Information Science from RVCE.\n

\n

\n I enjoy working with front-end technologies. Though I am supposed to be a coding alien 👽, \n I share an immense passion for physics and mathematics. \n I blog about concepts related to science, technology, programming and psychology.\n

\n
\n
\n

Some more random stuff about me 😉

\n

\n I am a huge anime fan. I get mind-numbingly addicted to a new series and \n live my life in the virtual world until I finish watching it. \n

\n

\n Some people sing, some people dance, I, on the other hand, sketch like I am in France.\n Follow me on Instagram.\n I also go by the name `Miss.Katana` online. \n

\n

\n I am a great advocate of sports and fitness. Though I try not to count every calorie I eat,\n I try to maintain a healthy diet and regular workouts.\n Last but not the least, I love coffee. DM me with the details given below and I would love \n to chat with you over a cup of coffee.\n

\n
\n
\n

Get in touch with me 🙋‍♀️

\n
    \n
  1. \n Twitter: 🕊️ \n If you`ve got a short question or message, please tweet @aparna_joshi_ and I`ll get back to you as soon as I can.\n
  2. \n
  3. \n Email: 📧\n If you have any longer questions or suggestions for my upcoming articles, please email me.\n I will get back to you over the weekend.\n
  4. \n
  5. \n Github: 🤖\n I am not very active on Github except for office related work. However, if you have any interesting projects and want to collaborate with me \n to develop front-end, I will be more then happy to help.\n
  6. \n
  7. \n If you are my friend or a formal acquaintance, please meet me in person, I wouldn`t mind having a cup of coffee with you\n 😛\n
  8. \n
\n
\n \n
    \n
  • \n
    WORK
    \n Citrix R&D India Pvt Ltd.\n
  • \n
  • \n
    EDUCATION
    \n B.E in Information Science, RVCE.\n
  • \n
\n
\n)\n\nexport default About\n","import React from 'react'\nimport Helmet from 'react-helmet'\nimport BlankLayout from '../layout/layout'\nimport About from '../components/About'\nimport config from '../../data/SiteConfig'\n\nconst AboutPage = () => (\n \n
\n \n \n
\n
\n)\n\nexport default AboutPage\n"],"sourceRoot":""}