{"version":3,"sources":["webpack://switch-website/./src/images/about/circle.png","webpack://switch-website/./src/components/about/CircleBackground.js","webpack://switch-website/./src/components/common/SEO.js","webpack://switch-website/./src/helpers/hooks/useSiteMetaData.js","webpack://switch-website/./src/images/clickables/diagonal_arrow.svg","webpack://switch-website/./src/images/about/contact/background-mobile.png","webpack://switch-website/./src/images/about/contact/background.png"],"names":["circleHeightMultiplier","colors","circle","maxWidth","SEO","title","ogTitle","description","image","isArticle","lang","pathname","useLocation","siteMetadata","useSiteMetadata","defaultTitle","titleTemplate","defaultDescription","defaultImage","siteUrl","seo","url","Helmet","name","content","property","defaultProps","useStaticQuery","site","React","DiagonalArrow","props","createElement","module","exports","default"],"mappings":"iLAAA,EAAe,IAA0B,qDCUnCA,EADmB,KACyB,IAsBlD,GAhBsB,wHAKJC,iBALI,QAKsBC,EALtB,sEAOLC,KAPK,0BAQKH,EARL,qBASCG,KATD,QASiBH,EATjB,O,2FCRtB,SAASI,EAAT,GAAkG,IAApFC,EAAmF,EAAnFA,MAAmF,IAA5EC,eAA4E,MAAlE,KAAkE,EAA5DC,EAA4D,EAA5DA,YAA4D,IAA/CC,aAA+C,MAAvC,KAAuC,MAAjCC,iBAAiC,aAAdC,YAAc,MAAP,KAAO,EACtFC,GAAYC,mBAAZD,SACDE,GAAeC,SAGjBC,EAKAF,EALAE,aACAC,EAIAH,EAJAG,cACAC,EAGAJ,EAHAI,mBACAC,EAEAL,EAFAK,aACAC,EACAN,EADAM,QAGEC,EAAM,CACRf,MAAOA,GAASU,EAChBT,QAASA,GAAWD,GAASU,EAC7BR,YAAaA,GAAeU,EAC5BT,MAAM,GAAIW,GAAUX,GAASU,GAC7BG,IAAI,GAAIF,EAAUR,GAKtB,OACI,QAAC,EAAAW,OAAD,CACIjB,MAAOe,EAAIf,MACXW,cAAeA,IAEf,gBAAMN,KAAMA,KAEZ,gBAAMa,KAAK,cAAcC,QAASJ,EAAIb,eACtC,gBAAMgB,KAAK,QAAQC,QAASJ,EAAIZ,QAE/BY,EAAId,UAAW,gBAAMmB,SAAS,WAAWD,QAASJ,EAAId,UACtDc,EAAIb,cAAe,gBAAMkB,SAAS,iBAAiBD,QAASJ,EAAIb,cAChEa,EAAIZ,QAAS,gBAAMiB,SAAS,WAAWD,QAASJ,EAAIZ,QACpDY,EAAIC,MAAO,gBAAMI,SAAS,SAASD,QAASJ,EAAIC,MAChDD,EAAIZ,QAAS,gBAAMe,KAAK,eAAeC,QAAQ,wBAC/Cf,IAAa,gBAAMgB,SAAS,UAAUD,QAAQ,aAK3DpB,EAAIsB,aAAe,CACfpB,QAAS,KACTC,YAAa,KACbG,KAAM,KACNF,MAAO,KACPC,WAAW,GAaf,O,kDChDA,IAlBwB,WAepB,OAdekB,oBAAe,cAAvBC,KAcKf,e,sBCjBhB,IAAIgB,EAAQ,EAAQ,OAEpB,SAASC,EAAeC,GACpB,OAAOF,EAAMG,cAAc,MAAMD,EAAMF,EAAMG,cAAc,IAAI,CAAC,MAAQ,CAAC,KAAO,OAAO,SAAW,UAAU,OAAS,OAAO,YAAc,MAAM,cAAgB,QAAQ,eAAiB,SAAS,UAAY,uEAAuE,CAACH,EAAMG,cAAc,OAAO,CAAC,EAAI,gDAAgD,IAAM,IAAIH,EAAMG,cAAc,OAAO,CAAC,EAAI,mBAAmB,IAAM,OAG7aF,EAAcJ,aAAe,CAAC,OAAS,IAAI,QAAU,WAAW,MAAQ,MAExEO,EAAOC,QAAUJ,EAEjBA,EAAcK,QAAUL,G,kCCVxB,IAAe,IAA0B,iE,mCCAzC,IAAe,IAA0B","file":"component---src-pages-about-contact-js-c3f8df9ccdc98085ff8d.js","sourcesContent":["export default __webpack_public_path__ + \"static/circle-b13a953896a68362be5fb3477b5359be.png\";","import styled from '@emotion/styled';\n\nimport {colors, maxWidth} from '../../styles/theme';\nimport circle from '../../images/about/circle.png';\n\n\n/*\n * Constants\n */\nconst circleImageRatio = 0.692; // Ratio of the circle, to help us calculate its height based on the screen width\nconst circleHeightMultiplier = circleImageRatio * 0.95; // The circle can only use 95% of the total screen width\n\n\n/*\n * Public Elements\n */\nconst CircleBackground = styled.div`\n text-align: center;\n position: relative;\n margin-left: auto;\n margin-right: auto;\n background: ${colors.transparent} url(${circle}) no-repeat scroll center bottom;\n background-size: contain;\n max-width: ${maxWidth}px;\n height: calc(100vw * ${circleHeightMultiplier});\n max-height: calc(${maxWidth}px * ${circleHeightMultiplier});\n`;\n\n\n/*\n * Exports\n */\nexport default CircleBackground;\n","/* eslint-disable i18next/no-literal-string */\nimport React from 'react';\nimport PropTypes from 'prop-types';\nimport {Helmet} from 'gatsby-plugin-react-i18next';\nimport {useLocation} from '@gatsbyjs/reach-router';\nimport useSiteMetadata from '../../helpers/hooks/useSiteMetaData';\n\n\nfunction SEO({title, ogTitle = null, description, image = null, isArticle = false, lang = 'en'}) {\n const {pathname} = useLocation();\n const siteMetadata = useSiteMetadata();\n\n const {\n defaultTitle,\n titleTemplate,\n defaultDescription,\n defaultImage,\n siteUrl,\n } = siteMetadata;\n\n const seo = {\n title: title || defaultTitle,\n ogTitle: ogTitle || title || defaultTitle,\n description: description || defaultDescription,\n image: `${siteUrl}${image || defaultImage}`,\n url: `${siteUrl}${pathname}`,\n };\n\n // Since Twitter also looks for Open Graph (Facebook) tags instead of only its own, we can avoid duplicated tags\n // See: https://css-tricks.com/essential-meta-tags-social-media/#reconciling-meta-tags\n return (\n \n \n\n \n \n\n {seo.ogTitle && }\n {seo.description && }\n {seo.image && }\n {seo.url && }\n {seo.image && }\n {isArticle && }\n \n );\n}\n\nSEO.defaultProps = {\n ogTitle: null,\n description: null,\n lang: 'en',\n image: null,\n isArticle: false,\n};\n\nSEO.propTypes = {\n title: PropTypes.string.isRequired,\n ogTitle: PropTypes.string,\n description: PropTypes.string,\n lang: PropTypes.string,\n image: PropTypes.string,\n isArticle: PropTypes.bool,\n};\n\n\nexport default SEO;\n","import {useStaticQuery, graphql} from 'gatsby';\n\nconst useSiteMetadata = () => {\n const {site} = useStaticQuery(graphql`\n query {\n site {\n siteMetadata {\n defaultTitle: title\n titleTemplate\n defaultDescription: description\n defaultImage: image\n author\n siteUrl\n }\n }\n }\n `);\n return site.siteMetadata;\n};\n\nexport default useSiteMetadata;\n","var React = require('react');\n\nfunction DiagonalArrow (props) {\n return React.createElement(\"svg\",props,React.createElement(\"g\",{\"style\":{\"fill\":\"none\",\"fillRule\":\"evenodd\",\"stroke\":\"#fff\",\"strokeWidth\":\"1.5\",\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\"},\"transform\":\"matrix(.76604444 -.64278761 .64278761 .76604444 -1.207834 4.371692)\"},[React.createElement(\"path\",{\"d\":\"m4.76470588.5 4.23529412 3.75-4.23529412 3.75\",\"key\":0}),React.createElement(\"path\",{\"d\":\"m0 4.25h8.470588\",\"key\":1})]));\n}\n\nDiagonalArrow.defaultProps = {\"height\":\"9\",\"viewBox\":\"0 0 10 9\",\"width\":\"10\"};\n\nmodule.exports = DiagonalArrow;\n\nDiagonalArrow.default = DiagonalArrow;\n","export default __webpack_public_path__ + \"static/background-mobile-1fc7dafab0cf8dcc153a45ac7390270b.png\";","export default __webpack_public_path__ + \"static/background-aaa88670426fa69bde67c3de4282ad19.png\";"],"sourceRoot":""}