{"version":3,"sources":["containers/NotFoundPage/NotFoundPage.js","containers/NotFoundPage/images/404-error-icons.svg","_platform/src/components/Button/Button.js"],"names":["PageContainer","styled","div","_templateObject","StyledNotFoundImage","p","_templateObject2","up","css","_templateObject3","NotFoundPage","_ref","location","react__WEBPACK_IMPORTED_MODULE_1___default","a","createElement","react_helmet__WEBPACK_IMPORTED_MODULE_2___default","name","content","_smooth_ui_core_sc__WEBPACK_IMPORTED_MODULE_5__","className","justifyContent","sm","md","src","NotFoundGraphic","alt","react_router_dom__WEBPACK_IMPORTED_MODULE_3__","as","to","title","_platform_src_components_Button_Button__WEBPACK_IMPORTED_MODULE_6__","defaultProps","module","exports","__webpack_require__","ButtonBlock","Box","props","theme","buttonBlockSpacerTop","buttonBlockSpacerBottom","buttonBlockHasSeparator","concat","buttonBlockSpacerInner","buttonSeparatorColor","StyledButton","Button","disabled","customInputBtnFontWeight","minWidth","inputBtnMinWidth","controlFocus","th","variant","propTypes","PropTypes","bool","string","object"],"mappings":"itBAUA,IAAMA,EAAgBC,IAAOC,IAAVC,KAQbC,EAAsBH,IAAOI,EAAVC,IAQnBC,YACA,KACAC,YAFEC,OAWFC,EAAe,SAAAC,KAAGC,SAAH,OACnBC,EAAAC,EAAAC,cAACf,EAAD,KACEa,EAAAC,EAAAC,cAACC,EAAAF,EAAD,KAGED,EAAAC,EAAAC,cAAA,qCACAF,EAAAC,EAAAC,cAAA,QAAME,KAAK,wBAAwBC,QAAQ,SAE7CL,EAAAC,EAAAC,cAACI,EAAA,EAAD,CAAMC,UAAU,UACdP,EAAAC,EAAAC,cAACI,EAAA,EAAD,CAAKE,eAAe,UAClBR,EAAAC,EAAAC,cAACI,EAAA,EAAD,CAAKG,GAAI,GAAIC,GAAI,GACfV,EAAAC,EAAAC,cAAA,MAAIK,UAAU,8BAAd,aACAP,EAAAC,EAAAC,cAAA,KAAGK,UAAU,2CACXP,EAAAC,EAAAC,cAAA,uGAIAF,EAAAC,EAAAC,cAAA,WALF,uDAQAF,EAAAC,EAAAC,cAACX,EAAD,KACES,EAAAC,EAAAC,cAAA,OAAKS,IAAKC,IAAiBC,IAAI,4BAEjCb,EAAAC,EAAAC,cAAA,KAAGK,UAAU,gBACXP,EAAAC,EAAAC,cAACY,EAAA,EAAD,CAAMC,GAAG,SAASC,GAAG,IAAIC,MAAM,4BAC7BjB,EAAAC,EAAAC,cAACgB,EAAA,EAAD,KACElB,EAAAC,EAAAC,cAAA,sCAchBL,EAAasB,aAAe,CAC1BpB,SAAU,IAGGF,iCCjFfuB,EAAAC,QAAiBC,EAAA9B,EAAuB,qcCOjC,IAAM+B,EAAcnC,YAAOoC,IAAPpC,CAAHE,IACR,SAAAmC,GAAK,OAAIA,EAAMC,MAAMC,sBAAwB,QAC1C,SAAAF,GAAK,OAAIA,EAAMC,MAAME,yBAA2B,QAE/D,SAAAH,GAAK,OACHA,EAAMC,MAAMG,wBAAd,0BAAAC,OAEmBL,EAAMC,MAAMK,wBAA0B,SAFzD,qCAAAD,OAG4BL,EAAMC,MAAMM,sBAAwB,UAHhE,eAKI,OAGFC,EAAe7C,YAAO8C,IAAP9C,CAAHK,IACd,SAAAgC,GAAK,OAAIA,EAAMU,UAAN,wBACT,SAAAV,GAAK,OACLA,EAAMC,MAAMU,0BAAZ,gBAAAN,OACgBL,EAAMC,MAAMU,yBAD5B,MAGW,SAAAX,GAAK,OAAIA,EAAMY,UAAYZ,EAAMC,MAAMY,kBAIhD,SAAA9C,GAAC,OAAI+C,YAAaC,YAAGhD,EAAEiD,QAALD,CAAchD,GAA3B+C,CAA+B/C,KAI1CyC,EAAaS,UAAY,CACvBP,SAAUQ,IAAUC,KACpBP,SAAUM,IAAUE,OACpBnB,MAAOiB,IAAUG,QAEJb","file":"static/js/notNound.4ec06315.chunk.js","sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\nimport Helmet from 'react-helmet';\nimport { Link } from 'react-router-dom';\n\nimport { Col, css, Grid, Row, styled, up } from '@smooth-ui/core-sc';\nimport Button from '_platform/src/components/Button/Button';\n\nimport NotFoundGraphic from './images/404-error-icons.svg';\n\nconst PageContainer = styled.div`\n button {\n color: #fff;\n min-width: 180px;\n padding: 10px 40px;\n }\n`;\n\nconst StyledNotFoundImage = styled.p`\n padding-bottom: 2rem;\n padding-top: 2rem;\n text-align: center;\n img {\n height: 183px;\n height: auto;\n width: 174px;\n ${up(\n 'md',\n css`\n height: 366px;\n height: auto;\n width: 550px;\n `\n )};\n }\n`;\n\nconst NotFoundPage = ({ location }) => (\n \n \n {/* Note: title must contain '404' in order for react-snap to render the error page properly */}\n {/* https://github.com/stereobooster/react-snap/issues/91 */}\n Page not found (404)\n \n \n \n \n \n

404 Error

\n

\n \n Sorry looks like we are having a bit of trouble finding what\n you’re looking for!\n \n
\n Follow these guys back home and give it another go.\n

\n \n \"Panicking\n \n

\n \n \n \n

\n \n
\n
\n
\n);\n\nNotFoundPage.propTypes = {\n location: PropTypes.object,\n};\n\nNotFoundPage.defaultProps = {\n location: {},\n};\n\nexport default NotFoundPage;\n","module.exports = __webpack_public_path__ + \"static/media/404-error-icons.6f4553bd.svg\";","/**\n * Button\n */\nimport PropTypes from 'prop-types';\nimport { Box, Button, controlFocus, styled, th } from '@smooth-ui/core-sc';\n\n// Button Block\nexport const ButtonBlock = styled(Box)`\n margin-top: ${props => props.theme.buttonBlockSpacerTop || '2rem'};\n margin-bottom: ${props => props.theme.buttonBlockSpacerBottom || '1rem'};\n\n ${props =>\n !!props.theme.buttonBlockHasSeparator\n ? `\n padding-top: ${props.theme.buttonBlockSpacerInner || '1.5rem'};\n border-top: 1px solid ${props.theme.buttonSeparatorColor || '#dee2e6'};\n `\n : null};\n`;\n\nconst StyledButton = styled(Button)`\n ${props => props.disabled && `cursor: not-allowed;`}\n ${props =>\n props.theme.customInputBtnFontWeight &&\n `font-weight: ${props.theme.customInputBtnFontWeight};`}\n margin-top: 1px;\n min-width: ${props => props.minWidth || props.theme.inputBtnMinWidth};\n text-align: center;\n\n &:focus {\n ${p => controlFocus(th(p.variant)(p))(p)}\n }\n`;\n\nStyledButton.propTypes = {\n disabled: PropTypes.bool,\n minWidth: PropTypes.string,\n theme: PropTypes.object,\n};\nexport default StyledButton;\n"],"sourceRoot":""}