\",\n className: \"cls-master-4\",\n d: \"M59.65,51.16A35.94,35.94,0,0,1,73.4,22.85a36,36,0,1,0,0,56.61A35.94,35.94,0,0,1,59.65,51.16Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-master-5\",\n d: \"M131.65,51.16A36,36,0,0,1,73.4,79.46a36,36,0,0,0,0-56.61,36,36,0,0,1,58.25,28.3Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-master-5\",\n d: \"M128.21,73.46V72.3h.47v-.24h-1.19v.24H128v1.16Zm2.31,0v-1.4h-.36l-.42,1-.42-1H129v1.4h.26V72.41l.39.91h.27l.39-.91v1.06Z\"\n}))));\n\nvar SvgMastercardLogo = function SvgMastercardLogo(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 146.8 120.41\",\n ref: svgRef\n }, props), _ref2, title === undefined ? _ref3 : title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref4);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgMastercardLogo, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/MastercardLogo.71cf70ed.svg\";\nexport { ForwardRef as ReactComponent };","import React, { createContext,useState,useReducer } from 'react'\nimport {Auth} from \"aws-amplify\"\n\nexport const AuthContext = createContext()\n\n/** States\n * signup\n * confirmsignup\n * resendconfirmation\n * confirmation_resent\n * signedin\n * forgot-pass\n */\nconst initAuthState = {\n currentAuthState : \"signup\",\n userInfo : \"\",\n userEmail : \"\",\n errorAuthState : {\n name : \"\",\n status : false,\n message : \"\"\n\n }\n}\n\n\n\n\nconst AuthContextProvider = (props) => {\n const [isLoading, setIsLoading] = useState(false);\n const [authState, setAuthState] = useState(initAuthState); \n const [authMessage, setAuthMessage] = useState({\n status : false,\n message : \"\"\n })\n const handleNavState = (value) => {\n setAuthState({\n ...authState, \n currentAuthState : value\n })\n }\n\n const handleAuthMessage = (message) => {\n setAuthMessage({\n status : true,\n message\n });\n setTimeout(() => {\n setAuthMessage({\n status : false,\n message : \"\"\n })\n }, 4000);\n }\n const resetError = () => {\n setAuthState({\n ...authState,\n errorAuthState : {\n name : \"\",\n status : false,\n message : \"\"\n }\n })\n }\n const handleResendVerification = async (action) => {\n try{\n const userEmail = action.email;\n setIsLoading(true);\n const sendVerificationResponse = await Auth.resendSignUp(userEmail);\n setAuthState({\n ...authState,\n userEmail,\n currentAuthState : \"confirmation_resent\",\n \n })\n setIsLoading(false);\n\n }catch(err){\n console.log({err})\n setAuthState({\n ...authState,\n errorAuthState : {\n name : err.name,\n status : false,\n message : err.message\n }\n })\n setIsLoading(false);\n }\n }\n const handleSignUp = async (action) => {\n try{\n const userEmail = action.email;\n setIsLoading(true);\n const signupResponse = await Auth.signUp({\n username : action.email,\n password : action.password,\n attributes: {\n 'custom:first_name' : action.first_name,\n 'custom:last_name' : action.last_name,\n email : action.email,\n 'custom:mobile_number' : action.mobile_number,\n 'custom:address_line_1' : action.address_line_1,\n 'custom:surburb' : action.surburb,\n 'custom:city' : action.city,\n 'custom:province' : action.province,\n 'custom:post_code' : action.post_code\n }\n })\n setAuthState({\n ...authState,\n errorAuthState : {\n name : \"\",\n status : false,\n message : \"\"\n },\n userEmail,\n currentAuthState : \"confirmsignup\",\n \n })\n setIsLoading(false);\n \n \n }catch(err){\n console.log({err})\n setAuthState({\n ...authState,\n errorAuthState : {\n name : err.name,\n status : false,\n message : err.message\n }\n })\n window.scrollTo({ top: 0, behavior: 'smooth' });\n setIsLoading(false);\n }\n }\n \n const handleSignOut = async () => {\n try{\n await Auth.signOut();\n setAuthState(initAuthState)\n handleAuthMessage(\"Success! You are now Logged out\");\n }catch(err){\n console.log(err);\n setAuthState({\n ...authState,\n errorAuthState : {\n name : err.name,\n status : true,\n message : err.message\n },\n\n })\n }\n }\n const handleSignIn = async (action) => {\n try{\n setIsLoading(true)\n const currentUser = await Auth.signIn(action.username, action.password)\n const {attributes} = currentUser;\n const fullAddress = `${attributes[\"custom:address_line_1\"]} ${attributes[\"custom:surburb\"]} ${attributes[\"custom:province\"]} ${attributes[\"custom:post_code\"]}`\n setAuthState({\n ...authState,\n errorAuthState : {\n name : \"\",\n status : false,\n message : \"\"\n },\n currentAuthState : \"signedin\",\n userInfo : {\n first_name : currentUser.attributes[\"custom:first_name\"],\n last_name : currentUser.attributes[\"custom:last_name\"],\n Address : currentUser.attributes[\"custom:address_line_1\"],\n mobile : currentUser.attributes[\"custom:mobile_number\"],\n email : currentUser.attributes[\"email\"],\n city : currentUser.attributes[\"custom:city\"],\n country : currentUser.attributes[\"custom:province\"],\n fullAddress\n }\n \n })\n setIsLoading(false);\n handleAuthMessage(\"Success! You are now Logged In\")\n }catch(err){\n console.log(err)\n setAuthState({\n ...authState,\n errorAuthState : {\n name : err.name,\n status : true,\n message : err.message\n }\n })\n setIsLoading(false);\n }\n }\n const handleRetrieveSession = async () => {\n try{\n const currentUser = await Auth.currentAuthenticatedUser();\n const {attributes} = currentUser;\n const fullAddress = `${attributes[\"custom:address_line_1\"]} ${attributes[\"custom:surburb\"]} ${attributes[\"custom:province\"]} ${attributes[\"custom:post_code\"]}`\n setAuthState({\n ...authState,\n errorAuthState : {\n name : \"\",\n status : false,\n message : \"\"\n },\n currentAuthState : \"signedin\",\n userInfo : {\n first_name : currentUser.attributes[\"custom:first_name\"],\n last_name : currentUser.attributes[\"custom:last_name\"],\n address : `${currentUser.attributes[\"custom:address_line_1\"]} ${currentUser.attributes[\"custom:surburb\"]}`,\n mobile : currentUser.attributes[\"custom:mobile_number\"],\n email : currentUser.attributes[\"email\"],\n city : currentUser.attributes[\"custom:city\"],\n country : currentUser.attributes[\"custom:province\"],\n fullAddress\n }\n \n })\n \n\n }catch(err){\n setAuthState({\n ...authState,\n currentAuthState : \"signup\"\n })\n }\n }\n const resetPassword = async (username) => {\n setIsLoading(true)\n try{\n await Auth.forgotPassword(username);\n setIsLoading(false)\n }catch(err){\n console.log(err);\n setAuthState({\n ...authState,\n errorAuthState : {\n name : err.name,\n status : true,\n message : err.message\n }\n })\n setIsLoading(false);\n }\n\n }\n\n const resetPasswordConfirm = async () => {\n\n }\n\n\n return (\n \n {props.children}\n \n )\n}\n\nexport default AuthContextProvider\n","import React from 'react'\nimport \"../Styles/Loader.scss\"\n\nconst Loader = () => {\n return (\n \n \n
\n )\n}\n\nexport default Loader\n","import React from \"react\";\nimport \"../Styles/ErrorMessage.scss\";\n\nexport default function FormError({error}) {\n return {error}
;\n}\n","import { input } from 'aws-amplify'\nimport React, {useState,useContext} from 'react'\nimport {Link, useHistory} from \"react-router-dom\"\nimport {AuthContext} from \"../../Context/Auth.Context\"\nimport Loader from \"../../Shared/Components/Loader\"\nimport \"../Styles/Login.scss\"\nimport FormError from './FormError';\n\n\n\nconst emailRegex = RegExp(\n /^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*$/\n);\nconst formValid = (loginErrorData) => {\n let valid = true;\n // validate form errors being empty\n Object.values(loginErrorData).forEach(val => {\n val.length > 0 && (valid = false);\n });\n \n return valid;\n };\n\nconst Login = () => {\n let history = useHistory();\n const {errorAuthState,handleNavState,resetError,isLoading,handleSignIn} = useContext(AuthContext)\n const [inputState, setInputState] = useState({\n loginEmail : \"\",\n loginPassword : \"\"\n });\n const [loginError,setLoginError] = useState({\n loginEmail : \"Email is required\",\n loginPassword : \"Password is required\"\n });\n const [isInitial, setisInitial] = useState(true)\n const handleInputChange = (event) => {\n //Validate Error posibility on value change\n const {name, value} = event.target;\n setInputState({\n ...inputState, \n [name] : value\n })\n let tempVal = \"\";\n switch(name){\n case \"loginEmail\" :\n if(value.length > 0){\n resetError();\n tempVal = emailRegex.test(value) ? \"\" : \"Provided Email Invalid\"\n }\n setLoginError({\n ...loginError, loginEmail : tempVal\n })\n break;\n case \"loginPassword\" : \n tempVal = value.length < 1 ? \"Password Is required\" : \"\"\n setLoginError({\n ...loginError, loginPassword : tempVal\n })\n break;\n default : \n setLoginError({\n ...loginError\n })\n break;\n } \n\n }\n const handleSubmit = (event) => {\n event.preventDefault();\n setisInitial(false)\n if (formValid(loginError)) {\n handleSignIn({\n username : inputState.loginEmail.toLowerCase(),\n password : inputState.loginPassword\n })\n setisInitial(true)\n } else {\n console.error(\"FORM INVALID - DISPLAY ERROR MESSAGE\");\n }\n }\n const handleForgotPassword = () => {\n handleNavState(\"forgot-pass\");\n history.push(\"/account/forgot_pass\");\n }\n return (\n \n
\n Login \n
\n
\n
{\n isInitial ? (\n <>\n {errorAuthState.status !== true && `REGISTER or LOGIN to shop securely`}\n {errorAuthState.name === \"NotAuthorizedException\" && }\n {errorAuthState.name === \"UserNotFoundException\" && }\n \n >\n \n ) : (\n <>\n {errorAuthState.name === \"UserNotFoundException\" && }\n {errorAuthState.name === \"UserNotFoundException\" && }\n {loginError.loginEmail.length > 0 && }\n {loginError.loginPassword.length > 0 && }\n >\n\n )\n }\n \n\n
\n )\n}\n\nexport default Login\n","import React from 'react'\nimport \"../Styles/Info.scss\"\nconst Info = () => {\n return (\n \n
\n Simple & Secure\n
\n
\n
\n
\n
Delivery in Zimbabwe \n \n
\n Ts & Cs apply\n
\n
\n )\n}\n\nexport default Info\n","import React, {useContext} from 'react'\nimport {Link} from \"react-router-dom\"\nimport {ReactComponent as PenyesaLogo} from \"../Images/PenyesaLogoWhite.svg\"\nimport {ReactComponent as PaypalLogo} from \"../Images/PaypalLogo.svg\"\nimport {ReactComponent as PayfastLogo} from \"../Images/PayfastLogo.svg\"\nimport {ReactComponent as VisaLogo} from \"../Images/VisaLogo.svg\"\nimport {ReactComponent as MastercardLogo} from \"../Images/MastercardLogo.svg\"\nimport {AuthContext} from \"../../Context/Auth.Context\"\nimport CartImage from \"../Images/trolleyBig.png\"\nimport Login from \"../../auth/Components/Login\"\nimport Flag from \"../Images/zimFlag.png\"\nimport \"../Styles/TopView.scss\"\n\nimport Info from \"./Info\"\n\nconst TopView = () => {\n const {currentAuthState} = useContext(AuthContext);\n return (\n \n \n
\n
\n
\n
\n
\n
Shop now \n \n
\n
\n
Shop online for groceries
\n
delivered to Zimbabwe.
\n
Delivery within 24 to 48 hours
\n \n \n
\n
\n\n\n
\n
\n {\n currentAuthState !== \"signedin\" ?
: (\n <>\n
\n
\n >\n )\n }\n {/*
\n
*/}\n
\n
\n \n
\n )\n}\n\nexport default TopView\n","import React from 'react'\nimport {Link} from \"react-router-dom\"\nimport \"../Styles/Category.scss\"\n\n\nconst Category = () => {\n return (\n \n
\n \n
\n Baskets\n \n
\n
Try our affordable range of carefully picked
\n
pantry food, and home products that come
\n
in our Essentials ,Standard
\n
or Deluxe baskets
\n
\n
\n
Shop \n \n
\n
\n
\n Food Pantry\n \n
\n
Take your pick from the wide variety
\n
of quality food items, sourced
\n
from only the best suppliers
\n
in South Africa
\n
\n
\n
Shop \n \n
\n
\n
\n Health & Beauty\n \n
\n
Shop for premier or luxurious health,
\n
beauty & lifestyle products for
\n
a refreshing & bright
\n
Penyesa look & feel.
\n
\n
\n
Shop \n \n
\n
\n
\n Household\n \n
\n
Our household & cleaning product range is
\n
affordable, safe and easy on the pocket.
\n
Mix-n-match specials and baskets
\n
for maximum value
\n
\n
\n
Shop \n \n
\n
\n
\n Gifts\n \n
\n
Surprise your loved ones with gourmet hampers.
\n
Treat them to Royalty or allow them to
\n
celebrate with our “Lets celebrate”
\n
gift box.
\n
\n
\n
Shop \n \n
\n
\n )\n}\n\nexport default Category\n","import React, { useContext } from \"react\";\nimport \"../Styles/Promotions.scss\";\nimport ChristmasPromo from \"../Images/pantry_promo_2024.png\"; // Keep as fallback\nimport MothersDayPromo from \"../Images/BackgroundFillMothersDayOrange.png\";\nimport FathersDay from \"../Images/fathersDay.png\";\n\nconst Promotions = ({ handleControlPromo, handleClosePromo }) => {\n return (\n \n {/* Video container replacing the image */}\n
\n
\n \n {/* Fallback to image if video fails */}\n \n \n
\n \n
\n \n
\n \n
\n SHOP NOW\n
\n
\n );\n};\n\nexport default Promotions;","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-Arrow-1{fill:#5b4e03;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_72\",\n \"data-name\": \"Layer 72\"\n}, /*#__PURE__*/React.createElement(\"polygon\", {\n className: \"cls-Arrow-1\",\n points: \"0 0 9.07 7.3 18.15 0 9.07 18.97 0 0\"\n})));\n\nvar SvgArrow = function SvgArrow(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 18.15 18.97\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrow, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/Arrow.28fccefa.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-cartIcon,.cls-cartIcon-2{fill:#5b4e03;}.cls-cartIcon{fill-rule:evenodd;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_70\",\n \"data-name\": \"Layer 70\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-cartIcon\",\n d: \"M16.17,22a3,3,0,1,1-3,3A3,3,0,0,1,16.17,22Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-cartIcon\",\n d: \"M27,21.88A3.09,3.09,0,1,1,23.88,25,3.09,3.09,0,0,1,27,21.88Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-cartIcon-2\",\n d: \"M33,2.27a2.15,2.15,0,0,0-2.7,1.42S28.13,9.11,27,13a2.84,2.84,0,0,1-3.19,2.22H19.27A3.18,3.18,0,0,1,16.08,13c-2-3.88-5.26-10.9-5.26-10.9A3.5,3.5,0,0,0,7.88,0H2.16a2.17,2.17,0,0,0,0,4.34H7l6,12c1.27,2.14,2.47,3.22,4.49,3.22h8.29c2.63,0,4-.94,4.69-3.22L34.4,5A2.18,2.18,0,0,0,33,2.27Z\"\n})));\n\nvar SvgCartIcon = function SvgCartIcon(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 34.49 28.06\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCartIcon, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/CartIcon.07603298.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0,172v-172h172v172z\",\n fill: \"none\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"#5b4e03\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M86,8.0625c-43,0 -77.9375,34.9375 -77.9375,77.9375c0,43 34.9375,77.9375 77.9375,77.9375c43,0 77.9375,-34.9375 77.9375,-77.9375c0,-43 -34.9375,-77.9375 -77.9375,-77.9375zM86,16.125c38.56562,0 69.875,31.30937 69.875,69.875c0,38.56562 -31.30938,69.875 -69.875,69.875c-38.56563,0 -69.875,-31.30938 -69.875,-69.875c0,-38.56563 31.30937,-69.875 69.875,-69.875zM86,40.3125c-6.67919,0 -12.09375,5.41456 -12.09375,12.09375c0,6.67919 5.41456,12.09375 12.09375,12.09375c6.67919,0 12.09375,-5.41456 12.09375,-12.09375c0,-6.67919 -5.41456,-12.09375 -12.09375,-12.09375zM86,79.28125c-6.71875,0 -12.09375,5.375 -12.09375,12.09375v32.25c0,6.71875 5.375,12.09375 12.09375,12.09375c6.71875,0 12.09375,-5.375 12.09375,-12.09375v-32.25c0,-6.71875 -5.375,-12.09375 -12.09375,-12.09375z\"\n}));\n\nvar SvgCartInfo = function SvgCartInfo(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n x: \"0px\",\n y: \"0px\",\n viewBox: \"0 0 172 172\",\n style: {\n fill: \"#000000\"\n },\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n fill: \"none\",\n fillRule: \"nonzero\",\n stroke: \"none\",\n strokeWidth: 1,\n strokeLinecap: \"butt\",\n strokeLinejoin: \"miter\",\n strokeMiterlimit: 10,\n strokeDasharray: \"\",\n strokeDashoffset: 0,\n fontFamily: \"none\",\n fontWeight: \"none\",\n fontSize: \"none\",\n textAnchor: \"none\",\n style: {\n mixBlendMode: \"normal\"\n }\n }, _ref2, _ref3));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCartInfo, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/CartInfo.679af1c6.svg\";\nexport { ForwardRef as ReactComponent };","import React, {createContext, useReducer} from 'react'\nimport createUID from 'create-unique-id';\n\n\nexport const CartContext = createContext();\n\n//Define Initial State\nconst initialState = {\n cartTotal : 0,\n cartProducts : [],\n cartID : \"\"\n}\n\n//Define Reducer Function \nconst reducer = (state, action) => {\n switch(action.type){\n case \"AddProduct\" :\n \n let tempCartArray = [...state.cartProducts]\n let cartTotal = state.cartTotal;\n const foundProductIndex = tempCartArray.findIndex(item => item.productID === action.itemID);\n if(foundProductIndex < 0){\n tempCartArray =[...tempCartArray, {\n productID : action.itemID,\n productBrand : action.itemBrand,\n productTitle : action.itemTitle,\n productPrice : action.itemPrice,\n productImage : action.itemURL,\n productDescription : action.itemDescription,\n productSize : action.itemSize,\n productQty : action.itemQty,\n stock_Qty : action.stock_Qty,\n display_Stock : action.display_Stock - 1\n }]\n cartTotal = cartTotal + 1;\n }else {\n \n tempCartArray[foundProductIndex].productQty += 1;\n tempCartArray[foundProductIndex].display_Stock -= 1;\n\n }\n \n return {\n ...state,\n cartTotal : cartTotal,\n cartProducts : tempCartArray\n }\n case \"Subtract\" :\n let tempCartArrayRemove = [...state.cartProducts]\n const foundProductIndexRemove = tempCartArrayRemove.findIndex(item => item.productID === action.itemID);\n if(foundProductIndexRemove >= 0){\n tempCartArrayRemove[foundProductIndexRemove].productQty -= 1;\n tempCartArrayRemove[foundProductIndexRemove].display_Stock += 1;\n }\n \n return {\n ...state,\n cartProducts : tempCartArrayRemove\n }\n case \"RemoveProduct\" :\n if(state.cartTotal > 0){\n return {\n cartTotal : state.cartTotal - 1,\n cartProducts : state.cartProducts.filter(item => item.productID !== action.itemID)\n }\n }else {\n return state\n }\n case \"ClearCart\": \n return {\n ...state,\n cartTotal : 0,\n cartProducts : [],\n cartID : \"\"\n }\n case \"cartID\": \n return {\n ...state,\n cartID : `${createUID(7)}`.toUpperCase()\n }\n\n default :\n return state\n }\n}\n\nexport function CartContextProvider(props) {\n const [cartState, cartDispatch] = useReducer(reducer,initialState)\n return (\n \n {props.children}\n \n )\n}\n\n\n","import React, {createContext, useReducer, useEffect}from 'react'\nimport axios from \"axios\"\n\nexport const ProductsContext = createContext()\nconst initialState = {\n products : [\n {\n id : \"Temp-01\",\n brand : \"Temp\",\n stock_Qty : 10,\n isBrowse : true,\n },\n {\n id : \"Temp-02\",\n brand : \"Temp\",\n stock_Qty : 10,\n isBrowse : true,\n category : \"Temp\"\n },\n {\n id : \"Temp-03\",\n brand : \"Temp\",\n stock_Qty : 10,\n isBrowse : false,\n category : \"Temp\"\n },\n {\n id : \"Temp-04\",\n brand : \"Temp\",\n stock_Qty : 10,\n isBrowse : false,\n category : \"Temp\"\n },\n {\n id : \"Temp-05\",\n brand : \"Temp\",\n stock_Qty : 10,\n isBrowse : false,\n category : \"Temp\"\n },\n \n {\n id : \"Temp-06\",\n brand : \"Temp\",\n stock_Qty : 10,\n isBrowse : false,\n category : \"Temp\"\n },\n {\n id : \"Temp-07\",\n brand : \"Temp\",\n stock_Qty : 10,\n isBrowse : false,\n category : \"Temp\"\n },\n {\n id : \"Temp-08\",\n brand : \"Temp\",\n stock_Qty : 10,\n isBrowse : false,\n category : \"Temp\"\n },\n {\n id : \"Temp-09\",\n brand : \"Temp\",\n stock_Qty : 10,\n isBrowse : false,\n category : \"Temp\"\n },\n \n {\n id : \"bask-Ess01\",\n brand : \"Penyesa Basket\",\n title : \"Essentials\",\n size : \"\",\n price : 1000,\n stock_Qty : 100,\n display_Stock : 10,\n url : \"https://penyesa-pictures.s3.af-south-1.amazonaws.com/essentials.png\",\n category : \"Baskets\",\n description : \"3 x 2kg Rice 2 x 2kg Sugar 2 x 2.5kg Self Raising Flour 1 x 2L Cooking Oil 2 x 1kg Sugar Beans 2 x Soups 2 x Pilchards 1 x Joko Tea 1 x 1kg Cremora 2 x Soya Mince 1 x Washing powder 2 Bars Washing Soap 1 x 100mL Toothpaste\",\n isBrowse : false,\n \n },\n {\n id : \"bask-Ess02\",\n brand : \"Penyesa Basket\",\n title : \"Standard\",\n size : \"\",\n stock_Qty : 100,\n display_Stock : 10,\n price : 1450,\n url : \"https://penyesa-pictures.s3.af-south-1.amazonaws.com/standard.png\",\n category : \"Baskets\",\n description : \"1 x 5kg Basmati Rice 2 x 2kg Sugar 2 x 2.5kg s/Raising Flour 1 x 2L Cooking Oil 2 X 1kg Sugar Beans 4 x bars Washing Soap 2 x Tooth paste 1 x 1kg Cremora 1 x 2kg Washing Powder 4 x Soups 4 x Soya Mince 2 x Baked Beans 2 x Pilchards 2 x Corned Meat 2 x 500g Spaghetti 2 x 500g Macaroni 2 x Biscuits 1 x Joko Tea\",\n isBrowse : false,\n \n },\n {\n id : \"bask-Ess03\",\n brand : \"Penyesa Basket\",\n title : \"Deluxe\",\n size : \"\",\n price : 1950,\n stock_Qty : 100,\n display_Stock : 10,\n url : \"https://penyesa-pictures.s3.af-south-1.amazonaws.com/deluxe.png\",\n category : \"Baskets\",\n description : \"1 x 5kg Rice 2 x 2kg Sugar 2 x 2.5kg Self Raising Flour 2 x 2L Cooking Oil 2 x 1kg Sugar Beans 4 x bars Washing Soap 2 x Toothpaste 4 x Soups 4 x Soya Mince 2 x Baked Beans 1 x Vaseline jar 2 x Roll on 2 x Pilchards 2 x Corned Meat 6 x 500g Spaghetti 1 x 3kg Macaroni 2 x Biscuits 1 x 750g Mayonnaise 2 x Packet of Sweets 2 x Lays 1 x Joko Tea 1 x 1kg Cremora1 x tin Ricoffy1 x 2kg Washing Powder\",\n isBrowse : false,\n \n }\n ],\n isLoading : true,\n}\n\n\n\nconst reducer = (state, action) => {\n switch(action.type){\n case \"Success\" : \n let products = [...action.payload] \n products = products.filter(product => product.brand !== \"Temp\")\n \n const outOfStock = products.filter(product => product.stock_Qty <= 0)\n const inStock = products.filter(product => product.stock_Qty > 0)\n products = [...inStock,...outOfStock] \n return {\n isLoading : false,\n products : products\n }\n case \"Error\" : {\n console.log(action.Err)\n alert(\"There was an Error Loading Products Please Refresh Or Contact Info@penyesa.co.za\")\n return{\n ...state,\n isLoading : false\n }\n }\n case \"AddCartLabel\" : \n const updatedAddChipProductData = state.products.map(product => (\n product.id === action.productID ? {...product, isInCart : true} : product\n ))\n return{\n ...state, \n products : [...updatedAddChipProductData]\n }\n case \"RemoveCartLabel\" : \n const updatedRemoveChipProductData = state.products.map(product => (\n product.id === action.productID ? {...product, isInCart : false} : product\n ))\n \n return{\n ...state, \n products : [...updatedRemoveChipProductData]\n }\n case \"AddStockQty\" : \n const updatedAddStockQty = state.products.map(product => (\n product.id === action.productID ? {...product , display_Stock : product.display_Stock + 1 } : product\n ))\n return {\n ...state,\n products : [...updatedAddStockQty]\n }\n case \"RemoveStockQty\" : \n const updatedRemoveStockQty = state.products.map(product => (\n product.id === action.productID ? {...product, display_Stock : product.display_Stock - 1} : product\n ))\n return {\n ...state,\n products : [...updatedRemoveStockQty]\n }\n case \"LOAD\" : \n return {\n ...state,\n isLoading : action.loadState\n }\n default :\n return state\n }\n}\n\n\nexport function ProductsContextProvider(props) {\n \n const [productDataState, productsDispatch] = useReducer(reducer, initialState)\n const getProducts = async () => {\n let products = [...productDataState.products]\n /**https://rartx1msad.execute-api.eu-west-1.amazonaws.com/Dev/products/ProductsAlpha */\n const productURL = process.env.NODE_ENV === \"development\" ? \"\" : \"https://rartx1msad.execute-api.eu-west-1.amazonaws.com/Dev/products/ProductsAlpha\"\n \n try {\n const response = axios.get(productURL)\n const results = (await response).data;\n results.map(result => products.push({\n id : result.id,\n brand : result.brand,\n title : result.title,\n size : result.size,\n price : result.price,\n url : `https://penyesa-pictures.s3.af-south-1.amazonaws.com/${result.url}.png`,\n isBrowse : result.isBrowse,\n category : result.category,\n stock_Qty : result.stock_Qty, \n display_Stock : result.stock_Qty,\n description : result.description \n }))\n\n productsDispatch({type : \"Success\", payload : products})\n\n\n } catch (error) {\n productsDispatch({type : \"Error\", Err : error})\n }\n }\n useEffect(() =>{\n getProducts();\n }, [])\n return (\n \n {props.children}\n \n )\n}\n\n\n","import React, {useContext} from 'react'\nimport {ControlContext} from \"../../Context/Control.Context\"\n\nimport \"../Styles/QuickViewModal.scss\"\n\n\nconst QuickViewModal = ({showModal,product, addCart, subtractCart}) => {\n const {controlDispatch} = useContext(ControlContext)\n const {id,title,brand,price,size,url,isInCart,description,quantity,stock_Qty,display_Stock} = product\n\n const handleOpenCart = () => {\n controlDispatch({type:\"CART\"})\n showModal(false)\n }\n\n return (\n \n
\n
\n
\n {\n isInCart && (\n
\n In Cart\n
\n )\n }\n
\n
\n
\n
\n
\n
\n {`${brand} ${title}`} \n
\n
showModal(false)} > \n
\n
\n {`R${price}`}\n
\n
\n
0 ? \"modal-stock\" : \"modal-stock--out\"}>\n {stock_Qty > 0 && display_Stock > 0 ? `${display_Stock} In Stock` : \"Out of stock\"}\n
\n {\n description ?(\n
\n {description}\n
\n ) : (\n
\n {`${brand} ${title} ${size}`}\n
\n )\n }\n
\n { display_Stock > 0 &&\n
\n {\n isInCart ? (\n <>\n subtractCart(id,quantity)}> \n \n {quantity}\n | In Cart\n \n addCart()}> \n >\n ) :\n (\n <>\n \n \n | Add to Cart\n \n >\n )\n }\n
\n }\n
\n
\n
\n )\n}\n\nexport default QuickViewModal\n","import React, {useState,useContext} from 'react'\nimport {ReactComponent as CartIcon} from '../Images/CartIcon.svg'\nimport {ReactComponent as CartInfo} from \"../Images/CartInfo.svg\"\nimport {CartContext} from \"../../Context/Cart.Context\"\nimport { ProductsContext} from \"../../Context/Products.Context\"\nimport {ControlContext} from \"../../Context/Control.Context\"\nimport QuickViewModal from \"./QuickViewModal\"\n\n\nimport \"../Styles/Card.scss\"\n\nconst Card = ({product}) => {\n const {id,title,brand,price,size,url,isInCart,stock_Qty,display_Stock} = product\n const {cartProducts,cartDispatch} = useContext(CartContext)\n const {controlDispatch} = useContext(ControlContext)\n const {isLoading, productsDispatch} = useContext(ProductsContext)\n const [isView, setIsView] = useState(false)\n const [isModal, setIsModal] = useState(false)\n\n const currentProduct= cartProducts.find(item => {\n return item.productID === id\n })\n const quantity = currentProduct ? currentProduct.productQty : 0;\n\n //Add Quantities to Cart\n const handleRemoveQuantity = (id, qty) => {\n if(qty > 1){\n \n cartDispatch({type : \"Subtract\", itemID : id})\n \n }else{\n cartDispatch({type: \"RemoveProduct\", itemID:id})\n //Remove Cart Label on Product\n productsDispatch({type:\"RemoveCartLabel\", productID : id})\n }\n //Add Stock Total\n productsDispatch({type : \"AddStockQty\", productID: id})\n }\n //Add to Cart\n const handleAddToCart = () => {\n cartDispatch({\n type : \"AddProduct\",\n itemID : id,\n itemBrand : brand,\n itemTitle : title,\n itemPrice : price,\n itemSize : size,\n itemURL : url,\n itemQty : 1,\n stock_Qty,display_Stock\n\n })\n //Add Cart Label on Product\n productsDispatch({type:\"AddCartLabel\", productID : id})\n //Subtract Stock Total\n productsDispatch({type : \"RemoveStockQty\", productID: id})\n }\n const handleControlCart = () => {\n controlDispatch({type: \"CART\"})\n }\n /**const handleQuickViewOff = () =>{\n setIsView(false);\n }*/\n const handleModalView = (value) => {\n setIsModal(value);\n }\n return (\n <>\n setIsView(false)}>\n {\n stock_Qty <= 0 &&
\n
handleModalView(true)} className=\"hover-info\">\n Out of Stock\n
\n
\n }\n {\n isView && (\n
setIsView(false)} className=\"hover-card\">\n
handleModalView(true)} className=\"hover-info\">\n Quick View\n \n
\n R {`${price}`}\n
\n
\n )\n }\n {\n isInCart &&
\n In cart\n
\n\n }\n {\n isInCart &&
\n {quantity}\n
\n\n }\n { !isLoading &&\n <>\n
\n
{brand} \n {title} \n {size} \n \n
setIsView(true)} className=\"card-image\">\n
\n
\n
\n
\n R {price}\n
\n
\n handleModalView(true)} className=\"cart-btn cart-btn--info\">\n Info \n \n \n \n {\n stock_Qty > 0 && (\n handleAddToCart()} className=\"cart-btn \" disabled={display_Stock <= 0 ? true : false}>\n Add \n \n \n )\n }\n \n \n \n\n
\n
\n >\n }\n
\n {\n isModal && \n }\n >\n )\n}\n\nexport default Card\n","import React, { useContext } from 'react'\nimport \"../Styles/Browse.scss\"\nimport {ReactComponent as Arrow} from \"../Images/Arrow.svg\"\nimport Card from \"../../Shared/Components/Card\"\nimport {ProductsContext} from \"../../Context/Products.Context\"\n\n\nconst Browse = () => {\n const {products} = useContext(ProductsContext);\n \n const displayProducts = products.filter(item => {\n return (item.isBrowse === \"TRUE\" || item.isBrowse === true) && item.stock_Qty > 0;\n })\n \n return (\n \n
\n Browse family favourites\n
\n
\n {\n displayProducts.map(product => )\n }\n
\n {/*
*/}\n
\n )\n}\n\nexport default Browse\n","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-1{fill:#dbba07;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_70\",\n \"data-name\": \"Layer 70\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M37.05,12.51a2.08,2.08,0,0,0-1.72,1.25,2.32,2.32,0,0,0-.17,1.07A3,3,0,0,0,35.5,16a3.87,3.87,0,0,0,.81,1.11,5.72,5.72,0,0,0,1.13.82,4.1,4.1,0,0,0,1.28.42,3.44,3.44,0,0,0,1.28,0,2.76,2.76,0,0,0,1-.49,2,2,0,0,0,.61-.81A2.18,2.18,0,0,0,41.82,16a2.83,2.83,0,0,0-.34-1.17,4.75,4.75,0,0,0-.79-1.09A5.34,5.34,0,0,0,39.58,13a3.82,3.82,0,0,0-1.26-.46,3,3,0,0,0-1.27,0\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M30.27,4.71a1.83,1.83,0,0,0-.84.31,1.36,1.36,0,0,0-.5.61,1.66,1.66,0,0,0-.17.79,2.81,2.81,0,0,0,.25.9,3.69,3.69,0,0,0,.63.84,4.65,4.65,0,0,0,.88.65,3.44,3.44,0,0,0,1,.33,2.46,2.46,0,0,0,1,0,2,2,0,0,0,.83-.31,1.67,1.67,0,0,0,.48-.61A1.37,1.37,0,0,0,34,7.43a2.49,2.49,0,0,0-.25-1,2.83,2.83,0,0,0-.61-.81A3.75,3.75,0,0,0,32.26,5a4.53,4.53,0,0,0-1-.29,2.41,2.41,0,0,0-1,0\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M44.89,21.42a3.55,3.55,0,0,0-1.49.71,3.27,3.27,0,0,0-.89,1.23A3.46,3.46,0,0,0,42.28,25a4.79,4.79,0,0,0,.5,1.78c.1.21.23.4.35.61a5.56,5.56,0,0,0,.42.54l.46.5.52.44c.51-.42,1-.81,1.57-1.19s1.07-.75,1.61-1.11l1.7-1c.58-.31,1.15-.61,1.75-.88a5.79,5.79,0,0,0-1-1.46,7.07,7.07,0,0,0-1.55-1.13,5.92,5.92,0,0,0-1.78-.59,4.54,4.54,0,0,0-1.8,0\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M25,21.94h-.67l-.21.11a2.65,2.65,0,0,0-.9.83A2.34,2.34,0,0,0,22.89,24a3,3,0,0,0,.16,1.26,3.69,3.69,0,0,0,.74,1.21,4.56,4.56,0,0,0,1,.84,4.37,4.37,0,0,0,1.08.54,4.74,4.74,0,0,0,1.18.23,4.27,4.27,0,0,0,1.13,0h.64l.21-.13a2.28,2.28,0,0,0,.86-.83A2.33,2.33,0,0,0,30.19,26,3,3,0,0,0,30,24.77a4.34,4.34,0,0,0-.73-1.2A4.8,4.8,0,0,0,26.15,22,5.34,5.34,0,0,0,25,22\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M36,29.16h-.31l-.21.31-.3.15-.29.14A3.84,3.84,0,0,0,33.68,31a3.9,3.9,0,0,0-.48,1.63,4.42,4.42,0,0,0,.29,1.8,5.39,5.39,0,0,0,1.07,1.78,5.08,5.08,0,0,0,.5.54l.58.46c.21.13.4.27.61.38a5.51,5.51,0,0,0,.65.31c.38-.6.75-1.19,1.15-1.78s.79-1.15,1.21-1.69.86-1.09,1.32-1.61.92-1,1.4-1.51a6.51,6.51,0,0,0-1.27-1.13,7.09,7.09,0,0,0-1.51-.75,6.43,6.43,0,0,0-1.57-.31,4.64,4.64,0,0,0-1.53.12\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M16.49,36.1l-.51.17-.44.23-.41.29a3.06,3.06,0,0,0-.36.36,2.93,2.93,0,0,0-.61,1.19,3.36,3.36,0,0,0,0,1.34,3.65,3.65,0,0,0,.59,1.3,4.3,4.3,0,0,0,1.15,1.1,4.14,4.14,0,0,0,.92.51,8.36,8.36,0,0,0,1,.27,4.1,4.1,0,0,0,1,0,4.77,4.77,0,0,0,.92-.15l.48-.17a2.94,2.94,0,0,0,.46-.25L21,42a2.31,2.31,0,0,0,.34-.36,2.69,2.69,0,0,0,.56-1.21,2.85,2.85,0,0,0,0-1.3,3.84,3.84,0,0,0-.58-1.27,5,5,0,0,0-1.11-1.09,5.36,5.36,0,0,0-.92-.48,3.66,3.66,0,0,0-1-.29,5.13,5.13,0,0,0-1,0,7,7,0,0,0-.92.12\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M4.52,32l-.42.13-.35.17-.36.23-.29.27a2,2,0,0,0-.5.92,2.2,2.2,0,0,0,0,1,2.65,2.65,0,0,0,.46,1,3.59,3.59,0,0,0,.9.88,6.65,6.65,0,0,0,.75.39,3.54,3.54,0,0,0,.79.21,2.68,2.68,0,0,0,.8,0,3.15,3.15,0,0,0,.75-.1l.4-.13.35-.16.34-.24.29-.27a2.46,2.46,0,0,0,.48-.92,2.42,2.42,0,0,0-.46-2.09,3.78,3.78,0,0,0-.88-.86,3.19,3.19,0,0,0-.73-.39,4.25,4.25,0,0,0-.77-.23,5.08,5.08,0,0,0-.78,0,2.36,2.36,0,0,0-.75,0\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M29.91,40.31l-.67.23-.6.33a3.93,3.93,0,0,0-.55.44,4.56,4.56,0,0,0-.48.5,4.14,4.14,0,0,0-.77,1.74,4.68,4.68,0,0,0,0,1.9,6,6,0,0,0,.86,1.86,6.09,6.09,0,0,0,1.61,1.55,6.43,6.43,0,0,0,1.38.71l.71.23.71.13c.17-.78.33-1.53.54-2.28s.42-1.49.65-2.2.48-1.44.76-2.09.56-1.38.87-2.09a6.37,6.37,0,0,0-1.23-.67,6.52,6.52,0,0,0-1.3-.4,5.83,5.83,0,0,0-1.32,0,4.7,4.7,0,0,0-1.23.19\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M12.91,54.11a3.75,3.75,0,0,0-1.44.82,2.75,2.75,0,0,0-.53.6,2.06,2.06,0,0,0-.37.74,2.9,2.9,0,0,0-.19,1.46,3.6,3.6,0,0,0,.46,1.42,4.5,4.5,0,0,0,1,1.19,5.23,5.23,0,0,0,1.49.8l.77.19a4.69,4.69,0,0,0,.75,0,4.57,4.57,0,0,0,.74,0,5.91,5.91,0,0,0,.69-.19,5.07,5.07,0,0,0,.75-.34,3.88,3.88,0,0,0,.65-.5,3.38,3.38,0,0,0,.5-.63,2.49,2.49,0,0,0,.36-.73,3.07,3.07,0,0,0,.18-1.44,3.23,3.23,0,0,0-.46-1.38,4.5,4.5,0,0,0-1-1.15,4.74,4.74,0,0,0-1.44-.8A4.94,4.94,0,0,0,15.1,54a2.24,2.24,0,0,0-.73,0h-.73l-.69.16\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M27.68,54.07a5.41,5.41,0,0,0-1,.46,5.68,5.68,0,0,0-.88.67,4.82,4.82,0,0,0-.69.86,3.81,3.81,0,0,0-.48,1,4.49,4.49,0,0,0-.19,2.09,5.29,5.29,0,0,0,.67,2.09,5.92,5.92,0,0,0,1.43,1.68,6.38,6.38,0,0,0,2.09,1.11l.77.21a5,5,0,0,0,.77,0h.74a4.45,4.45,0,0,0,.73,0c0-.86-.17-1.72-.21-2.56s0-1.69,0-2.53V56.7a21.53,21.53,0,0,1,.19-2.42,5.78,5.78,0,0,0-1-.27,5.13,5.13,0,0,0-1,0,3.85,3.85,0,0,0-1,0,4.9,4.9,0,0,0-.92.21\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M15.5,74.11a4.54,4.54,0,0,0-1,.56,4.77,4.77,0,0,0-.8.82,3.57,3.57,0,0,0-.54,1,3.77,3.77,0,0,0-.21,1.15,4.1,4.1,0,0,0,.31,1.59,4.73,4.73,0,0,0,.92,1.3,4.27,4.27,0,0,0,1.38.88,4.38,4.38,0,0,0,1.68.33h.48a1.77,1.77,0,0,0,.46,0l.44-.1.39-.15a4.41,4.41,0,0,0,1-.6,3.62,3.62,0,0,0,.77-.84,3.9,3.9,0,0,0,.53-1,4.43,4.43,0,0,0,.16-1.15,3.63,3.63,0,0,0-.31-1.52,4.24,4.24,0,0,0-.9-1.28,4.59,4.59,0,0,0-1.34-.86,4,4,0,0,0-1.63-.35,3.84,3.84,0,0,0-.48,0h-.88L15.5,74\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M2.2,78.19a2.86,2.86,0,0,0-.86.46,3.5,3.5,0,0,0-.69.64,3.31,3.31,0,0,0-.46.82,3.34,3.34,0,0,0-.19.94,2.88,2.88,0,0,0,.23,1.26A3.36,3.36,0,0,0,2.07,84a3.63,3.63,0,0,0,1.38.25H4.58l.34-.12a3.22,3.22,0,0,0,.86-.5A4.12,4.12,0,0,0,6.45,83a3.21,3.21,0,0,0,.43-.82,2.63,2.63,0,0,0,.17-.92A2.73,2.73,0,0,0,6.82,80a3.24,3.24,0,0,0-.63-1.15,3.43,3.43,0,0,0-1.08-.69,4.29,4.29,0,0,0-1.36-.28H2.53L2.2,78\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M30,69.09a5.08,5.08,0,0,0-1.34.77A5.26,5.26,0,0,0,27.57,71a4.16,4.16,0,0,0-.69,1.38A5.16,5.16,0,0,0,26.63,74a5.73,5.73,0,0,0,1.78,4,5.54,5.54,0,0,0,1.86,1.23,6.27,6.27,0,0,0,2.26.48h.6l.61-.1a3,3,0,0,0,.59-.15c.18,0,.36-.12.54-.19h.57c-.36-.86-.69-1.71-1-2.55s-.58-1.72-.86-2.55-.5-1.72-.71-2.57-.42-1.7-.58-2.54h-1.2a3,3,0,0,0-.58.13l-.54.17\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M24.43,93.48a4.53,4.53,0,0,0-1.25.87,5.21,5.21,0,0,0-.84,1.24A4.14,4.14,0,0,0,22,97a3.76,3.76,0,0,0,.16,1.53,3.86,3.86,0,0,0,.8,1.44,3.59,3.59,0,0,0,1.27,1,3.52,3.52,0,0,0,1.55.42,3.93,3.93,0,0,0,1.67-.21H28a4.44,4.44,0,0,0,1.21-.9A4,4,0,0,0,30,99a4,4,0,0,0,.17-2.89,3.87,3.87,0,0,0-.78-1.4,3.56,3.56,0,0,0-1.23-1,4.17,4.17,0,0,0-3.16-.5h-.57\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M36.77,83.56A5.58,5.58,0,0,0,34,86.34a6,6,0,0,0-.46,2,6.15,6.15,0,0,0,.25,2.09A5.9,5.9,0,0,0,35,92.47a5.3,5.3,0,0,0,1.74,1.38,5.42,5.42,0,0,0,4.33.36h.57l.18-.11a2.82,2.82,0,0,0,.48-.27l.46-.33a2.77,2.77,0,0,0,.4-.36l.38-.4c-.57-.71-1.11-1.42-1.63-2.09s-1-1.48-1.55-2.24-1-1.54-1.44-2.34-.92-1.59-1.36-2.42h-.74\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M38.66,109.48h-.51a4.5,4.5,0,0,0-1.71,2.8,4.57,4.57,0,0,0,0,1.65,3.78,3.78,0,0,0,.65,1.53,3.92,3.92,0,0,0,1,1.07,4.37,4.37,0,0,0,1.3.54,4.11,4.11,0,0,0,1.4,0,3.94,3.94,0,0,0,1.38-.5h.48a4.11,4.11,0,0,0,1.15-1.34,4.34,4.34,0,0,0-.1-4.64,3.88,3.88,0,0,0-1-1,3.39,3.39,0,0,0-2.63-.54,3.66,3.66,0,0,0-1.36.46\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M30.58,121.5h-.31a3.85,3.85,0,0,0-.92,1,3.46,3.46,0,0,0-.5,1.28,3.21,3.21,0,0,0,0,1.31,2.9,2.9,0,0,0,.48,1.24,2.85,2.85,0,0,0,.83.83,2.55,2.55,0,0,0,1.05.4,2.79,2.79,0,0,0,1.15,0,3.27,3.27,0,0,0,1.11-.46h.31a4,4,0,0,0,.9-1.06,3.61,3.61,0,0,0,.46-1.26,3.16,3.16,0,0,0,0-1.3,2.83,2.83,0,0,0-.48-1.21,3.16,3.16,0,0,0-.81-.82,3,3,0,0,0-1-.39,2.69,2.69,0,0,0-1.13,0,3.19,3.19,0,0,0-1.11.42\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M46.67,96.09a5.29,5.29,0,0,0-1.47,1.65,6.1,6.1,0,0,0-.75,2.09,5.92,5.92,0,0,0,0,2.22,5.68,5.68,0,0,0,.88,2.09,5.83,5.83,0,0,0,1.44,1.49,5.32,5.32,0,0,0,1.78.81,5.06,5.06,0,0,0,1.9,0,4.78,4.78,0,0,0,1.84-.62h.17l.17-.11.17-.12.16-.13.57-.5a6.1,6.1,0,0,0,.88-1.23c.11-.22.2-.45.29-.67l-2.09-1.55-2.09-1.68-2-1.79c-.65-.63-1.3-1.26-1.93-1.93\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M56,120l-.34.23-.31.29-.29.32c0,.12-.19.23-.28.37a4.69,4.69,0,0,0-.64,1.53,4.47,4.47,0,0,0,0,1.63,4.17,4.17,0,0,0,.46,1.53,6.41,6.41,0,0,0,1.77,1.86,4.63,4.63,0,0,0,1,.19,3.74,3.74,0,0,0,1.05-.19,3.6,3.6,0,0,0,1-.48,2,2,0,0,0,.33-.25,1.93,1.93,0,0,0,.3-.27c.1-.11.2-.22.29-.34l.25-.35a4.41,4.41,0,0,0,.61-1.55,4.72,4.72,0,0,0,0-1.59,4.66,4.66,0,0,0-.49-1.49,3.5,3.5,0,0,0-.94-1.19,2.85,2.85,0,0,0-.94-.54,3.16,3.16,0,0,0-1-.23,3.59,3.59,0,0,0-1,.12,3.21,3.21,0,0,0-1,.44\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M58.65,105.5a6.38,6.38,0,0,0-1,4.31,6.13,6.13,0,0,0,.65,2.09,5.61,5.61,0,0,0,1.38,1.72,4.67,4.67,0,0,0,1.36.81,4.08,4.08,0,0,0,1.42.32,4.71,4.71,0,0,0,2.78-.73l.44-.32.42-.37.38-.44q.18-.24.33-.48a5,5,0,0,0,.38-.67q.15-.34.27-.69c.07-.24.14-.49.19-.74v-.73l-2.3-.79c-.76-.3-1.53-.61-2.28-.94s-1.53-.69-2.28-1.07-1.51-.77-2.24-1.21\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M74.07,124.2a2.41,2.41,0,0,0-.48.42,2.86,2.86,0,0,0-.42.5,5.24,5.24,0,0,0-.34.61A4.77,4.77,0,0,0,72.4,128a4.79,4.79,0,0,0,.35,1.53,4.14,4.14,0,0,0,.8,1.23,3.17,3.17,0,0,0,1.17.8,3,3,0,0,0,.73.16,2.81,2.81,0,0,0,.71,0,2.75,2.75,0,0,0,.69-.21,3.35,3.35,0,0,0,.63-.37l.48-.42a6.54,6.54,0,0,0,.4-.52c.12-.2.23-.4.33-.61a6.2,6.2,0,0,0,.23-.69,4.61,4.61,0,0,0,.15-1.57,5,5,0,0,0-.34-1.48,4.57,4.57,0,0,0-.77-1.22,3.28,3.28,0,0,0-1.15-.77,2.27,2.27,0,0,0-.71-.19,4.21,4.21,0,0,0-.71,0,3,3,0,0,0-1.32.54\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M73.94,138.24l-.37.33-.32.42a4.82,4.82,0,0,0-.27.5,2.76,2.76,0,0,0-.19.55,3.76,3.76,0,0,0-.14,1.29,4.23,4.23,0,0,0,.27,1.22,2.91,2.91,0,0,0,.63,1,2.29,2.29,0,0,0,.89.58,2.4,2.4,0,0,0,.59.13,1.63,1.63,0,0,0,.54,0,2.11,2.11,0,0,0,.55-.19,2.33,2.33,0,0,0,.5-.31l.38-.36.31-.42.25-.5a2.31,2.31,0,0,0,.19-.56,4.61,4.61,0,0,0,.13-1.28,4.34,4.34,0,0,0-.28-1.17,3.08,3.08,0,0,0-.6-.94,2.47,2.47,0,0,0-.9-.59,1.39,1.39,0,0,0-.57-.12,1.63,1.63,0,0,0-.54,0l-.55.16a3.84,3.84,0,0,0-.5.32\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M71.87,110.61a6.28,6.28,0,0,0,.25,4.31,5.75,5.75,0,0,0,1.11,1.73,5,5,0,0,0,1.65,1.17,4.77,4.77,0,0,0,1.05.27,3.49,3.49,0,0,0,1,0,3.61,3.61,0,0,0,1-.23,5.57,5.57,0,0,0,.9-.48,5.7,5.7,0,0,0,.64-.56,4,4,0,0,0,.57-.67,7.22,7.22,0,0,0,.46-.82,8.31,8.31,0,0,0,.33-.92c.11-.31,0-.5.15-.75s0-.48,0-.73a4.45,4.45,0,0,0,0-.73v-.71h-2.3a11.45,11.45,0,0,1-2.26-.15c-.75-.15-1.5-.17-2.26-.29s-1.52-.25-2.28-.42\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M90.63,122.32a3.08,3.08,0,0,0-.58.56,2.72,2.72,0,0,0-.42.74,3.71,3.71,0,0,0-.29.85,5.46,5.46,0,0,0,0,1,4.37,4.37,0,0,0,.25,1.52,4.57,4.57,0,0,0,.65,1.26,3.24,3.24,0,0,0,1,.86,2.54,2.54,0,0,0,1.17.33h.44a1.69,1.69,0,0,0,.44-.12l.38-.17.37-.25a2.89,2.89,0,0,0,.57-.59q.22-.36.42-.75a5.05,5.05,0,0,0,.27-.86,5.13,5.13,0,0,0,0-1,5,5,0,0,0-.25-1.49,3.73,3.73,0,0,0-.65-1.21,3.67,3.67,0,0,0-.94-.86,2.57,2.57,0,0,0-1.17-.35h-.86L91,122a1.48,1.48,0,0,0-.35.25\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M84.76,111.21a6.83,6.83,0,0,0,.33,2.1A6.66,6.66,0,0,0,86,115.1a5.42,5.42,0,0,0,1.4,1.26,4.2,4.2,0,0,0,1.72.52h.71l.63-.12.56-.23.53-.34a4.54,4.54,0,0,0,.81-.77,5.77,5.77,0,0,0,.61-1,6.17,6.17,0,0,0,.4-1.19,7.5,7.5,0,0,0,.12-1.34v-.71a5.59,5.59,0,0,0-.15-.71,3.9,3.9,0,0,0-.18-.67l-.25-.63-2,.69c-.65.21-1.32.4-2,.57l-2.09.46-2.09.33\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M104.25,115.46a2.6,2.6,0,0,0-.63.69,3.52,3.52,0,0,0-.39.94,3.34,3.34,0,0,0-.15,1.09,5.29,5.29,0,0,0,.13,1.19,4.06,4.06,0,0,0,.56,1.28,3.42,3.42,0,0,0,.84.94,2.47,2.47,0,0,0,1,.46,2.23,2.23,0,0,0,1.09,0h.52l.17-.13a3,3,0,0,0,.61-.71,3.92,3.92,0,0,0,.52-2.09,4.44,4.44,0,0,0-.17-1.15,4.31,4.31,0,0,0-.52-1.28,3.67,3.67,0,0,0-.84-.92,2.22,2.22,0,0,0-1-.46,2.15,2.15,0,0,0-1.07,0h-.19l-.25-.08h-.17l-.16.12\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M109.54,126a2,2,0,0,0-.46.57,3.49,3.49,0,0,0-.31.75,4.12,4.12,0,0,0,0,.86,4.51,4.51,0,0,0,0,.9,3.43,3.43,0,0,0,.44,1,2.44,2.44,0,0,0,.63.69,1.82,1.82,0,0,0,.77.36,1.51,1.51,0,0,0,.79,0h.53a2.12,2.12,0,0,0,.44-.59,2.72,2.72,0,0,0,.29-.73,4.12,4.12,0,0,0,0-.86,3.11,3.11,0,0,0-.13-.9,2.92,2.92,0,0,0-.41-1,2.88,2.88,0,0,0-.61-.69,2.13,2.13,0,0,0-.73-.73,1.43,1.43,0,0,0-.82,0h-.5\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M96.14,107.68a6.82,6.82,0,0,0,.79,1.84,5.5,5.5,0,0,0,1.23,1.36,4.08,4.08,0,0,0,1.51.73,3.21,3.21,0,0,0,1.57,0h.29l.25-.1.25-.15.17-.31a3.41,3.41,0,0,0,.9-1,5.57,5.57,0,0,0,.59-1.29,6.56,6.56,0,0,0,.21-1.53,6.39,6.39,0,0,0-.21-1.63,2.17,2.17,0,0,0-.21-.67,6.65,6.65,0,0,0-.27-.61,6.42,6.42,0,0,0-.34-.56,2.54,2.54,0,0,0-.36-.5l-.64.54-.65.52-.67.52-.69.51c-.32.23-.61.44-.92.62l-.94.61c-.32.19-.63.38-1,.54l-1,.55\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M114.21,105a2.21,2.21,0,0,0-.67.82,3.87,3.87,0,0,0-.34,1.11,5.4,5.4,0,0,0,0,1.27,5.09,5.09,0,0,0,.44,1.26,4,4,0,0,0,.73,1,3.06,3.06,0,0,0,.93.61,2.07,2.07,0,0,0,1,.1,1.81,1.81,0,0,0,.88-.37,2.51,2.51,0,0,0,.64-.84,3.48,3.48,0,0,0,.32-1.13,4.29,4.29,0,0,0,0-1.24,4.59,4.59,0,0,0-.42-1.23,4,4,0,0,0-.73-1,3,3,0,0,0-.88-.59,1.87,1.87,0,0,0-1-.12,1.66,1.66,0,0,0-.88.35\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M109.5,94.75c-.31.55-.65,1.07-1,1.61s-.69,1-1.07,1.55-.77,1-1.19,1.51-.84,1-1.28,1.46a6,6,0,0,0,1.11,1.49,4.22,4.22,0,0,0,1.36.87,3.08,3.08,0,0,0,1.44.19,2.52,2.52,0,0,0,1.34-.52,3.44,3.44,0,0,0,1-1.17,5.19,5.19,0,0,0,.46-1.59,5.9,5.9,0,0,0,0-1.78,6.58,6.58,0,0,0-.61-1.78c0-.21-.21-.37-.31-.56l-.38-.48a3.51,3.51,0,0,0-.42-.44l-.42-.36\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M121.84,64.42l-.31.27a1.17,1.17,0,0,0-.29.34,2.54,2.54,0,0,0-.17.46,2.44,2.44,0,0,0,0,.54,2.9,2.9,0,0,0,.17,1.09,5.22,5.22,0,0,0,.41,1,4,4,0,0,0,.67.81,2.84,2.84,0,0,0,.84.57l.38.1h.73l.31-.15.32-.25c.09-.12.17-.24.25-.37a2.32,2.32,0,0,0,.16-.44,2.53,2.53,0,0,0,0-.55,4.38,4.38,0,0,0-.12-1,4.46,4.46,0,0,0-.42-1,4,4,0,0,0-.65-.82,3.1,3.1,0,0,0-.81-.54l-.4-.13a1.21,1.21,0,0,0-.38,0h-.33l-.34.13\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M128.62,65.62a.58.58,0,0,0-.23.18,1,1,0,0,0-.17.25,1.06,1.06,0,0,0-.12.34,1.34,1.34,0,0,0,0,.4,2.1,2.1,0,0,0,0,.79,2.37,2.37,0,0,0,.31.73,2.2,2.2,0,0,0,.48.61,2.37,2.37,0,0,0,.61.42h.81l.21-.11a.58.58,0,0,0,.23-.18,1.17,1.17,0,0,0,.17-.28,1.89,1.89,0,0,0,.13-.33,2.67,2.67,0,0,0,0-.4,2.74,2.74,0,0,0-.44-1.5,2.79,2.79,0,0,0-.46-.61,2.22,2.22,0,0,0-.61-.4.71.71,0,0,0-.29,0h-.51l-.23.11\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M113.41,62.27c.17.65.3,1.3.42,1.94s.25,1.28.36,1.93.21,1.3.29,1.94l.19,1.93a2.56,2.56,0,0,0,.6.17,2.91,2.91,0,0,0,.59,0,2.26,2.26,0,0,0,.52,0,2.06,2.06,0,0,0,.48-.21,2.5,2.5,0,0,0,.51-.4,2,2,0,0,0,.37-.55,2,2,0,0,0,.27-.66,4.45,4.45,0,0,0,.13-.8A5.52,5.52,0,0,0,118,66a6.51,6.51,0,0,0-.63-1.46,5.21,5.21,0,0,0-1-1.22,4.44,4.44,0,0,0-1.23-.83l-.46-.15h-1.26\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M118,50.81a1.27,1.27,0,0,0-.42.31,1.49,1.49,0,0,0-.29.5,1.91,1.91,0,0,0-.13.63,4.45,4.45,0,0,0,0,.73,4,4,0,0,0,.34,1,3.5,3.5,0,0,0,.61.87,2.6,2.6,0,0,0,.77.63,1.69,1.69,0,0,0,.84.29h.81a1.5,1.5,0,0,0,.42-.33,1.62,1.62,0,0,0,.27-.5,3.33,3.33,0,0,0,.13-1.34,3.81,3.81,0,0,0-.34-1,4.63,4.63,0,0,0-.58-.86,3.08,3.08,0,0,0-.76-.63,2.09,2.09,0,0,0-.83-.31H118\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M109.88,51.33h0c.29.61.56,1.23.83,1.84s.53,1.21.76,1.84.48,1.23.69,1.84.42,1.24.6,1.86h1l.27-.12a2.3,2.3,0,0,0,.65-.5,3,3,0,0,0,.44-.76,3.92,3.92,0,0,0,.21-1,5,5,0,0,0,0-1.09,5.66,5.66,0,0,0-.51-1.5,6,6,0,0,0-.87-1.3,4.8,4.8,0,0,0-1.15-.92,3.08,3.08,0,0,0-1.3-.46h-1l-.3.1\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M111.38,38.17a1.34,1.34,0,0,0-.54.4,2,2,0,0,0-.29.63,1.85,1.85,0,0,0,0,.81,3.55,3.55,0,0,0,.23.92,5.11,5.11,0,0,0,.54.94,4.52,4.52,0,0,0,.73.72,2.68,2.68,0,0,0,.84.39,1.63,1.63,0,0,0,.82,0H114a1.38,1.38,0,0,0,.52-.41,1.65,1.65,0,0,0,.29-.63,2.82,2.82,0,0,0,0-.82,3.14,3.14,0,0,0-.23-.9,3.7,3.7,0,0,0-.54-.92,4.34,4.34,0,0,0-.71-.71,3.18,3.18,0,0,0-.82-.42,1.84,1.84,0,0,0-.81,0h-.26\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M116.47,35.75a.86.86,0,0,0-.38.27,1.38,1.38,0,0,0-.21.48,1.94,1.94,0,0,0,0,.59,3.05,3.05,0,0,0,.17.66,2.55,2.55,0,0,0,.42.69A2.9,2.9,0,0,0,117,39a2.19,2.19,0,0,0,.61.31,1.14,1.14,0,0,0,.58,0h.19a1,1,0,0,0,.38-.27,1.38,1.38,0,0,0,.21-.48,2,2,0,0,0,0-.59,5.61,5.61,0,0,0-.19-.67,2.53,2.53,0,0,0-.4-.67,2.56,2.56,0,0,0-.52-.52,1.76,1.76,0,0,0-.61-.31,1.47,1.47,0,0,0-.59,0h-.18\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M104.5,41a.66.66,0,0,0-.27.12l-.23.17a.55.55,0,0,0-.21.19l-.19.21c.4.52.78,1.06,1.15,1.59s.76,1.08,1.11,1.65.71,1.11,1.07,1.69l1,1.74h.21a2.16,2.16,0,0,0,.82-.65,2.71,2.71,0,0,0,.44-1,3.69,3.69,0,0,0,0-1.24,5.47,5.47,0,0,0-.36-1.36,5.94,5.94,0,0,0-.81-1.4,6.31,6.31,0,0,0-1.09-1,4.47,4.47,0,0,0-1.24-.61,2.64,2.64,0,0,0-1.25,0h-.32\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M102.41,27h-.21a1.38,1.38,0,0,0-.52.55,1.86,1.86,0,0,0-.21.79,2.82,2.82,0,0,0,.15.92,3.08,3.08,0,0,0,.46,1,4.16,4.16,0,0,0,.64.75,3.3,3.3,0,0,0,.76.52,2.24,2.24,0,0,0,.79.23,1.23,1.23,0,0,0,.71,0h0a1.39,1.39,0,0,0,.51-.54,2.39,2.39,0,0,0,.18-.8,3.21,3.21,0,0,0-.14-.92,4.24,4.24,0,0,0-.46-1,4.67,4.67,0,0,0-.65-.75,3.26,3.26,0,0,0-.73-.5,2.45,2.45,0,0,0-.78-.25,1.23,1.23,0,0,0-.71,0\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M97.2,31.88h-.1a1.85,1.85,0,0,0-.34.23,1.5,1.5,0,0,0-.27.29,2.12,2.12,0,0,0-.21.36,2.48,2.48,0,0,0-.17.37l1.47,1.32c.48.46.94.9,1.4,1.38s.94.94,1.38,1.42.9,1,1.34,1.51a2.41,2.41,0,0,0,.77-.88,3.39,3.39,0,0,0,.28-1.21,4.39,4.39,0,0,0-.19-1.4,5.86,5.86,0,0,0-.69-1.45,5.69,5.69,0,0,0-1-1.11,4.43,4.43,0,0,0-1.13-.77,3.49,3.49,0,0,0-1.54-.17,3,3,0,0,0-1.11,0\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M91.51,17.84h-.37A.37.37,0,0,0,91,18a.4.4,0,0,0-.15.14,1.59,1.59,0,0,0-.35.74,2.84,2.84,0,0,0,0,.92,4.15,4.15,0,0,0,.37,1,4.58,4.58,0,0,0,.67.9,3.88,3.88,0,0,0,.65.5,2.78,2.78,0,0,0,.67.33,2.45,2.45,0,0,0,.65.15,2.81,2.81,0,0,0,.58,0h.38l.17-.12.14-.17a1.37,1.37,0,0,0,.34-.73,2.27,2.27,0,0,0,0-.9,2.85,2.85,0,0,0-.36-1,3.74,3.74,0,0,0-.67-.87,2.77,2.77,0,0,0-.62-.51,2.34,2.34,0,0,0-.65-.33,1.86,1.86,0,0,0-.65-.15,2.08,2.08,0,0,0-.61,0\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M93.92,12.32H93.5a1.11,1.11,0,0,0-.23.52,1.52,1.52,0,0,0,0,.67,2.27,2.27,0,0,0,.27.71,3.34,3.34,0,0,0,.5.67l.46.4.49.25a2.09,2.09,0,0,0,.5,0,1.48,1.48,0,0,0,.42,0h.41a1.09,1.09,0,0,0,.23-.54,1.52,1.52,0,0,0,0-.67,2.91,2.91,0,0,0-.27-.69,2.45,2.45,0,0,0-.5-.65,2.45,2.45,0,0,0-.94-.65l-.48-.12a1.09,1.09,0,0,0-.44,0\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M88.19,24.49l-.32.11-.27.14-.27.21-.23.23-.25.36a2.83,2.83,0,0,0-.17.4,3.23,3.23,0,0,0,0,.44,3.53,3.53,0,0,0,0,.46l1.7,1,1.65,1,1.63,1.09,1.59,1.17a2.47,2.47,0,0,0,.48-1.17,3.88,3.88,0,0,0,0-1.36,5.55,5.55,0,0,0-.54-1.42,5,5,0,0,0-1-1.32,6,6,0,0,0-.92-.75,4.6,4.6,0,0,0-1-.48,3.37,3.37,0,0,0-1-.21,3,3,0,0,0-.89.1\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M78.92,11.17l-.35.12-.32.19-.25.28a1.71,1.71,0,0,0-.17.33,2.06,2.06,0,0,0-.12.92A2.81,2.81,0,0,0,78,14a3.45,3.45,0,0,0,.61.94,3.58,3.58,0,0,0,.87.78A4.29,4.29,0,0,0,80,16l.54.17h.53a1.93,1.93,0,0,0,.48,0,1.14,1.14,0,0,0,.35-.13.79.79,0,0,0,.29-.18,1.73,1.73,0,0,0,.26-.28,2.09,2.09,0,0,0,.27-1.25,3.32,3.32,0,0,0-.27-1,4.65,4.65,0,0,0-.59-.92,4.26,4.26,0,0,0-.88-.76,2.9,2.9,0,0,0-.54-.31l-.52-.17h-1\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M77.9,19.29a2.72,2.72,0,0,0-.55.18,2.37,2.37,0,0,0-.46.32,1.86,1.86,0,0,0-.37.42,2.19,2.19,0,0,0-.3.54,3.45,3.45,0,0,0-.12.46,3.84,3.84,0,0,0,0,.48,4.17,4.17,0,0,0,0,.5,4.17,4.17,0,0,0,0,.5l1.86.53,1.82.6,1.82.69,1.78.78a3.08,3.08,0,0,0,.12-1.38,4.72,4.72,0,0,0-.4-1.47,7.12,7.12,0,0,0-.87-1.38A5.91,5.91,0,0,0,81,20a4.83,4.83,0,0,0-.82-.41,4.36,4.36,0,0,0-.79-.28h-.77a2.89,2.89,0,0,0-.72,0\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M65.16,7.63a3.58,3.58,0,0,0-.55.19,1.79,1.79,0,0,0-.44.34,1.66,1.66,0,0,0-.29.48,1.65,1.65,0,0,0-.14.58,2.66,2.66,0,0,0,.16,1,2.88,2.88,0,0,0,.55,1,3.77,3.77,0,0,0,.83.86,4.55,4.55,0,0,0,1.07.61l.42.1h1.09a1.74,1.74,0,0,0,.54-.19,1.57,1.57,0,0,0,.42-.35,1.7,1.7,0,0,0,.29-.46,2.55,2.55,0,0,0,.13-.61,2.52,2.52,0,0,0-.17-1,3.75,3.75,0,0,0-.52-1,4.51,4.51,0,0,0-.84-.85,3.88,3.88,0,0,0-1-.59l-.39-.12H65.16\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M63.63,0a1.28,1.28,0,0,0-.42.13.84.84,0,0,0-.31.25.86.86,0,0,0-.23.33,1.09,1.09,0,0,0,0,.44,2,2,0,0,0,0,.77,2.69,2.69,0,0,0,.42.76,3.17,3.17,0,0,0,.62.65,4.88,4.88,0,0,0,.8.46h1.15a1.44,1.44,0,0,0,.4-.13,1.15,1.15,0,0,0,.33-.25,1.08,1.08,0,0,0,.21-.34,1,1,0,0,0,0-.43,1.94,1.94,0,0,0-.1-.76,2.71,2.71,0,0,0-.4-.75A3.13,3.13,0,0,0,65.47.5a2.64,2.64,0,0,0-.71-.31H63.63\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M66.85,16.73a2.85,2.85,0,0,0-.79.32,1.93,1.93,0,0,0-.63.54,2.37,2.37,0,0,0-.44.73,2.81,2.81,0,0,0-.21.9,5,5,0,0,0,0,.55,4.86,4.86,0,0,0,0,.54,4.84,4.84,0,0,0,.17.54,4.87,4.87,0,0,0,.21.53H69l1.88.21a11.06,11.06,0,0,1,1.88.27,4.31,4.31,0,0,0-.25-1.55,5.61,5.61,0,0,0-.79-1.44,6.51,6.51,0,0,0-1.22-1.24,5.87,5.87,0,0,0-1.57-.71,3.86,3.86,0,0,0-.58-.17,5.42,5.42,0,0,0-.57,0,2.44,2.44,0,0,0-.54,0,2.26,2.26,0,0,0-.52,0\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M50.89,7.86a1.83,1.83,0,0,0-.77.3,1.47,1.47,0,0,0-.54.54,1.67,1.67,0,0,0-.3.73,2.72,2.72,0,0,0,0,.9,3.66,3.66,0,0,0,.48,1.11,4,4,0,0,0,.82,1,4,4,0,0,0,1.09.69,3.42,3.42,0,0,0,1.21.34h.82a2.16,2.16,0,0,0,.75-.32,1.85,1.85,0,0,0,.54-.54,1.92,1.92,0,0,0,.25-.73,2.17,2.17,0,0,0,0-.88,3.48,3.48,0,0,0-.46-1.11A5.16,5.16,0,0,0,54,8.91a5.28,5.28,0,0,0-1.07-.69,4.13,4.13,0,0,0-1.19-.33h-.82\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M55.54,17.32a2.82,2.82,0,0,0-1.11.48,2.47,2.47,0,0,0-.8.84,2.68,2.68,0,0,0-.39,1.11,3.41,3.41,0,0,0,0,1.35,4,4,0,0,0,.16.59,3.37,3.37,0,0,0,.25.59,3.65,3.65,0,0,0,.32.54,6.15,6.15,0,0,0,.37.52l.78-.27.79-.25.8-.23.79-.21,1.07-.25,1.07-.19,1.06-.19,1.07-.12A5.89,5.89,0,0,0,61.08,20a6.76,6.76,0,0,0-1.19-1.36,5.69,5.69,0,0,0-1.51-1,4.68,4.68,0,0,0-1.71-.46H55.49\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M68.27,89.71a12.78,12.78,0,0,0,.67,3.77,60.13,60.13,0,0,0,3.12-11.72c.48-2.84,1.11-5.85,1.59-8.87C68.13,75.86,68.23,88.56,68.27,89.71Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M59,36.42c-10.46.35-11.84,5.08-11.69,9.22v.79C50,43,55,41.06,60.81,40.85c10.08-.33,23,4.18,30.66,9.29,4.73,3.18,10.46,8.36,10.73,14.09.13,3.87-2.93,6.28-6.86,7.72,3.62-1.08,7.43-3.07,7.3-7C102.12,46.2,75.53,35.87,59,36.42Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M73.13,72.79a4.29,4.29,0,0,0-2.89,2.84A6.51,6.51,0,0,1,73.13,72.79Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M111.07,64.4a50.72,50.72,0,0,0-4.89-13.84,52.68,52.68,0,0,0-8.66-12A48.72,48.72,0,0,0,86.33,30a40.37,40.37,0,0,0-13-4.58A33.23,33.23,0,0,0,59.41,26a29.63,29.63,0,0,0-12.55,6.69,31.9,31.9,0,0,0-8.37,12.22A39.78,39.78,0,0,0,36,61.37,47.92,47.92,0,0,0,41,79.8,50.86,50.86,0,0,0,52.75,95.46a45.38,45.38,0,0,0,15.32,9.16,36.41,36.41,0,0,0,15.83,1.95,30,30,0,0,0,23.38-15.39,36.11,36.11,0,0,0,4.19-12.89A44,44,0,0,0,111.07,64.4ZM87.89,73.63a66.48,66.48,0,0,1-11.44-.78c-1,5.25-1.94,10.46-3.43,15.54l-.46,1.26c-.14.54-1.61,5.79-3.34,5.86a1.68,1.68,0,0,1-.59-.17,2.61,2.61,0,0,1-.67.21c-2.09,0-2.61-4.5-2.68-6.28C65.07,83,64.66,73.42,73.88,72a60.15,60.15,0,0,0,.88-12.71c0-.53,0-5.3-.11-5.46a5.82,5.82,0,0,1,2.81-.8c.39,0,.5.5.52.86a58.83,58.83,0,0,1-.67,9.47c.36-1.69.84-4.89,2.24-4.93h.17c-1.34,4.45-2.26,8.89-3.27,13.51a85,85,0,0,0,10.46.52c6.53-.21,13.18-1.84,13-7.74-.34-10.22-24.37-23.51-40.81-23-5.77.18-9.75,2.53-10.33,7.48V50A23.38,23.38,0,0,0,63,62.94a49.27,49.27,0,0,0,8.08,1.65.9.9,0,0,1-.9.65c-7.8-1-14.5-3.47-19.56-8.6a13.92,13.92,0,0,0,1.65,2.09A35.85,35.85,0,0,0,62.08,66v.19h-.39c-6-1.11-15.59-7.93-15.82-14.64a6.17,6.17,0,0,1,.36-2.09,15,15,0,0,1-.82-4.19,4.7,4.7,0,0,1,0-1.06C46,38.7,52.23,36,57,35.81c20.48-.69,46.27,8.83,47,28.82C104.29,71.56,94.34,73.4,87.89,73.63Z\"\n})));\n\nvar SvgFooterLogo = function SvgFooterLogo(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 131.05 144.24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgFooterLogo, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/FooterLogo.901fdda8.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-footer-light{fill:#dbba07;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_70\",\n \"data-name\": \"Layer 70\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n id: \"FB_Icon\",\n \"data-name\": \"FB Icon\",\n className: \"cls-footer-light\",\n d: \"M6.85,2.67H8.39V.12A20.59,20.59,0,0,0,6.18,0,3.46,3.46,0,0,0,2.49,3.79V5.88H0V8.75H2.47v7.36h3V8.76H7.9l.37-2.88H5.43V4.07C5.43,3.24,5.66,2.67,6.85,2.67Z\"\n})));\n\nvar SvgFacebook = function SvgFacebook(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 8.39 16.12\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgFacebook, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/facebook.782abd82.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-footer-light{fill:#dbba07;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_70\",\n \"data-name\": \"Layer 70\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Pinterest_Icon\",\n \"data-name\": \"Pinterest Icon\",\n className: \"cls-footer-light\",\n d: \"M6.63,0C2.3,0,0,2.91,0,6.08,0,7.55.77,9.39,2,10c.19.09.29,0,.33-.13s.2-.82.28-1.15a.29.29,0,0,0-.07-.28,4,4,0,0,1-.77-2.3A4.34,4.34,0,0,1,6.13,1.75h.21A4,4,0,0,1,10.51,5.5v.38c0,2.72-1.37,4.61-3.16,4.61A1.46,1.46,0,0,1,5.82,9.1a1.58,1.58,0,0,1,0-.43A20.13,20.13,0,0,0,6.7,5.33a1.26,1.26,0,0,0-1-1.44.82.82,0,0,0-.22,0c-1,0-1.81,1-1.81,2.44a3.49,3.49,0,0,0,.3,1.49l-1.18,5a12.46,12.46,0,0,0,.16,3.28l.09,0a14.33,14.33,0,0,0,1.65-2.83l.62-2.39a2.7,2.7,0,0,0,2.31,1.15c3,0,5.2-2.79,5.2-6.25A5.87,5.87,0,0,0,6.63,0Z\"\n})));\n\nvar SvgPinterest = function SvgPinterest(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 12.77 16.12\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPinterest, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/pinterest.8609123b.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-footer-light{fill:##dbba07;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_70\",\n \"data-name\": \"Layer 70\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Insta_Icon\",\n \"data-name\": \"Insta Icon\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-footer-light\",\n d: \"M15.21,3.2a2.82,2.82,0,0,0-.68-1,2.64,2.64,0,0,0-1-.69,4.75,4.75,0,0,0-1.63-.3c-.92-.06-1.22-.06-3.53-.06H4.81a4.73,4.73,0,0,0-1.6.34A2.91,2.91,0,0,0,1.5,3.16a5,5,0,0,0-.3,1.63c-.05.9-.05,1.2-.05,3.53a33.13,33.13,0,0,0,.08,3.51,4.89,4.89,0,0,0,.31,1.66,2.92,2.92,0,0,0,1.67,1.67,4.78,4.78,0,0,0,1.62.37c.9.05,1.2.05,3.53.05s2.61,0,3.45-.05h.08a4.76,4.76,0,0,0,1.63-.31,2.6,2.6,0,0,0,1-.67,2.83,2.83,0,0,0,.69-1,4.89,4.89,0,0,0,.3-1.61c.05-.91.05-1.21.05-3.55s0-2.6-.05-3.52A5.06,5.06,0,0,0,15.21,3.2ZM8.36,12.8a4.48,4.48,0,1,1,4.47-4.48A4.49,4.49,0,0,1,8.36,12.8ZM13,4.55a.88.88,0,0,1-.88-.88.87.87,0,0,1,.26-.62A.85.85,0,0,1,13,2.79a.88.88,0,1,1,0,1.76Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-footer-light\",\n d: \"M8.36,5.38a2.95,2.95,0,1,0,3,3A2.95,2.95,0,0,0,8.36,5.38Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-footer-light\",\n d: \"M16.67,4.74a6.17,6.17,0,0,0-.39-2A4.07,4.07,0,0,0,14,.45a6,6,0,0,0-2-.38C11,0,10.7,0,8.36,0S5.71,0,4.78.05a6.22,6.22,0,0,0-2,.38,4,4,0,0,0-2.3,2.3,6.17,6.17,0,0,0-.39,2A31.8,31.8,0,0,0,0,8.32C0,10.66,0,11,.05,11.9a6.12,6.12,0,0,0,.39,2,4,4,0,0,0,2.33,2.34,6.44,6.44,0,0,0,2,.38c.92,0,1.23.05,3.58.05s2.66,0,3.58-.05a6.5,6.5,0,0,0,2-.38,4,4,0,0,0,1.44-.92,3.83,3.83,0,0,0,.92-1.42,6.12,6.12,0,0,0,.39-2c0-.92,0-1.23,0-3.58S16.71,5.67,16.67,4.74Zm-.4,7.2a5.76,5.76,0,0,1-.34,1.86,3.65,3.65,0,0,1-.86,1.29,3.38,3.38,0,0,1-1.28.85,5.56,5.56,0,0,1-1.89.36c-.91,0-1.26.05-3.54.05s-2.66,0-3.57-.05a5.79,5.79,0,0,1-1.87-.43,3.66,3.66,0,0,1-2.1-2.12,5.46,5.46,0,0,1-.36-1.88A33.73,33.73,0,0,1,.38,8.32c0-2.34,0-2.65,0-3.56A5.78,5.78,0,0,1,.78,2.89,3.65,3.65,0,0,1,2.94.77,5.83,5.83,0,0,1,4.8.38H8.36c2.28,0,2.63,0,3.56.06a5.73,5.73,0,0,1,1.87.35,3.55,3.55,0,0,1,1.29.87,3.59,3.59,0,0,1,.85,1.27,6.08,6.08,0,0,1,.35,1.89c0,.91,0,1.23,0,3.54S16.33,11,16.27,11.94Z\"\n}))));\n\nvar SvgInstagram = function SvgInstagram(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 16.71 16.66\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgInstagram, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/Instagram.9ced13ca.svg\";\nexport { ForwardRef as ReactComponent };","import React from 'react'\nimport \"../Styles/Newsletter.scss\"\n\nconst NewsLetter = () => {\n return (\n \n
\n Subscribe\n \n \n Penyesa monthly newsletter\n \n \n \n \n \n )\n}\n\nexport default NewsLetter\n","import React from 'react'\nimport \"../Styles/Footer.scss\"\nimport {ReactComponent as Logo} from \"../Images/FooterLogo.svg\"\nimport {ReactComponent as Facebook} from \"../Images/facebook.svg\"\nimport {ReactComponent as Pinterest} from \"../Images/pinterest.svg\"\nimport {ReactComponent as Instagram } from \"../Images/Instagram.svg\"\nimport NewsLetter from \"./NewsLetter\"\n// import Particles from \"react-particles-js\"\n\nconst Footer = () => {\n return (\n \n
\n \n
\n
\n
\n
\n
\n
Delivery Info
\n
Returns / Excahnges
\n
Contact
\n
\n
\n
\n ©{new Date().getFullYear()} PENYESA \n
\n {/*
*/}\n
\n )\n}\n\nexport default Footer\n","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-cartIconWhite,.cls-cartIconWhite-2{fill:#fff;}.cls-cartIconWhite{fill-rule:evenodd;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_70\",\n \"data-name\": \"Layer 70\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-cartIconWhite\",\n d: \"M16.17,22a3,3,0,1,1-3,3A3,3,0,0,1,16.17,22Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-cartIconWhite\",\n d: \"M27,21.88A3.09,3.09,0,1,1,23.88,25,3.09,3.09,0,0,1,27,21.88Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-cartIconWhite-2\",\n d: \"M33,2.27a2.15,2.15,0,0,0-2.7,1.42S28.13,9.11,27,13a2.84,2.84,0,0,1-3.19,2.22H19.27A3.18,3.18,0,0,1,16.08,13c-2-3.88-5.26-10.9-5.26-10.9A3.5,3.5,0,0,0,7.88,0H2.16a2.17,2.17,0,0,0,0,4.34H7l6,12c1.27,2.14,2.47,3.22,4.49,3.22h8.29c2.63,0,4-.94,4.69-3.22L34.4,5A2.18,2.18,0,0,0,33,2.27Z\"\n})));\n\nvar SvgCartIconWhite = function SvgCartIconWhite(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 34.49 28.06\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCartIconWhite, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/CartIconWhite.b6cb2ca6.svg\";\nexport { ForwardRef as ReactComponent };","import React, {useContext,useState,useEffect,useRef} from 'react'\nimport {CartContext} from \"../../Context/Cart.Context\"\nimport {ControlContext} from \"../../Context/Control.Context\"\nimport {ReactComponent as CartIcon} from \"../Images/CartIconWhite.svg\"\nimport \"../Styles/CartButton.scss\"\n\nconst CartButton = () => {\n const ref = useRef(null);\n const [width,setWidth ] = useState(window.innerWidth)\n const {cartTotal,cartProducts} = useContext(CartContext);\n const {controlDispatch} = useContext(ControlContext)\n const Total = cartProducts.reduce((acc,current) => (acc + current.productPrice * current.productQty),0)\n \n const handleScroll = () => {\n //On Resize\n setWidth(window.innerWidth)\n }\n useEffect(() => {\n window.addEventListener(\"resize\",handleScroll)\n handleScroll()\n \n return () => {\n window.removeEventListener(\"resize\",handleScroll)\n }\n }, [])\n\n \n \n\n const handleCartControl = () => {\n controlDispatch({type : \"CART\"});\n }\n \n return (\n \n {\n width > 500 && cartTotal > 0 &&\n <>\n
\n
\n
{cartTotal}
\n
{`R${Total}`}
\n
\n
\n \n \n \n >\n }\n
\n )\n}\n\nexport default CartButton \n","import React, {useContext,useEffect} from 'react'\nimport {useHistory} from \"react-router-dom\"\nimport {ControlContext} from \"../../Context/Control.Context\"\nimport TopView from './TopView'\nimport \"../Styles/util.scss\"\nimport Category from './Category'\nimport Promotions from \"../../Shared/Components/Promotions\"\nimport Browse from './Browse'\nimport Footer from '../../Shared/Components/Footer'\nimport CartButton from '../../Shared/Components/CartButton'\nimport {Helmet} from \"react-helmet\"\nimport { AuthContext } from '../../Context/Auth.Context'\n\n\n\nconst Home = (props) => {\n const {handleRetrieveSession} = useContext(AuthContext)\n const history = useHistory();\n const {controlDispatch,promoState} = useContext(ControlContext);\n\n useEffect(() => {\n const getUserInfo = async () => {\n await handleRetrieveSession();\n }\n getUserInfo();\n }, [])\n const handleClosePromo = () => {\n controlDispatch({\n type : \"PROMO\"\n })\n }\n const handleControlPromo = () => {\n handleClosePromo();\n history.push(\"/category/Baskets\")\n \n }\n return (\n \n
\n \n Penyesa Pantry | Deliver groceries to Zimbabwe \n \n \n \n {promoState &&
}\n \n \n \n \n \n \n \n )\n}\n\nexport default Home;","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgPenyesaLogoWhite = function SvgPenyesaLogoWhite(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 255.93 243.24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M124.08,221.32a92.88,92.88,0,0,1-92.87-92.4H9.72l17.43,18.81L18,172.38l23.91,11,1,26.29,26.28,1,11,23.92,24.65-9.16,19.29,17.87,19.3-17.87L168,234.53,179,210.61l26.28-1,1-26.28,23.91-11L221,147.73l17.41-18.8H217A92.89,92.89,0,0,1,124.08,221.32Z\",\n style: {\n fill: \"none\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M230.17,84.49,206.26,73.54l-1-26.28-26.28-1L168,22.34,143.38,31.5l-19.3-17.87L104.79,31.5,80.14,22.34l-11,23.92-26.28,1-1,26.28L18,84.49l9.16,24.65L9.76,127.92H31.21a92.88,92.88,0,0,1,185.75,0h21.46L221,109.14Z\",\n style: {\n fill: \"#5b4e03\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M128.15,35.56a92.87,92.87,0,0,0-92.88,92.36H221A92.87,92.87,0,0,0,128.15,35.56Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0,127.94c9.85,62,63.39,109.42,128,109.42s118.12-47.4,128-109.42Z\",\n style: {\n fill: \"#5b4e03\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"236.41 106.86 243.43 87.97 246.66 79.26 238.22 75.4 219.9 67.01 219.13 46.88 218.78 37.62 209.52 37.26 189.39 36.5 181 18.18 177.13 9.74 168.43 12.97 149.54 19.98 134.76 6.29 127.96 0 121.17 6.29 106.39 19.98 87.5 12.97 78.79 9.74 74.92 18.18 66.53 36.5 46.4 37.26 37.14 37.62 36.79 46.88 36.02 67.01 17.71 75.4 9.26 79.26 12.49 87.97 19.51 106.86 5.82 121.64 0.01 127.92 13.63 127.92 31.02 109.14 21.87 84.49 45.78 73.54 46.78 47.26 73.06 46.26 84.01 22.34 108.67 31.5 127.96 13.63 147.25 31.5 171.91 22.34 182.86 46.26 209.14 47.26 210.14 73.54 234.05 84.49 224.9 109.14 242.3 127.94 255.93 127.94 250.1 121.64 236.41 106.86\",\n style: {\n fill: \"#e6ddad\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M110.58,150c0,1.17-.2,14.41-.24,18.59-3.77-3.89-18.4-19.09-19.38-20.21l-.22-.17H90l-.1,1.89c-.28,5.83-1.13,23.57-1.3,26.11l0,.49,4.55.34,0-.56c0-.76.09-8.43.17-14,0-2.25.07-4.24.08-5.47,3.84,4.13,19.57,20.23,19.73,20.39l.22.15h.7V177c.15-9.43.85-24.52,1-26.8l0-.5-4.48-.24Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.25,172.91c-2.51.19-6.44.14-8.11.12h-.28V165l3,.07,3.84.08h.52l-.15-4-.54.07c-1.55.19-5.28.35-6.7.39v-8.44l2.57-.06c2.1-.06,4.72-.12,5.41-.12h.53l-.2-4-.54.07c-1.16.14-10.83.7-11.73.7h-.53l0,.52c0,.7.11,9.74.11,10.25v5c0,1.47,0,8.9-.11,10.76l0,.53h.53c.39,0,3.8.11,6.81.2l5.73.17H82l-.19-4.23Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M53.55,150.19h0a50.93,50.93,0,0,0-7.08-.49H46v.5c0,.25,0,1.85.05,3.63,0,2.19.06,4.64.06,5.11V163c0,2.67-.11,11.6-.18,13.19l0,.52h4.57l-.06-.55c0-.48-.07-2.5-.07-5.53v-1.79c7.16-1.55,11.76-5.86,11.76-11.05C62.08,153.8,59.05,151.09,53.55,150.19Zm-3.23,15V153.47c6.8.28,7.15,4.13,7.15,4.91C57.47,162.71,53.24,164.51,50.32,165.23Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M177.6,161.53l-.39-.23-.69-.4c-1.46-.82-3.27-1.84-3.27-3.22,0-2.69,5.05-4.42,7.36-4.79l.54-.09-1.05-3.86-.47.1c-5.28,1.2-11,5.08-11,9.27,0,3.06,2.66,4.75,5.62,6.35s3.61,2.36,3.61,3.84c0,2.6-4.26,4.39-7.9,5.13l-.56.11,1.31,3.76.43-.1c7.88-1.85,11.4-6.25,11.4-9.79C182.55,164.45,180.26,163.1,177.6,161.53Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M214.72,174.55c-1.28-2-4.15-7.18-7.18-12.72-2.87-5.21-5.82-10.6-7.43-13.2l-.23-.23h-.55l-.15.23c-.43.68-3,5.6-5.9,11.3-3.14,6.07-6.69,13-7.76,14.83l-.24.42,3.93,2.48.24-.49c.28-.55,1-2.19,1.76-3.93.83-1.89,1.84-4.19,2.23-5l12.33-.5c.63,1.11,2.9,5.47,4,7.67l1.14,2.18,4-2.66Zm-19.5-9.75c.26-.52.63-1.3,1.12-2.33,1-2.16,2.5-5.2,3.23-6.63,1,1.91,3.58,6.73,4.55,8.59Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M143.4,149.13a20.34,20.34,0,0,0-7.36,5h0a21.86,21.86,0,0,0-4.13,6.45,24.77,24.77,0,0,0-4.54-6.94,23.94,23.94,0,0,0-5.94-4.46l-.44-.23-2,3.82.5.21a15.93,15.93,0,0,1,5.29,4,16.84,16.84,0,0,1,4.67,11.2V171c0,.46-.15,4.4-.19,5.26l0,.52H134l-.06-.55c-.07-.73-.18-4-.18-4.53v-3.49a16.52,16.52,0,0,1,4.16-10.5,15.19,15.19,0,0,1,6.86-4.69l.52-.15L143.85,149Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M162.08,172.91c-2.52.19-6.44.14-8.12.12h-.27V165l3,.07,3.84.08h.52l-.15-4-.54.07c-1.55.19-5.28.35-6.69.39v-8.44l2.57-.06c2.1-.06,4.72-.12,5.41-.12h.53l-.21-4-.53.07c-1.16.14-10.84.7-11.73.7h-.53l0,.52c0,.7.11,9.74.11,10.25v5c0,1.47,0,8.9-.11,10.76l0,.53h.53c.38,0,3.79.11,6.8.2l5.73.17h.53l-.2-4.23Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"text\", {\n transform: \"translate(88.81 205.77)\",\n style: {\n fontSize: \"22.77252960205078px\",\n fill: \"#daba27\",\n stroke: \"#daba27\",\n strokeMiterlimit: 10,\n strokeWidth: \"0.5px\",\n fontFamily: \"Microsoft-Yi-Baiti, Microsoft Yi Baiti\",\n fontStyle: \"italic\",\n letterSpacing: \"0.05999381541596353em\"\n }\n }, \"PANTRY\"), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"164.9 68.11 164 62.71 147.84 64.94 140.81 95.8 102.25 100.62 94.73 72.92 91.39 72.92 98.28 104.89 145.78 101.63 152.8 69.67 164.9 68.11\",\n style: {\n fill: \"#3e3a27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M137.32,104.05a7.69,7.69,0,1,0,7.69,7.69A7.68,7.68,0,0,0,137.32,104.05Zm0,11.88a4.2,4.2,0,1,1,4.2-4.19A4.19,4.19,0,0,1,137.32,115.93Z\",\n style: {\n fill: \"#3e3a27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M106,106.14a6.64,6.64,0,1,0,6.64,6.64A6.64,6.64,0,0,0,106,106.14Zm0,10.64a4,4,0,1,1,4-4A4,4,0,0,1,106,116.78Z\",\n style: {\n fill: \"#3e3a27\"\n }\n }));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPenyesaLogoWhite, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/PenyesaLogoWhite.c593d73d.svg\";\nexport { ForwardRef as ReactComponent };","import React from 'react'\nimport \"../Styles/Pagination.scss\"\nconst Pagination = ({itemsPerPage, totalItems, paginate, currentPage}) => {\n const pageNumbers = [];\n for(let i =1; i <= Math.ceil(totalItems/itemsPerPage); i++){\n pageNumbers.push(i)\n }\n const handlePaginate = (event) => {\n const {id} = event.target;\n if(id === \"back\"){\n currentPage > 1 && paginate(currentPage - 1) \n }else{\n currentPage < Math.ceil(totalItems/itemsPerPage) && paginate(currentPage + 1)\n }\n \n }\n return (\n \n
\n {\n pageNumbers.map(element =>
paginate(element)} className={`page-number ${currentPage === element && \"page-number--active\"}`} key={`pg-${element}`}>{`${element}`}
)\n }\n
\n
\n )\n}\n\nexport default Pagination\n","import React, { useState } from \"react\";\nimport \"../Styles/SearchBar.scss\"\n\nconst SearchBar = ({onFilter}) => {\n const [searchTerm, setSearchTerm] = useState(\"\");\n const [isFocused, setIsFocused] = useState(false);\n\n const handleInputFocus = () => {\n setIsFocused(true);\n };\n\n const handleInputBlur = () => {\n setIsFocused(false);\n };\n\n\n const handleInputChange = (event) => {\n const {value} = event.target;\n setSearchTerm(value);\n // Throttle the filter function call\n setTimeout(() => {\n onFilter(value);\n }, 100); // Adjust the timeout value as needed\n };\n\n return (\n \n \n
\n );\n};\n\nexport default SearchBar;\n","import React, {useContext, useState, useEffect} from 'react'\nimport \"../Styles/Category.scss\"\nimport Card from \"../../Shared/Components/Card\"\nimport {ReactComponent as CategoryLogo} from \"../Images/PenyesaLogoWhite.svg\"\nimport { Link, useParams} from \"react-router-dom\"\nimport {ProductsContext} from \"../../Context/Products.Context\"\nimport Footer from '../../Shared/Components/Footer'\nimport CartButton from '../../Shared/Components/CartButton'\nimport Pagination from \"./Pagination\"\nimport ChristmasIcon from \"../Images/christmasBell.gif\"\nimport {Helmet} from \"react-helmet\"\nimport SearchBar from './SearchBar';\n\n\n\nconst MetaData = {\n Baskets : {\n title : \"Penyesa Pantry Baskets | Quality Grocery hampers\",\n description : \"Penyesa Baskets are carefully packed, to offer essential grocery hampers at great value.Packed from a wide range of every-day products\"\n },\n Food :{\n title : \"Penyesa Food Pantry | Buy Groceries Online\",\n description : \"Penyesa Food Pantry has a wide selection of your favourite daily items. Buy cooking ingredients,baking essentials,snacks and much more all online... \"\n },\n Health :{\n title : \"Penyesa Health & Beauty | Shop Online\",\n description : \"You deserve to shine!Shop online for quality and great value Health & Beauty Products.Deliver to Zimbabwe\"\n },\n Household : {\n title : \"Penyesa Household | Household Products Online\",\n description : \"Buy household essentials from quality brands from our online Pantry. Buy and send top quality household items to Zimbabwe.\"\n },\n Gifts : {\n title : \"Penyesa Gifts | Shop for treats and gourmet hampers \",\n description : \"Surprise your loved ones with treats and gourmet hampers.Buy and send gifts for special occassions.Shop for non alcoholic cocktails, chocolates \"\n }\n}\n\nfunction Category() {\n const {title} = useParams();\n const {products, isLoading} = useContext(ProductsContext);\n\n //Set Up pagination\n const [currentPage, setCurrentPage] = useState(1);\n const [itemsPerPage, setItemsPerPage] = useState(16);\n const [initialCategoryProducts, setInitialCategoryProducts] = useState([])\n const [categoryProducts, setCategoryProducts] = useState([])\n\n const handleFilter = (searchTerm) => {\n if (!searchTerm) setCategoryProducts(initialCategoryProducts);\n const filteredProducts = initialCategoryProducts.filter(\n (product) =>\n product?.brand?.toLowerCase().includes(searchTerm.toLowerCase()) ||\n product?.title?.toLowerCase().includes(searchTerm.toLowerCase()) ||\n product?.description\n ?.toLowerCase()\n .includes(searchTerm.toLowerCase())\n );\n\n setCategoryProducts(filteredProducts);\n };\n\n\n const categories = {\n baskets : (\n setCurrentPage(1)} to=\"/category/Baskets\">\n \n \n ) ,\n pantry : (\n setCurrentPage(1)} to=\"/category/Food\">\n \n
\n \n Food Pantry
\n \n
\n \n ),\n health : (\n setCurrentPage(1)} to=\"/category/Health\">\n \n
\n \n Health & Beauty
\n \n
\n \n ),\n household :(\n setCurrentPage(1)} to=\"/category/Household\">\n \n \n ),\n gifts : (\n setCurrentPage(1)} to=\"/category/Gifts\">\n \n
\n \n Gifts
\n \n
\n \n )\n\n }\n\n const indexOfLastPage = currentPage * itemsPerPage;\n const indexOfFirstPage = indexOfLastPage - itemsPerPage;\n\n\n //Change Page\n const handlePaginate = (pageNumber) => {\n setCurrentPage(pageNumber)\n }\n useEffect(() => {\n console.log(products);\n const productsInCategory = products.filter((product) => {\n return product.category === title || product.category === \"Temp\";\n });\n const currentItems = productsInCategory.slice(\n indexOfFirstPage,\n indexOfLastPage\n );\n\n setInitialCategoryProducts(currentItems);\n setCategoryProducts(currentItems);\n }, [\n setCategoryProducts,\n indexOfFirstPage,\n indexOfLastPage,\n title,\n isLoading,\n ]);\n\n useEffect(() => {\n window.scrollTo({\n top : 30,\n left : 0,\n behavior: \"smooth\"\n });\n }, [currentPage])\n return (\n <>\n \n
\n {MetaData[title].title} \n \n \n
\n
\n {Object.keys(categories).map((key) => categories[key])}\n
\n
\n
\n
\n {/*
*/}\n
{title} \n {/*
*/}\n
\n
\n
\n {categoryProducts.map((card) => (\n \n ))}\n
\n
{\n return product.category === title;\n }).length}\n paginate={handlePaginate}\n />\n \n
\n \n \n >\n );\n}\n\nexport default Category\n","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-face-d{fill:#5b4e03;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_70\",\n \"data-name\": \"Layer 70\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n id: \"FB_Icon\",\n \"data-name\": \"FB Icon\",\n className: \"cls-face-d\",\n d: \"M6.85,2.67H8.39V.12A20.59,20.59,0,0,0,6.18,0,3.46,3.46,0,0,0,2.49,3.79V5.88H0V8.75H2.47v7.36h3V8.76H7.9l.37-2.88H5.43V4.07C5.43,3.24,5.66,2.67,6.85,2.67Z\"\n})));\n\nvar SvgFacebookDark = function SvgFacebookDark(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 8.39 16.12\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgFacebookDark, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/Facebook-dark.76a9b4c5.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-inst-d{fill:#5b4e03;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_70\",\n \"data-name\": \"Layer 70\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Insta_Icon\",\n \"data-name\": \"Insta Icon\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-inst-d\",\n d: \"M15.21,3.2a2.82,2.82,0,0,0-.68-1,2.64,2.64,0,0,0-1-.69,4.75,4.75,0,0,0-1.63-.3c-.92-.06-1.22-.06-3.53-.06H4.81a4.73,4.73,0,0,0-1.6.34A2.91,2.91,0,0,0,1.5,3.16a5,5,0,0,0-.3,1.63c-.05.9-.05,1.2-.05,3.53a33.13,33.13,0,0,0,.08,3.51,4.89,4.89,0,0,0,.31,1.66,2.92,2.92,0,0,0,1.67,1.67,4.78,4.78,0,0,0,1.62.37c.9.05,1.2.05,3.53.05s2.61,0,3.45-.05h.08a4.76,4.76,0,0,0,1.63-.31,2.6,2.6,0,0,0,1-.67,2.83,2.83,0,0,0,.69-1,4.89,4.89,0,0,0,.3-1.61c.05-.91.05-1.21.05-3.55s0-2.6-.05-3.52A5.06,5.06,0,0,0,15.21,3.2ZM8.36,12.8a4.48,4.48,0,1,1,4.47-4.48A4.49,4.49,0,0,1,8.36,12.8ZM13,4.55a.88.88,0,0,1-.88-.88.87.87,0,0,1,.26-.62A.85.85,0,0,1,13,2.79a.88.88,0,1,1,0,1.76Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-inst-d\",\n d: \"M8.36,5.38a2.95,2.95,0,1,0,3,3A2.95,2.95,0,0,0,8.36,5.38Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-inst-d\",\n d: \"M16.67,4.74a6.17,6.17,0,0,0-.39-2A4.07,4.07,0,0,0,14,.45a6,6,0,0,0-2-.38C11,0,10.7,0,8.36,0S5.71,0,4.78.05a6.22,6.22,0,0,0-2,.38,4,4,0,0,0-2.3,2.3,6.17,6.17,0,0,0-.39,2A31.8,31.8,0,0,0,0,8.32C0,10.66,0,11,.05,11.9a6.12,6.12,0,0,0,.39,2,4,4,0,0,0,2.33,2.34,6.44,6.44,0,0,0,2,.38c.92,0,1.23.05,3.58.05s2.66,0,3.58-.05a6.5,6.5,0,0,0,2-.38,4,4,0,0,0,1.44-.92,3.83,3.83,0,0,0,.92-1.42,6.12,6.12,0,0,0,.39-2c0-.92,0-1.23,0-3.58S16.71,5.67,16.67,4.74Zm-.4,7.2a5.76,5.76,0,0,1-.34,1.86,3.65,3.65,0,0,1-.86,1.29,3.38,3.38,0,0,1-1.28.85,5.56,5.56,0,0,1-1.89.36c-.91,0-1.26.05-3.54.05s-2.66,0-3.57-.05a5.79,5.79,0,0,1-1.87-.43,3.66,3.66,0,0,1-2.1-2.12,5.46,5.46,0,0,1-.36-1.88A33.73,33.73,0,0,1,.38,8.32c0-2.34,0-2.65,0-3.56A5.78,5.78,0,0,1,.78,2.89,3.65,3.65,0,0,1,2.94.77,5.83,5.83,0,0,1,4.8.38H8.36c2.28,0,2.63,0,3.56.06a5.73,5.73,0,0,1,1.87.35,3.55,3.55,0,0,1,1.29.87,3.59,3.59,0,0,1,.85,1.27,6.08,6.08,0,0,1,.35,1.89c0,.91,0,1.23,0,3.54S16.33,11,16.27,11.94Z\"\n}))));\n\nvar SvgInstagramDark = function SvgInstagramDark(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 16.71 16.66\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgInstagramDark, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/Instagram-dark.c142b652.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-pint-d{fill:#5b4e03;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_70\",\n \"data-name\": \"Layer 70\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Pinterest_Icon\",\n \"data-name\": \"Pinterest Icon\",\n className: \"cls-pint-d\",\n d: \"M6.63,0C2.3,0,0,2.91,0,6.08,0,7.55.77,9.39,2,10c.19.09.29,0,.33-.13s.2-.82.28-1.15a.29.29,0,0,0-.07-.28,4,4,0,0,1-.77-2.3A4.34,4.34,0,0,1,6.13,1.75h.21A4,4,0,0,1,10.51,5.5v.38c0,2.72-1.37,4.61-3.16,4.61A1.46,1.46,0,0,1,5.82,9.1a1.58,1.58,0,0,1,0-.43A20.13,20.13,0,0,0,6.7,5.33a1.26,1.26,0,0,0-1-1.44.82.82,0,0,0-.22,0c-1,0-1.81,1-1.81,2.44a3.49,3.49,0,0,0,.3,1.49l-1.18,5a12.46,12.46,0,0,0,.16,3.28l.09,0a14.33,14.33,0,0,0,1.65-2.83l.62-2.39a2.7,2.7,0,0,0,2.31,1.15c3,0,5.2-2.79,5.2-6.25A5.87,5.87,0,0,0,6.63,0Z\"\n})));\n\nvar SvgPinterestDark = function SvgPinterestDark(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 12.77 16.12\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPinterestDark, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/Pinterest-dark.f651c216.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-Mobile-Nav-2{fill:#5b4e03;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_70\",\n \"data-name\": \"Layer 70\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Centre_Footer_Group\",\n \"data-name\": \"Centre Footer Group\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Phone_Icon\",\n \"data-name\": \"Phone & Icon\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-Mobile-Nav-2\",\n d: \"M9,10.39a4,4,0,0,0,1.06-1c1-1.45.77-1.83.77-1.83A13.71,13.71,0,0,0,9,3.6,13.58,13.58,0,0,0,6.23.32,2.84,2.84,0,0,0,3.45.41h0a5.54,5.54,0,0,0-.53.38Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-Mobile-Nav-2\",\n d: \"M22.45,25.7a13.47,13.47,0,0,0-1.82-3.94,13.32,13.32,0,0,0-2.81-3.31s-.25-.37-2-.07a3.84,3.84,0,0,0-1.34.55l6.14,9.59q.29-.15.57-.33h0A2.84,2.84,0,0,0,22.45,25.7Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-Mobile-Nav-2\",\n d: \"M13.4,19.87a1.32,1.32,0,0,1-1.21.23,8.25,8.25,0,0,1-4-3.16c-.94-1.42-2.06-5.26-.48-6L8,10.89,2,1.55a6,6,0,0,0-1.8,2.9s-1.6,6.31,4,15c5.28,8.27,11.3,9.79,11.92,9.92h.08A6.15,6.15,0,0,0,19.56,29l-6-9.32Z\"\n})))));\n\nvar SvgMobile = function SvgMobile(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 22.45 29.49\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgMobile, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/Mobile.ced1d789.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-Email-Nav{fill:#5b4e03;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_70\",\n \"data-name\": \"Layer 70\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Centre_Footer_Group\",\n \"data-name\": \"Centre Footer Group\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Email_Icon\",\n \"data-name\": \"Email & Icon\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Email\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-Email-Nav\",\n d: \"M16.13,16.13l-4-3.5L.73,22.42A2.3,2.3,0,0,0,2.3,23H30a2.31,2.31,0,0,0,1.54-.62L20.12,12.63Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-Email-Nav\",\n d: \"M31.53.62A2.31,2.31,0,0,0,30,0H2.3A2.29,2.29,0,0,0,.77.63l15.36,13.2Z\"\n}), /*#__PURE__*/React.createElement(\"polygon\", {\n className: \"cls-Email-Nav\",\n points: \"0 2.02 0 21.17 11.14 11.71 0 2.02\"\n}), /*#__PURE__*/React.createElement(\"polygon\", {\n className: \"cls-Email-Nav\",\n points: \"21.12 11.71 32.26 21.17 32.26 2.02 21.12 11.71\"\n}))))));\n\nvar SvgEmail = function SvgEmail(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 32.26 23.04\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgEmail, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/Email.07c6697e.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \".cls-cartIc,.cls-cartIc-2{fill:#5b4e03;}.cls-cartIc{fill-rule:evenodd;}\"));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_2\",\n \"data-name\": \"Layer 2\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Layer_70\",\n \"data-name\": \"Layer 70\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-cartIc\",\n d: \"M16.17,22a3,3,0,1,1-3,3A3,3,0,0,1,16.17,22Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-cartIc\",\n d: \"M27,21.88A3.09,3.09,0,1,1,23.88,25,3.09,3.09,0,0,1,27,21.88Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-cartIc-2\",\n d: \"M33,2.27a2.15,2.15,0,0,0-2.7,1.42S28.13,9.11,27,13a2.84,2.84,0,0,1-3.19,2.22H19.27A3.18,3.18,0,0,1,16.08,13c-2-3.88-5.26-10.9-5.26-10.9A3.5,3.5,0,0,0,7.88,0H2.16a2.17,2.17,0,0,0,0,4.34H7l6,12c1.27,2.14,2.47,3.22,4.49,3.22h8.29c2.63,0,4-.94,4.69-3.22L34.4,5A2.18,2.18,0,0,0,33,2.27Z\"\n})));\n\nvar SvgCart = function SvgCart(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 34.49 28.06\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCart, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/Cart.d2728ff7.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0,172v-172h172v172z\",\n fill: \"none\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"#5b4e03\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M86.1075,6.7725c-43.61533,0 -79.12,35.50467 -79.12,79.12c0,43.61533 35.50467,79.12 79.12,79.12c23.3781,0 44.43061,-10.21499 58.89656,-26.3711c1.72575,-1.81717 2.32705,-4.42892 1.56965,-6.81778c-0.7574,-2.38887 -2.7537,-4.17703 -5.21122,-4.66789c-2.45752,-0.49085 -4.98757,0.39324 -6.60453,2.30786c-11.97388,13.37286 -29.26937,21.7889 -48.65047,21.7889c-36.17891,0 -65.36,-29.18109 -65.36,-65.36c0,-36.17891 29.18109,-65.36 65.36,-65.36c19.37733,0 36.67279,8.41529 48.65047,21.7889c1.61696,1.91462 4.14701,2.7987 6.60452,2.30785c2.45751,-0.49086 4.45382,-2.27902 5.21121,-4.66788c0.7574,-2.38886 0.1561,-5.0006 -1.56964,-6.81778c-14.46904,-16.15534 -35.52158,-26.37109 -58.89656,-26.37109zM133.9786,54.86531c-2.79841,0.00347 -5.31595,1.7014 -6.36771,4.29465c-1.05175,2.59324 -0.42817,5.56514 1.57724,7.51691l12.33562,12.33563h-62.51125c-2.48118,-0.03509 -4.78904,1.2685 -6.03987,3.41161c-1.25083,2.1431 -1.25083,4.79369 0,6.93679c1.25083,2.1431 3.55869,3.4467 6.03987,3.41161h62.51125l-12.33562,12.33563c-1.79734,1.72562 -2.52135,4.28808 -1.89282,6.69912c0.62853,2.41104 2.5114,4.29391 4.92245,4.92245c2.41104,0.62853 4.9735,-0.09548 6.69912,-1.89282l23.4686,-23.46859c1.71744,-1.30466 2.72377,-3.33912 2.71849,-5.49591c-0.00528,-2.15678 -1.02155,-4.1863 -2.74536,-5.48253l-23.44172,-23.44172c-1.29693,-1.33318 -3.07834,-2.08452 -4.93828,-2.08281z\"\n}));\n\nvar SvgSignout = function SvgSignout(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n x: \"0px\",\n y: \"0px\",\n width: 17,\n height: 15,\n viewBox: \"0 0 172 172\",\n style: {\n fill: \"#000000\"\n },\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n fill: \"none\",\n fillRule: \"nonzero\",\n stroke: \"none\",\n strokeWidth: 1,\n strokeLinecap: \"butt\",\n strokeLinejoin: \"miter\",\n strokeMiterlimit: 10,\n strokeDasharray: \"\",\n strokeDashoffset: 0,\n fontFamily: \"none\",\n fontWeight: 700,\n fontSize: \"none\",\n textAnchor: \"none\",\n style: {\n mixBlendMode: \"normal\"\n }\n }, _ref2, _ref3));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSignout, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/Signout.7cf54ec6.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0,172v-172h172v172z\",\n fill: \"none\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"#5b4e03\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M86,14.33333c-19.72655,0 -35.83333,16.1068 -35.83333,35.83333c0,19.72653 16.10679,35.83333 35.83333,35.83333c19.72655,0 35.83333,-16.1068 35.83333,-35.83333c0,-19.72653 -16.10679,-35.83333 -35.83333,-35.83333zM86,25.08333c13.91682,0 25.08333,11.16652 25.08333,25.08333c0,13.91681 -11.16651,25.08333 -25.08333,25.08333c-13.91682,0 -25.08333,-11.16652 -25.08333,-25.08333c0,-13.91681 11.16651,-25.08333 25.08333,-25.08333zM44.79167,100.33333c-8.84188,0 -16.125,7.28312 -16.125,16.125v4.2972c0,10.53809 6.68189,19.99054 16.87386,26.49007c10.19197,6.49953 24.13682,10.42106 40.45947,10.42106c16.32265,0 30.2675,-3.92153 40.45947,-10.42106c10.19197,-6.49953 16.87386,-15.95198 16.87386,-26.49007v-4.2972c0,-8.84188 -7.28312,-16.125 -16.125,-16.125zM44.79167,111.08333h82.41667c3.03329,0 5.375,2.34171 5.375,5.375v4.2972c0,5.96674 -3.84326,12.28583 -11.90479,17.42676c-8.06153,5.14093 -20.09853,8.73438 -34.67855,8.73438c-14.58001,0 -26.61702,-3.59345 -34.67855,-8.73437c-8.06153,-5.14093 -11.90479,-11.46002 -11.90479,-17.42676v-4.2972c0,-3.03329 2.34171,-5.375 5.375,-5.375z\"\n}));\n\nvar SvgProfile = function SvgProfile(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n x: \"0px\",\n y: \"0px\",\n width: 17,\n height: 17,\n viewBox: \"0 0 172 172\",\n style: {\n fill: \"#000000\"\n },\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n fill: \"none\",\n fillRule: \"nonzero\",\n stroke: \"none\",\n strokeWidth: 1,\n strokeLinecap: \"butt\",\n strokeLinejoin: \"miter\",\n strokeMiterlimit: 10,\n strokeDasharray: \"\",\n strokeDashoffset: 0,\n fontFamily: \"none\",\n fontWeight: \"none\",\n fontSize: \"none\",\n textAnchor: \"none\",\n style: {\n mixBlendMode: \"normal\"\n }\n }, _ref2, _ref3));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgProfile, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/Profile.6843876e.svg\";\nexport { ForwardRef as ReactComponent };","import React, {useContext} from 'react'\nimport {AuthContext} from \"../../Context/Auth.Context\"\nimport \"../Styles/AuthMessage.scss\"\n\nconst AuthMessage = () => {\n const {message} = useContext(AuthContext)\n return (\n \n {message}\n
\n )\n}\n\nexport default AuthMessage\n","import React, {useContext,useState} from 'react'\nimport {ReactComponent as Facebook} from \"../Images/Facebook-dark.svg\"\nimport {ReactComponent as Instagram} from \"../Images/Instagram-dark.svg\"\nimport {ReactComponent as Pinterest} from \"../Images/Pinterest-dark.svg\"\nimport {ReactComponent as Mobile} from \"../Images/Mobile.svg\"\nimport {ReactComponent as Email} from \"../Images/Email.svg\"\nimport {ReactComponent as CartIcon} from \"../Images/Cart.svg\"\nimport {ReactComponent as SignoutIcon} from '../Images/Signout.svg' \nimport {ReactComponent as ProfileIcon} from '../Images/Profile.svg' \nimport {NavLink} from \"react-router-dom\"\nimport {ControlContext} from \"../../Context/Control.Context\"\nimport {AuthContext} from \"../../Context/Auth.Context\"\nimport \"../Styles/Navbar.scss\"\nimport AuthMessage from './AuthMessage'\n\n\n\nconst Navbar = () => {\n const {controlDispatch} = useContext(ControlContext)\n const {userInfo,status, currentAuthState,handleSignOut} = useContext(AuthContext)\n const [accountState, setAccountState] = useState(false)\n const handleCartControl = () => {\n controlDispatch({type : \"CART\"});\n }\n const signOut = () => {\n handleSignOut();\n setAccountState(false);\n }\n return (\n \n
\n
\n
\n
\n Home\n \n
\n Shop\n \n {/*
\n Home\n */}\n
\n {\n currentAuthState === \"signedin\" &&
setAccountState(true)}>{`${userInfo.first_name.slice(0,1)}${userInfo.last_name.slice(0,1)}`}
\n\n }\n {\n accountState === true &&
setAccountState(false)}>\n
\n
\n { } Sign out \n
\n
\n }\n \n
\n {\n status === true &&
\n }\n
\n )\n}\n\nexport default Navbar\n","import React, {useContext} from 'react'\nimport {useHistory} from \"react-router-dom\"\nimport {ControlContext} from \"../../Context/Control.Context\"\nimport {CartContext} from \"../../Context/Cart.Context\"\nimport { ProductsContext} from \"../../Context/Products.Context\"\nimport \"../Styles/SideBarCart.scss\"\nimport {SwipeableDrawer as SwipeDrawer}\n from '@material-ui/core';\n\nfunction SideBarCart() {\n const {cartOpenState, controlDispatch} = useContext(ControlContext)\n const {cartProducts, cartDispatch} = useContext(CartContext)\n const {productsDispatch} = useContext(ProductsContext)\n const history = useHistory();\n const handleShowCart = ()=> {\n controlDispatch({type : \"CART\"})\n }\n\n //Updating Quantites\n const handleAddQuantity = (id)=> {\n cartDispatch({\n type : \"AddProduct\",\n itemID : id,\n })\n //Subtract Stock Total\n productsDispatch({type : \"RemoveStockQty\", productID: id})\n }\n const handleRemoveQuantity = (id, qty) => {\n if(qty > 1){\n cartDispatch({type : \"Subtract\", itemID : id})\n }else{\n cartDispatch({type: \"RemoveProduct\", itemID:id})\n //Remove Cart Label on Product\n productsDispatch({type:\"RemoveCartLabel\", productID : id})\n }\n //Add Stock Total\n productsDispatch({type : \"AddStockQty\", productID: id})\n }\n const handleCheckout = () => {\n cartDispatch({type : \"cartID\"});\n controlDispatch({type: \"CART\"})\n history.push(\"/checkout/shipping\")\n }\n const toggleDrawer = (anchor, open) => (event) => {\n if (event && event.type === 'keydown' && (event.key === 'Tab' || event.key === 'Shift')) {\n return;\n }\n \n \n };\n const Total = cartProducts.reduce((acc,current) => acc + current.productQty * current.productPrice,0)\n return (\n \n \n
\n \n
Your Cart \n \n \n {\n cartProducts.length > 0 ? (\n
\n {\n cartProducts.map(product => (\n
\n
\n
\n
\n
\n
{product.productBrand} \n
{product.productTitle}
\n
{`R${product.productPrice}`}
\n
\n
\n
handleAddQuantity(product.productID)}> \n
{product.productQty}
\n
handleRemoveQuantity(product.productID, product.productQty)}> \n
\n
\n ))\n } \n
\n ):\n (\n
\n
Cart Is Empty \n \n \n )\n }\n \n
\n
\n { cartProducts.length > 0 && `Cart Total : R${Total}`}\n
\n {\n cartProducts.length > 0 ? \n (\n
\n \n Checkout\n \n ):\n (\n
\n \n Continue Shopping\n \n )\n }\n
\n
\n \n )\n}\n\nexport default SideBarCart\n","import React from 'react'\nimport { useLocation } from 'react-router-dom'\nimport \"../Styles/BreadCrumb.scss\"\n\nconst urls = [ \"/checkout/shipping\",\"/checkout/payment\",\"/checkout/review\"]\nfunction Breadcrumb() {\n let location = useLocation();\n const stringName = location.pathname\n const countState = urls.findIndex((indexItem => {return indexItem === stringName} ))\n \n \n return (\n \n {/**Shipping */}\n
\n
0 && \"breadcrumb-checked\"}`}>\n {countState > 0 ? : \"1\"}\n
\n
Shipping
\n
\n
\n
\n \n {/**Billing */}\n
\n
1 && \"breadcrumb-checked\"}`}>\n {countState > 1 ? : \"2\" }\n
\n
Payment
\n \n
\n
\n
\n \n {/**Review*/}\n
\n
2 && \"breadcrumb-checked\"}`}>\n {countState > 2 ? : \"3\"}\n
\n
Review
\n
\n
\n )\n}\n\nexport default Breadcrumb\n","import React,{useContext,useState,useRef} from 'react'\nimport {useHistory} from \"react-router-dom\"\nimport \"../Styles/OrderSummary.scss\"\nimport { CartContext } from '../../Context/Cart.Context';\nimport { ProductsContext } from '../../Context/Products.Context';\n\nfunction OrderSummary({cartProducts}) {\n const Total = cartProducts.reduce((acc,current) => acc + current.productQty * current.productPrice,0).toFixed(2)\n const history = useHistory();\n const [isOpen,setIsOpen] = useState(true)\n const [heightState, setHeightState] = useState(\"0px\")\n const vat = (0.15 * Total).toFixed(2);\n const subTotal = (0.85 * Total).toFixed(2); \n const {cartDispatch} = useContext(CartContext)\n const {productsDispatch} =useContext(ProductsContext)\n const handleRemoveQuantity = (id, qty) => {\n cartDispatch({type: \"RemoveProduct\", itemID:id})\n //Remove Cart Label on Product\n productsDispatch({type:\"RemoveCartLabel\", productID : id})\n }\n\n \n const orders = cartProducts.map(product => (\n \n
\n
\n
\n
\n
{product.productBrand} \n
{product.productTitle}
\n
handleRemoveQuantity(product.productID)} className=\"item-remove\">REMOVE \n
\n
\n
\n {product.productQty}\n
\n
{`R${product.productPrice}`}
\n
\n
\n ))\n const handleToggle = (isValue) => {\n setIsOpen(!isValue);\n }\n return (\n \n
\n
Order Summary \n handleToggle(isOpen)}> \n \n
\n {\n orders.length > 0 ? (\n <>\n
\n {\n orders\n }\n
\n
\n
\n
Subtotal
\n
{`R${subTotal}`}
\n
\n
\n
Vat @ 15%
\n
{`R${vat}`}
\n
\n
\n
Total
\n
{`R${Total}`}
\n
\n
\n >\n ) : <>\n
\n
Cart Is Empty \n \n
history.push(\"/category/Food\")}>\n \n Continue Shopping\n \n >\n }\n
\n
\n )\n}\n\nexport default OrderSummary\n","import React from \"react\";\nimport \"../Styles/errorMessage.scss\";\n\nexport default function FormError({error}) {\n return {error}
;\n}\n","import React, { useState,useEffect } from 'react'\nimport \"../Styles/Shipment.scss\"\nimport {useHistory} from \"react-router-dom\"\nimport FormError from './errorMessage';\n\nconst emailRegex = RegExp(\n /^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*$/\n);\n\nconst mobileRegex = RegExp(\n /^((?:\\+263|\\+27|263|27)|0)(\\d{2})-?(\\d{3})-?(\\d{4})$/i\n)\n\nconst formValid = (formErrorData) => {\n let valid = true;\n // validate form errors being empty\n Object.values(formErrorData).forEach(val => {\n val.length > 0 && (valid = false);\n });\n \n return valid;\n };\n\nconst Shipment = ({formState, inputChange,initialState,setInitialState}) => {\n let history = useHistory();\n const [shipErrors,setShipErrors] = useState(initialState)\n const [isInitial, setisInitial] = useState(true)\n\n useEffect(() => {\n setShipErrors(initialState)\n },[initialState])\n const handleInputChange = (e) => {\n e.preventDefault();\n const {name, value} = e.target\n inputChange(name, value);\n let tempVal = \"\";\n switch(name) {\n case \"shipEmail\":\n if(value.length > 0){\n tempVal = emailRegex.test(value) ? \"\" : \"Optional Email Invalid\"\n }\n setShipErrors({\n ...shipErrors, shipEmail : tempVal\n })\n break;\n case \"shipMobile\":\n tempVal = mobileRegex.test(value) ? \"\" : \"Invalid mobile number\";\n setShipErrors({\n ...shipErrors, shipMobile : tempVal\n })\n break;\n case \"shipName\":\n tempVal = value.length < 1 ? \"Field Is required\" : \"\"\n setShipErrors({\n ...shipErrors, shipName : tempVal\n })\n break;\n case \"shipSurname\":\n tempVal = value.length < 1 ? \"Field Is required\" : \"\"\n setShipErrors({\n ...shipErrors, shipSurname : tempVal\n })\n break;\n case \"shipCity\" : \n tempVal = value.length < 1 ? \"Field Is required\" : \"\"\n setShipErrors({\n ...shipErrors,shipCity : tempVal\n })\n break;\n case \"shipCountry\" : \n tempVal = value.length < 1 ? \"Field Is required\" : \"\"\n setShipErrors({\n ...shipErrors, shipCountry : tempVal\n })\n break;\n case \"shipAddress\" : \n tempVal = value.length < 1 ? \"Field Is required\" : \"\"\n setShipErrors({\n ...shipErrors, shipAddress : tempVal\n })\n break;\n default : \n setShipErrors({\n ...shipErrors\n })\n }\n \n }\n \n const handleOnSubmit = (e) =>{\n e.preventDefault()\n setisInitial(false)\n\n if (formValid(shipErrors)) {\n setInitialState(shipErrors)\n history.push(\"/checkout/payment\")\n } else {\n console.error(\"FORM INVALID - DISPLAY ERROR MESSAGE\");\n }\n\n \n \n }\n return (\n \n
Shipping Information \n
\n \n
\n )\n}\n\nexport default Shipment\n","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n transform: \"matrix(2.07675 0 0 -2.07675 -11.153 92.77)\"\n}, /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"a\",\n d: \"M-84.525-27.457h326.05V78.457h-326.05z\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"b\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#a\",\n overflow: \"visible\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#b)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M32.419 40.982c-1.674 1.908-4.7 2.726-8.571 2.726H12.613a1.609 1.609 0 0 1-1.59-1.357L6.347 12.68a.964.964 0 0 1 .953-1.114h6.936l1.742 11.049-.054-.346a1.604 1.604 0 0 0 1.583 1.357h3.296c6.475 0 11.545 2.63 13.026 10.238.044.225.082.444.115.658.44 2.812-.003 4.726-1.524 6.459\",\n fill: \"#003087\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M117.331 26.863c-.424-2.784-2.55-2.784-4.606-2.784h-1.17l.821 5.198c.05.314.32.545.638.545h.537c1.4 0 2.722 0 3.404-.797.407-.477.53-1.185.376-2.162m-.895 7.264h-7.756a1.08 1.08 0 0 1-1.066-.91L104.48 13.33a.647.647 0 0 1 .638-.747h3.98c.371 0 .687.27.745.636l.89 5.64c.082.523.534.91 1.064.91h2.454c5.11 0 8.058 2.471 8.828 7.372.347 2.142.014 3.826-.989 5.005-1.103 1.296-3.058 1.982-5.653 1.982\",\n fill: \"#009cde\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M62.011 26.863c-.424-2.784-2.55-2.784-4.607-2.784h-1.17l.821 5.198c.05.314.32.545.638.545h.537c1.4 0 2.722 0 3.404-.797.408-.477.531-1.185.377-2.162m-.895 7.264H53.36c-.53 0-.982-.386-1.065-.91L49.16 13.33a.646.646 0 0 1 .638-.747h3.704c.53 0 .981.386 1.064.91l.847 5.365c.082.524.534.91 1.064.91h2.454c5.11 0 8.058 2.472 8.828 7.373.347 2.142.014 3.826-.989 5.005-1.103 1.296-3.058 1.982-5.653 1.982M79.123 19.723c-.36-2.122-2.043-3.547-4.192-3.547-1.077 0-1.94.347-2.494 1.003-.55.65-.756 1.577-.582 2.608.334 2.104 2.046 3.574 4.162 3.574 1.055 0 1.91-.35 2.476-1.012.569-.667.793-1.599.63-2.626m5.176 7.23h-3.714a.647.647 0 0 1-.64-.547l-.162-1.038-.26.376c-.804 1.167-2.597 1.558-4.387 1.558-4.103 0-7.608-3.11-8.29-7.47-.355-2.177.149-4.256 1.383-5.707 1.133-1.333 2.75-1.888 4.677-1.888 3.308 0 5.142 2.124 5.142 2.124l-.166-1.032a.646.646 0 0 1 .639-.747h3.344c.53 0 .982.385 1.065.91l2.008 12.713a.647.647 0 0 1-.64.747\",\n fill: \"#003087\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M134.443 19.723c-.36-2.122-2.043-3.547-4.192-3.547-1.077 0-1.94.347-2.494 1.003-.55.65-.756 1.577-.582 2.608.334 2.104 2.045 3.574 4.162 3.574 1.055 0 1.91-.35 2.476-1.012.569-.667.793-1.599.63-2.626m5.176 7.23h-3.714a.647.647 0 0 1-.64-.547l-.162-1.038-.26.376c-.804 1.167-2.597 1.558-4.387 1.558-4.102 0-7.607-3.11-8.29-7.47-.355-2.177.15-4.256 1.384-5.707 1.133-1.333 2.75-1.888 4.677-1.888 3.309 0 5.143 2.124 5.143 2.124l-.166-1.032a.644.644 0 0 1 .637-.747h3.343c.53 0 .982.385 1.066.91l2.008 12.713a.647.647 0 0 1-.64.747\",\n fill: \"#009cde\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.08 26.952h-3.734c-.357 0-.69-.177-.89-.473l-5.15-7.584-2.183 7.288a1.08 1.08 0 0 1-1.033.77h-3.669a.647.647 0 0 1-.612-.856l4.11-12.066-3.866-5.455a.647.647 0 0 1 .528-1.02h3.73c.352 0 .683.173.885.463l12.414 17.918a.646.646 0 0 1-.53 1.015\",\n fill: \"#003087\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M143.996 33.58l-3.184-20.251a.647.647 0 0 1 .639-.747h3.201c.53 0 .982.386 1.065.91l3.139 19.888a.646.646 0 0 1-.639.747h-3.582a.645.645 0 0 1-.639-.546\",\n fill: \"#009cde\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M32.419 40.982c-1.674 1.908-4.7 2.726-8.571 2.726H12.613a1.609 1.609 0 0 1-1.59-1.357L6.347 12.68a.964.964 0 0 1 .953-1.114h6.936l1.742 11.049-.054-.346a1.604 1.604 0 0 0 1.583 1.357h3.296c6.475 0 11.545 2.63 13.026 10.238.044.225.082.444.115.658.44 2.812-.003 4.726-1.524 6.459\",\n fill: \"#003087\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M17.849 34.485a1.408 1.408 0 0 0 1.389 1.187h8.808c1.043 0 2.016-.068 2.905-.21a12.206 12.206 0 0 0 1.44-.322 7.957 7.957 0 0 0 1.551-.618c.442 2.813-.002 4.726-1.523 6.46-1.675 1.907-4.7 2.725-8.571 2.725H12.612a1.609 1.609 0 0 1-1.588-1.357L6.346 12.682a.964.964 0 0 1 .952-1.115h6.937l1.742 11.05 1.872 11.868z\",\n fill: \"#003087\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M33.943 34.523a18.294 18.294 0 0 0-.115-.658c-1.481-7.607-6.551-10.238-13.026-10.238h-3.297a1.602 1.602 0 0 1-1.582-1.357l-1.688-10.702-.48-3.036a.844.844 0 0 1 .834-.976h5.847c.692 0 1.28.504 1.389 1.187l.057.298 1.102 6.984.07.386a1.407 1.407 0 0 0 1.39 1.187h.875c5.664 0 10.099 2.3 11.395 8.956.54 2.78.26 5.103-1.17 6.734a5.584 5.584 0 0 1-1.601 1.235\",\n fill: \"#009cde\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M32.392 35.14c-.226.067-.459.127-.699.18-.24.053-.488.1-.742.14-.89.145-1.862.213-2.906.213h-8.807a1.404 1.404 0 0 1-1.389-1.188l-1.872-11.87-.054-.345a1.602 1.602 0 0 0 1.582 1.357h3.297c6.475 0 11.545 2.63 13.026 10.238.044.225.081.443.115.658a7.998 7.998 0 0 1-1.218.514c-.109.036-.22.07-.333.104\",\n fill: \"#012169\"\n})));\n\nvar SvgPaypalLogo = function SvgPaypalLogo(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 2500,\n height: 812,\n viewBox: \"-11.153 -13.144 326.05 105.914\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPaypalLogo, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/PaypalLogo.b1807e33.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: \"40.5364351%\",\n y1: \"144.570586%\",\n x2: \"24.8669104%\",\n y2: \"301.872682%\",\n id: \"linearGradient-1\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#ED1C24\",\n offset: \"2%\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#BE1E2D\",\n offset: \"100%\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: \"49.9983656%\",\n y1: \"7.40771812%\",\n x2: \"49.9983656%\",\n y2: \"70.4278523%\",\n id: \"linearGradient-2\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#ED1C24\",\n offset: \"2%\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#BE1E2D\",\n offset: \"100%\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: \"49.9919491%\",\n y1: \"22.2881356%\",\n x2: \"49.9919491%\",\n y2: \"105.805085%\",\n id: \"linearGradient-3\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#ED1C24\",\n offset: \"2%\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#BE1E2D\",\n offset: \"100%\"\n})));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Homepage\",\n stroke: \"none\",\n strokeWidth: 1,\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Home-Experiment\",\n transform: \"translate(-161.000000, -62.000000)\",\n fillRule: \"nonzero\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Navbar\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"PayFast-Logo-Colour\",\n transform: \"translate(161.000000, 62.000000)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M98.162406,10.9789474 C97.5739624,11.334191 96.9500266,11.6270074 96.3007519,11.8526316 C95.5932149,12.1302995 94.8527371,12.3152926 94.0977444,12.4030075 C93.7774436,12.4556391 93.4511278,12.5007519 93.1172932,12.5338346 L93.1112782,12.5338346 C90.0240602,12.7984962 87.3879699,12.1353383 85.881203,10.7157895 C85.8661654,10.7067669 85.8571429,10.6887218 85.8421053,10.6796992 C85.8421053,10.7338346 85.8421053,10.7894737 85.8421053,10.8496241 C85.8487879,11.4816806 86.083786,12.0900053 86.5037594,12.562406 C87.7278195,13.9669173 90.081203,14.7323308 92.8195489,14.7759398 C94.6421053,14.7879699 96.3052632,14.4451128 97.5789474,13.8330827 C98.1806096,13.5547673 98.7213041,13.1602341 99.1699248,12.6721805 C99.5994538,12.2061922 99.8457124,11.600428 99.8631582,10.9669173 C99.863357,10.570134 99.7679312,10.1791464 99.5849624,9.82706767 C99.1695816,10.2784465 98.6903059,10.6665281 98.162406,10.9789474 L98.162406,10.9789474 Z M92.7819549,9.03909774 C89.8962406,9.26015038 87.4105263,8.72030075 85.8646617,7.49022556 C85.9114255,8.06554996 86.1417926,8.61062922 86.5218045,9.04511278 C87.7443609,10.4511278 90.0992481,11.2135338 92.837594,11.2571429 C94.6631579,11.2691729 96.3233083,10.9263158 97.5954887,10.312782 C98.1991241,10.0377542 98.7408318,9.64336647 99.1879699,9.15338346 C99.6164783,8.68520144 99.8615746,8.0780675 99.8781955,7.44360902 C99.8781955,6.95155676 99.7333492,6.47039083 99.4616541,6.06015038 C99.0541353,6.58947368 97.3533835,8.68721805 92.7819549,9.03609023 L92.7819549,9.03909774 Z M92.8646617,7.73984962 C94.6902256,7.75037594 96.3503759,7.40902256 97.6210526,6.79398496 C98.2254364,6.51807253 98.7680558,6.12325424 99.2165414,5.63308271 C100.126041,4.68016587 100.138548,3.18453554 99.2451128,2.21654135 C98.0195489,0.809022556 95.6691729,0.0466165414 92.9293233,0.0030075188 C91.1052632,-0.00902255639 89.443609,0.332330827 88.1729323,0.944360902 C87.5708042,1.22329363 87.0296392,1.61830829 86.5804511,2.10676692 C86.1564037,2.57331711 85.9127236,3.17585199 85.8932331,3.80601504 C85.9001824,4.43937094 86.1350749,5.04902393 86.5548872,5.52330827 C87.7729323,6.92932331 90.1308271,7.69022556 92.8646617,7.73684211 L92.8646617,7.73984962 Z M87.5383459,2.42706767 C88.2045113,1.61503759 90.2691729,0.82556391 92.6857143,0.864661654 C94.3022556,0.87518797 95.7503759,1.21954887 96.7293233,1.72030075 C97.1390846,1.90870341 97.5059972,2.17889846 97.8075188,2.51428571 C97.9860084,2.69979475 98.0903297,2.94428103 98.1007519,3.20150376 C98.0879322,3.45921065 97.9809049,3.70323274 97.8,3.88721805 C97.1383459,4.69774436 95.0706767,5.49022556 92.6526316,5.4481203 C91.037594,5.43759398 89.5894737,5.09172932 88.6105263,4.5924812 C88.2030952,4.40147117 87.8368527,4.13279119 87.5323308,3.80150376 C87.3509234,3.61481594 87.2439686,3.3682851 87.2315789,3.10827068 C87.2471057,2.85133293 87.3562404,2.60898982 87.5383459,2.42706767 L87.5383459,2.42706767 Z\",\n id: \"Shape\",\n fill: \"url(#linearGradient-1)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M25.0962406,9.54736842 C24.4486216,8.79749373 23.5318296,8.42255639 22.3458647,8.42255639 L16.9323308,8.42255639 L16.5293233,10.4721805 L21.9428571,10.4721805 C22.5172932,10.4721805 22.9614035,10.6696742 23.275188,11.0646617 C23.59452,11.4768908 23.7090607,12.0119673 23.5864662,12.518797 L23.5052632,12.8691729 L23.4781955,13.112782 L18.4661654,13.112782 C17.28996,13.1093176 16.1499121,13.5191387 15.2451128,14.2706767 C14.310869,15.0001746 13.6737869,16.0445188 13.4526316,17.2090226 L13.4,17.4240602 C13.1473684,18.6090226 13.3403509,19.5884712 13.9789474,20.362406 C14.6175439,21.1363409 15.5293233,21.5223058 16.7142857,21.5203085 L23.8015038,21.5203085 L25.7157895,12.4120301 C25.9493734,11.2481203 25.7428571,10.2932331 25.0962406,9.54736842 Z M22.1578947,19.4721805 L17.1458647,19.4721805 C16.6245815,19.4957865 16.1216643,19.2770786 15.7834586,18.8796992 C15.4506266,18.4857143 15.3473684,18.0005013 15.4736842,17.4240602 L15.5278195,17.2090226 C15.638657,16.6291017 15.9600144,16.1106452 16.4300752,15.7533835 C16.8786471,15.3744449 17.4458893,15.1647888 18.0330827,15.1609023 L23.0180451,15.1609023 L22.1578947,19.4721805 Z M37.2706767,8.42255639 L34.9789474,19.4451128 L29.8030075,19.4451128 C29.2857962,19.4676108 28.7868861,19.2514164 28.4496241,18.8586466 C28.1172932,18.4646617 28.0150376,17.9774436 28.1488722,17.4030075 L29.993985,8.42255639 L27.918797,8.42255639 L26.0601504,17.3969925 C25.8075188,18.5839599 26.0050125,19.5634085 26.6526316,20.3353383 C27.3002506,21.1072682 28.2165414,21.4972431 29.4015038,21.5052632 L34.6030075,21.5052632 L34.4406015,22.2571429 C34.3053885,22.8302011 33.9772782,23.3393561 33.5112782,23.6992481 C33.0734688,24.0795438 32.5151968,24.2926248 31.9353383,24.3007519 L24.8406015,24.3007519 L24.4105263,26.3473684 L31.4977444,26.3473684 C32.6647394,26.3413179 33.7917388,25.9214241 34.6781955,25.162406 C35.6094713,24.4367186 36.2591617,23.4095486 36.5157895,22.2571429 L39.3729323,8.43157895 L37.2706767,8.42255639 Z\",\n id: \"Shape\",\n fill: \"url(#linearGradient-2)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M58.8962406,21.5263158 L51.8075188,21.5263158 C50.6215539,21.5263158 49.7097744,21.1403509 49.0721805,20.3684211 C48.4345865,19.5964912 48.241604,18.6170426 48.4932331,17.4300752 L48.5473684,17.2150376 C48.7678747,16.050653 49.4044551,15.0062549 50.3383459,14.2766917 C51.2437996,13.5252727 52.3842689,13.1154913 53.5609023,13.118797 L58.5714286,13.118797 L58.6,12.875188 L58.6796992,12.524812 C58.8027147,12.01821 58.6887323,11.4831571 58.3699248,11.0706767 C58.0460648,10.670695 57.5499919,10.4503424 57.0360902,10.4781955 L51.2045113,10.4781955 L51.6075188,8.42255639 L57.4406015,8.42255639 C58.6255639,8.42255639 59.5418546,8.79548872 60.1894737,9.54135338 C60.8370927,10.287218 61.043609,11.2441103 60.8090226,12.4120301 L58.8962406,21.5263158 Z M57.2511278,19.4781955 L58.1142857,15.1669173 L53.1278195,15.1669173 C52.5407188,15.1713114 51.9736437,15.3809058 51.524812,15.7593985 C51.0557089,16.11753 50.7345989,16.6355875 50.6225564,17.2150376 L50.5699248,17.4300752 C50.443609,18.0055138 50.5468672,18.4907268 50.8796992,18.8857143 C51.2172971,19.2830411 51.719752,19.5017894 52.2406015,19.4781955 L57.2511278,19.4781955 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M72.4902256,18.0225564 C72.2784061,19.121349 71.6264387,20.0857175 70.6857143,20.6917293 C69.775847,21.29347 68.7041389,21.6034942 67.6135338,21.5804511 L60.606015,21.5804511 L61.037594,19.5323308 L68.0451128,19.5323308 C69.4275689,19.5323308 70.2180451,19.0310777 70.4165414,18.0285714 L70.524812,17.5443609 C70.7403509,16.5418546 70.156391,16.0406015 68.7729323,16.0406015 L65.6150376,16.0406015 C64.4461153,16.0406015 63.5478697,15.7438596 62.9203008,15.1503759 C62.2015038,14.5037594 61.958396,13.6150376 62.1909774,12.4842105 L62.2992481,11.9984962 C62.510404,10.8994291 63.162533,9.93482164 64.1037594,9.32932331 C65.0133641,8.72146994 66.0865753,8.40517163 67.1804511,8.42255639 L74.2150376,8.42255639 L73.8105263,10.4721805 L66.7759398,10.4721805 C65.3924812,10.4721805 64.5929825,10.9734336 64.3774436,11.9759398 L64.2706767,12.4616541 C64.0701754,13.4641604 64.6631579,13.9654135 66.0496241,13.9654135 L69.2075188,13.9654135 C70.3744361,13.9654135 71.273183,14.2621554 71.9037594,14.8556391 C72.6055138,15.5022556 72.8385965,16.3914787 72.6030075,17.5233083 L72.4902256,18.0225564 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.9593985,21.5052632 L78.675188,21.5052632 C77.4882206,21.5052632 76.5719298,21.118797 75.9263158,20.3458647 C75.2807018,19.5729323 75.083208,18.5934837 75.3338346,17.4075188 L76.7849624,10.3774436 L75.4917293,10.3774436 L75.9428571,8.27218045 L77.2360902,8.27218045 L78.206015,3.58345865 L80.3112782,3.58345865 L79.3458647,8.27218045 L83.7067669,8.27218045 L83.2556391,10.3774436 L78.8947368,10.3774436 L77.4390977,17.4105263 C77.3142857,17.9849624 77.4120301,18.4721805 77.7398496,18.8661654 C78.0716463,19.2669047 78.5737199,19.4867014 79.0932331,19.4586466 L82.3819549,19.4586466 L81.9593985,21.5052632 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M15.6781955,9.62556391 C15.444038,10.7667235 14.8072968,11.7856163 13.8842105,12.4962406 C12.918797,13.275188 11.8691729,13.6646617 10.7353383,13.6646617 L3.66766917,13.6646617 L2.04661654,21.5263158 L7.10542736e-15,21.5263158 L3.69473684,3.78195489 L12.8105263,3.78195489 C13.9433584,3.78195489 14.8245614,4.17142857 15.4541353,4.95037594 C16.0837093,5.72932331 16.2842105,6.68621554 16.0556391,7.82105263 L15.6781955,9.62556391 Z M13.6330827,9.62556391 L14.0045113,7.82105263 C14.1278195,7.25413534 14.0315789,6.77593985 13.7112782,6.38496241 C13.3853559,5.99208585 12.893282,5.77586312 12.3834586,5.80150376 L5.31578947,5.80150376 L4.0887218,11.6406015 L11.156391,11.6406015 C11.7316269,11.6380788 12.2871457,11.4306923 12.7233083,11.0556391 C13.183695,10.6992975 13.5054211,10.193576 13.6330827,9.62556391 L13.6330827,9.62556391 Z\",\n id: \"Shape\",\n fill: \"url(#linearGradient-3)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M55.2977444,5.63308271 L46.7112782,5.63308271 C45.5003535,5.67220825 44.4629164,6.5112485 44.1714286,7.68721805 L43.3684211,11.6105263 L48.7263158,11.6105263 L48.2992481,13.6857143 L42.962406,13.6857143 L41.3082707,21.5458647 L39.2255639,21.5458647 L42.0827068,7.68120301 C42.6075859,5.303403 44.7019614,3.60098294 47.1368421,3.57293233 L55.7233083,3.57293233 L55.2977444,5.63308271 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M39.4120301,25.4917293 L40.0135338,25.4917293 L41.6827068,29.3654135 L40.8947368,29.3654135 L40.5338346,28.4796992 L38.8496241,28.4796992 L38.4992481,29.3654135 L37.7263158,29.3654135 L39.4120301,25.4917293 Z M40.2887218,27.8887218 L39.687218,26.3112782 L39.0857143,27.8887218 L40.2887218,27.8887218 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M43.4300752,25.4917293 L44.8045113,25.4917293 C45.0607746,25.4918245 45.315975,25.524672 45.5639098,25.5894737 C45.813024,25.6523033 46.0474816,25.7631471 46.2541353,25.9157895 C46.4647961,26.0746176 46.6352747,26.280634 46.7518797,26.5172932 C46.8886233,26.8032143 46.9546379,27.1178152 46.9443609,27.4345865 C46.9524166,27.7376364 46.8863421,28.0380687 46.7518797,28.3097744 C46.6318471,28.5441958 46.4619564,28.7495017 46.2541353,28.9112782 C46.0474621,29.0686605 45.8134459,29.1864334 45.5639098,29.2586466 C45.3172993,29.3314023 45.061628,29.3688671 44.8045113,29.3699248 L43.4300752,29.3699248 L43.4300752,25.4917293 Z M44.6902256,28.7639098 C44.8705227,28.7637821 45.0501872,28.7425857 45.2255639,28.7007519 C45.3995996,28.6611849 45.5644645,28.5887056 45.7112782,28.487218 C45.8594708,28.3814706 45.9801391,28.2417223 46.0631579,28.0796992 C46.1615869,27.8771998 46.2085871,27.6535615 46.2,27.4285714 C46.2096133,27.1947892 46.1626706,26.9621394 46.0631579,26.7503759 C45.9822515,26.5861217 45.8612261,26.4449254 45.7112782,26.3398496 C45.5648616,26.2398574 45.3995882,26.1707803 45.2255639,26.1368421 C45.049431,26.100417 44.8700846,26.081777 44.6902256,26.081203 L44.1157895,26.081203 L44.1157895,28.7639098 L44.6902256,28.7639098 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M47.6120301,25.4917293 L48.875188,25.4917293 C49.0772053,25.48981 49.2788499,25.5094704 49.4766917,25.5503759 C49.6413799,25.5849837 49.7973813,25.6524991 49.9353383,25.7488722 C50.0637646,25.8375404 50.1673121,25.9576554 50.2360902,26.0977444 C50.3092878,26.259599 50.3447667,26.4359652 50.3398496,26.6135338 C50.3458809,26.8012274 50.3045062,26.9874134 50.2195489,27.1548872 C50.141872,27.2975187 50.0303297,27.4188726 49.8947368,27.5082707 C49.7476607,27.6009747 49.5852108,27.6666676 49.4150376,27.7022556 C49.2243395,27.7434956 49.0296888,27.7636667 48.8345865,27.762406 L48.2992481,27.762406 L48.2992481,29.3654135 L47.6105263,29.3654135 L47.6120301,25.4917293 Z M48.7834586,27.1819549 C48.8911982,27.1825703 48.9988129,27.1745244 49.1052632,27.1578947 C49.2007107,27.1434079 49.2931539,27.1134401 49.3789474,27.0691729 C49.4571277,27.0300409 49.5235421,26.9708905 49.5714286,26.8977444 C49.6215571,26.811665 49.6460763,26.7130665 49.6421053,26.6135338 C49.6577168,26.4248167 49.5538114,26.2464358 49.3819549,26.1669173 C49.2979489,26.125232 49.2074116,26.0982743 49.1142857,26.087218 C49.0115766,26.073826 48.9080891,26.0672953 48.8045113,26.0676692 L48.2992481,26.0676692 L48.2992481,27.1789474 L48.7834586,27.1819549 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.7639098,27.4180451 C50.7578614,27.1306502 50.8089763,26.8449177 50.9142857,26.5774436 C51.011749,26.3369495 51.1588045,26.1196968 51.3458647,25.9398496 C51.5349758,25.7615328 51.7586243,25.6238636 52.0030075,25.5353383 C52.2676957,25.4350286 52.5485223,25.3840619 52.8315789,25.3849432 C53.1175923,25.3838063 53.4014237,25.4347635 53.6691729,25.5353383 C53.9153827,25.623782 54.141015,25.7614126 54.3323308,25.9398496 C54.5207902,26.1191393 54.668934,26.3364851 54.7669173,26.5774436 C54.8722267,26.8449177 54.9233416,27.1306502 54.9172932,27.4180451 C54.9225446,27.7014696 54.8714296,27.9831129 54.7669173,28.2466165 C54.6675421,28.4890287 54.5196512,28.7085623 54.3323308,28.8917293 C54.1419224,29.0757176 53.9163771,29.2194324 53.6691729,29.3142857 C53.4018115,29.4162632 53.1177166,29.4672677 52.8315789,29.4646617 C52.5483976,29.4669935 52.2673095,29.4159793 52.0030075,29.3142857 C51.5078981,29.1245334 51.1136683,28.7379269 50.9142857,28.2466165 C50.8097734,27.9831129 50.7586584,27.7014696 50.7639098,27.4180451 Z M51.5157895,27.4180451 C51.5135135,27.6126108 51.5455841,27.8060521 51.6105263,27.9894737 C51.6710581,28.1564522 51.7640775,28.309781 51.8842105,28.4406015 C52.0030293,28.568676 52.1468416,28.6710335 52.3067669,28.7413534 C52.4768744,28.8138755 52.6602033,28.850234 52.8451128,28.8481203 C53.0309811,28.8500847 53.2152616,28.8137405 53.3864662,28.7413534 C53.5477261,28.6718488 53.6926796,28.5694081 53.8120301,28.4406015 C53.9316886,28.309698 54.0241997,28.1563646 54.0842105,27.9894737 C54.1503195,27.8063156 54.1829195,27.6127531 54.1804511,27.4180451 C54.1825593,27.2272856 54.1499483,27.0377337 54.0842105,26.8586466 C54.0247209,26.6918433 53.9327181,26.5385053 53.8135338,26.4075188 C53.6960636,26.2785832 53.5525457,26.1760704 53.3924812,26.1067669 C53.2199074,26.0316673 53.0332992,25.9942431 52.8451128,25.9969925 C52.6578814,25.9940671 52.4722168,26.0315077 52.3007519,26.1067669 C52.141582,26.1768783 51.9987137,26.2792928 51.881203,26.4075188 C51.7630723,26.5392856 51.6712002,26.6924057 51.6105263,26.8586466 C51.5454877,27.0379198 51.5128986,27.2273439 51.5142857,27.4180451 L51.5157895,27.4180451 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M59.762406,26.4 C59.6612515,26.2628901 59.5222132,26.15835 59.362406,26.0992481 C59.0314986,25.9662218 58.6611273,25.9710951 58.3338346,26.112782 C58.1728712,26.1820371 58.0283606,26.2845269 57.9097744,26.4135338 C57.789154,26.5439876 57.6960716,26.6974202 57.6360902,26.8646617 C57.5703525,27.0437487 57.5377414,27.2333006 57.5398496,27.4240602 C57.53705,27.620994 57.5685999,27.8169087 57.6330827,28.0030075 C57.690151,28.1696133 57.7801576,28.3230337 57.8977444,28.4541353 C58.0133442,28.5796005 58.1543075,28.6790437 58.3112782,28.7458647 C58.482413,28.8183242 58.666814,28.85418 58.8526316,28.8511278 C59.0442823,28.8546994 59.234012,28.8124226 59.406015,28.7278195 C59.5595316,28.6515755 59.6925628,28.5396849 59.793985,28.4015038 L60.3473684,28.7894737 C60.1788686,29.0032241 59.9632273,29.1751195 59.7172932,29.2917293 C59.4443943,29.4148539 59.1474425,29.4754773 58.8481203,29.4691729 C58.5629379,29.472046 58.2797789,29.4210264 58.0135338,29.318797 C57.5199612,29.1293367 57.127993,28.7422749 56.9323308,28.2511278 C56.8285425,27.9874176 56.777454,27.7059198 56.7819549,27.4225564 C56.777765,27.1343205 56.8325191,26.8482686 56.9428571,26.5819549 C57.0468139,26.340115 57.2005236,26.122872 57.393985,25.9443609 C57.5863439,25.7665455 57.8123322,25.6290096 58.0586466,25.5398496 C58.3249329,25.4396515 58.6072166,25.3886977 58.8917293,25.389465 C59.0218609,25.3900993 59.151685,25.402176 59.2796992,25.4255639 C59.4124198,25.448136 59.5424395,25.4844205 59.6676692,25.5338346 C59.7905551,25.5825672 59.9079897,25.6440565 60.0180451,25.7172932 C60.1255088,25.7885393 60.2200875,25.8775246 60.2977444,25.9804511 L59.762406,26.4 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M60.5383459,28.0421053 C60.5355572,27.8472955 60.5739918,27.6540976 60.6511278,27.475188 C60.792803,27.143785 61.0647794,26.8854074 61.4030075,26.7609023 C61.7636943,26.6286306 62.159614,26.6286306 62.5203008,26.7609023 C62.8585289,26.8854074 63.1305053,27.143785 63.2721805,27.475188 C63.3480745,27.654433 63.3859653,27.8474713 63.3834586,28.0421053 C63.3856542,28.2371975 63.3477798,28.4306638 63.2721805,28.6105263 C63.2021546,28.7758925 63.0999182,28.9256687 62.9714286,29.0511278 C62.8409058,29.1749663 62.6877357,29.2724846 62.5203008,29.3383459 C62.1607065,29.4766328 61.7626018,29.4766328 61.4030075,29.3383459 C61.2355726,29.2724846 61.0824025,29.1749663 60.9518797,29.0511278 C60.82339,28.9256687 60.7211537,28.7758925 60.6511278,28.6105263 C60.5743017,28.4309921 60.5358848,28.2373711 60.5383459,28.0421053 L60.5383459,28.0421053 Z M61.2075188,28.0421053 C61.2082917,28.1439822 61.2234799,28.245237 61.2526316,28.3428571 C61.282378,28.441766 61.329756,28.5344843 61.3924812,28.6165414 C61.456082,28.6984329 61.5366133,28.7656278 61.6285714,28.8135338 C61.8430718,28.9157964 62.0922666,28.9157964 62.3067669,28.8135338 C62.3984664,28.7652407 62.4789218,28.6981091 62.5428571,28.6165414 C62.6056904,28.5347731 62.6526181,28.4419378 62.681203,28.3428571 C62.711526,28.2454627 62.7272358,28.1441093 62.7278195,28.0421053 C62.7277164,27.9400634 62.7119955,27.8386384 62.681203,27.7413534 C62.6519638,27.6429921 62.6050863,27.5507658 62.5428571,27.4691729 C62.3161353,27.2067048 61.9423386,27.1273959 61.6285714,27.275188 C61.5367507,27.3219825 61.4561954,27.3881713 61.3924812,27.4691729 C61.3303479,27.5510495 61.2830179,27.6431649 61.2526316,27.7413534 C61.2231152,27.8388918 61.207919,27.9401994 61.2075188,28.0421053 L61.2075188,28.0421053 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M67.1669173,26.6616541 C67.3187678,26.6574563 67.4695412,26.6883314 67.6075188,26.7518797 C67.7244596,26.8079714 67.8272566,26.889695 67.9082707,26.9909774 C67.9878276,27.091146 68.0466173,27.2061695 68.081203,27.3293233 C68.1172809,27.4575371 68.1354978,27.5901153 68.1353394,27.7233083 L68.1353394,29.3654135 L67.4796992,29.3654135 L67.4796992,27.9097744 C67.4791733,27.8293088 67.4736489,27.7489535 67.4631579,27.6691729 C67.4525936,27.5898379 67.4281614,27.5129784 67.3909774,27.4421053 C67.3557302,27.3746753 67.3040008,27.3172557 67.2406015,27.275188 C67.1645465,27.2279021 67.0759242,27.2048288 66.9864662,27.2090226 C66.8943632,27.2067464 66.8033822,27.2296216 66.7233083,27.275188 C66.6517946,27.3184003 66.5902847,27.3763222 66.5428571,27.4451128 C66.495245,27.5163288 66.4601535,27.5951576 66.4390977,27.6781955 C66.4171167,27.7611182 66.4059962,27.8465442 66.406015,27.9323308 L66.406015,29.3654135 L65.7428571,29.3654135 L65.7428571,27.7789474 C65.7486468,27.6340232 65.7075103,27.4911003 65.6255639,27.3714286 C65.5374492,27.2584823 65.3984223,27.1974461 65.2556391,27.2090226 C65.165858,27.2070584 65.0771513,27.228846 64.9984962,27.2721805 C64.9283394,27.3122562 64.8677807,27.3671696 64.8210526,27.4330827 C64.7742898,27.5031367 64.7392448,27.5803371 64.7172932,27.6616541 C64.693319,27.7462907 64.6811737,27.833838 64.681203,27.9218045 L64.681203,29.3654135 L64.0255639,29.3654135 L64.0255639,26.7383459 L64.6481203,26.7383459 L64.6481203,27.1609023 L64.6601504,27.1609023 C64.6898814,27.0933254 64.7294032,27.0304958 64.7774436,26.9744361 C64.8286283,26.9141539 64.8872398,26.8605952 64.9518797,26.8150376 C65.0235073,26.7663848 65.1020935,26.7288662 65.1849624,26.7037594 C65.2788829,26.6745266 65.3768323,26.6603163 65.475188,26.6616541 C65.6549543,26.655434 65.8324769,26.7030876 65.9849624,26.7984962 C66.1187188,26.8898979 66.2260718,27.0148838 66.2962406,27.1609023 C66.3765496,27.0075463 66.4978423,26.8794862 66.6466165,26.7909774 C66.8049889,26.7011717 66.9849289,26.6564467 67.1669173,26.6616541 L67.1669173,26.6616541 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M69.5308271,26.7383459 L69.5308271,27.1052632 L69.5473684,27.1052632 C69.5856045,27.0511459 69.6289078,27.0007933 69.6766917,26.9548872 C69.7343386,26.8988272 69.7996518,26.8512346 69.8706767,26.8135338 C69.9531824,26.769203 70.0404593,26.7343931 70.1308271,26.7097744 C70.2365104,26.6801965 70.3459072,26.6660155 70.4556391,26.6676692 C70.8055124,26.6631614 71.1405487,26.8087818 71.3759398,27.0676692 C71.4903961,27.1956878 71.5796763,27.344148 71.6390977,27.5052632 C71.7020163,27.6792828 71.7335825,27.8630797 71.7323308,28.0481203 C71.7338328,28.2335427 71.7027856,28.4177904 71.6406015,28.5924812 C71.5842791,28.7555418 71.4969626,28.9061755 71.3834586,29.0360902 C71.2704791,29.1628085 71.1328354,29.2651457 70.9789474,29.3368421 C70.8098593,29.4130537 70.626048,29.4510483 70.4406015,29.4481203 C70.2631128,29.4504173 70.0875345,29.4112855 69.9278195,29.3338346 C69.7817331,29.2649193 69.6577836,29.1565938 69.5699248,29.0210526 L69.5593985,29.0210526 L69.5593985,30.6781955 L68.9007519,30.6781955 L68.9007519,26.7383459 L69.5308271,26.7383459 Z M71.0631579,28.0421053 C71.0627577,27.9401994 71.0475615,27.8388918 71.0180451,27.7413534 C70.9876588,27.6431649 70.9403287,27.5510495 70.8781955,27.4691729 C70.8141446,27.3885016 70.7336672,27.3223768 70.6421053,27.275188 C70.5384926,27.223794 70.4238903,27.1984989 70.3082707,27.2015038 C70.1957953,27.1997362 70.0846606,27.2260984 69.9849624,27.2781955 C69.8921323,27.3280136 69.8094943,27.3948382 69.7413534,27.475188 C69.6748356,27.5564 69.6238585,27.6491784 69.5909774,27.7488722 C69.5573906,27.8456444 69.5396189,27.947197 69.5383459,28.0496241 C69.5391888,28.1520907 69.5569726,28.2537126 69.5909774,28.3503759 C69.6242241,28.4489959 69.6751837,28.5407232 69.7413534,28.6210526 C69.8092012,28.7009076 69.8919425,28.7667941 69.9849624,28.8150376 C70.1924158,28.9158281 70.4346518,28.9158281 70.6421053,28.8150376 C70.7338048,28.7667445 70.8142602,28.6996129 70.8781955,28.6180451 C70.9409207,28.535988 70.9882987,28.4432698 71.0180451,28.3443609 C71.0473374,28.2462575 71.0625271,28.1444865 71.0631579,28.0421053 L71.0631579,28.0421053 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73.9969925,29.0315789 L73.9804511,29.0315789 C73.9063785,29.1573757 73.7956856,29.2575764 73.6631579,29.318797 C73.5087799,29.3960195 73.3379999,29.4347158 73.1654135,29.4315789 C73.0539384,29.4308908 72.9429198,29.4172658 72.8345865,29.3909774 C72.7215548,29.3645076 72.6141222,29.3181741 72.5172932,29.2541353 C72.4189219,29.1893206 72.3366337,29.1029179 72.2766917,29.0015038 C72.2088197,28.8848794 72.1754461,28.751385 72.1804511,28.6165414 C72.1714884,28.4437243 72.2315283,28.2744225 72.3473684,28.1458647 C72.4674201,28.0233883 72.6148139,27.9311383 72.7774436,27.8766917 C72.9656466,27.8121858 73.1611237,27.771272 73.3593985,27.7548872 C73.5729323,27.7338346 73.7819549,27.7233083 73.9864662,27.7233083 L73.9864662,27.6586466 C73.9966456,27.5143408 73.9289873,27.3755839 73.8090226,27.2947368 C73.6826941,27.2137013 73.5350044,27.1723272 73.3849624,27.1759398 C73.2467483,27.1759337 73.1102121,27.206218 72.9849624,27.2646617 C72.8673025,27.3163343 72.7598431,27.3886529 72.6676692,27.4781955 L72.3278195,27.0781955 C72.4771554,26.9401606 72.6532135,26.8342187 72.8451128,26.7669173 C73.0354521,26.6974512 73.2364785,26.6618262 73.4390977,26.6616541 C73.6358313,26.6579703 73.8312625,26.6942939 74.0135338,26.7684211 C74.1514699,26.8246603 74.2741181,26.9127815 74.3714286,27.0255639 C74.4585302,27.1291024 74.5212302,27.2509048 74.5548872,27.3819549 C74.5894454,27.5104445 74.6071377,27.6428846 74.6075188,27.7759398 L74.6075188,29.3729323 L73.993985,29.3729323 L73.9969925,29.0315789 Z M73.9864662,28.1669173 L73.8360902,28.1669173 C73.7288221,28.1669173 73.6175439,28.1714286 73.5022556,28.1804511 C73.3926113,28.1886215 73.2841938,28.2087922 73.1789474,28.2406015 C73.0886956,28.2677179 73.0048248,28.3127218 72.9323308,28.3729323 C72.866459,28.4314104 72.8305359,28.5165205 72.8345865,28.6045113 C72.833691,28.6574597 72.8477648,28.7095849 72.875188,28.7548872 C72.9019085,28.7967746 72.9385901,28.8313897 72.9819549,28.8556391 C73.0285034,28.8827039 73.0793763,28.9015269 73.1323308,28.9112782 C73.1863284,28.9219158 73.2412064,28.927454 73.2962406,28.9278195 C73.4823992,28.9506155 73.6688382,28.8876476 73.803054,28.7566483 C73.9372697,28.6256491 74.0047407,28.440792 73.9864662,28.2541353 L73.9864662,28.1669173 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M75.3759398,26.7383459 L76,26.7383459 L76,27.1609023 L76.0120301,27.1609023 C76.0777068,27.01879 76.1818975,26.8979288 76.312782,26.8120301 C76.4634743,26.7100639 76.6421587,26.6575096 76.8240602,26.6616541 C76.9759107,26.6574563 77.126684,26.6883314 77.2646617,26.7518797 C77.3816024,26.8079714 77.4843994,26.889695 77.5654135,26.9909774 C77.6449704,27.091146 77.7037602,27.2061695 77.7383459,27.3293233 C77.7744238,27.4575371 77.7926406,27.5901153 77.7924822,27.7233083 L77.7924822,29.3654135 L77.1353383,29.3654135 L77.1353383,27.9097744 C77.1355657,27.8292822 77.1300378,27.7488767 77.118797,27.6691729 C77.1094448,27.5897724 77.0854826,27.5127874 77.0481203,27.4421053 C77.012873,27.3746753 76.9611436,27.3172557 76.8977444,27.275188 C76.8216893,27.2279021 76.733067,27.2048288 76.643609,27.2090226 C76.5485076,27.2065891 76.4543429,27.2283194 76.3699248,27.2721805 C76.2962526,27.3120369 76.2317169,27.3668411 76.1804511,27.4330827 C76.1306534,27.5024047 76.0930229,27.5796997 76.0691729,27.6616541 C76.0435004,27.745995 76.0303278,27.8336433 76.0300752,27.9218045 L76.0300752,29.3654135 L75.3729323,29.3654135 L75.3759398,26.7383459 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M78.0917293,26.7383459 L78.8255639,26.7383459 L79.5578947,28.6496241 L79.5699248,28.6496241 L80.2210526,26.7383459 L80.9052632,26.7383459 L79.6571429,29.9263158 C79.6147898,30.0365619 79.5645339,30.143607 79.5067669,30.2466165 C79.4548071,30.3358036 79.3882136,30.415614 79.3097744,30.4827068 C79.2301155,30.5498546 79.138194,30.6009221 79.0390977,30.6330827 C78.9170096,30.6685144 78.7902582,30.6852456 78.6631579,30.6827068 C78.6073993,30.6826208 78.5516836,30.6796091 78.4962406,30.6736842 C78.4383323,30.6686604 78.3809722,30.6585972 78.324812,30.643609 L78.3744361,30.0766917 C78.4164873,30.0908137 78.459792,30.1008845 78.5037594,30.1067669 C78.5426171,30.112173 78.5818227,30.1146862 78.6210526,30.1142857 C78.680132,30.1160329 78.7390883,30.107901 78.7954887,30.0902256 C78.841429,30.0752458 78.8828196,30.0488593 78.9157895,30.0135338 C78.9516209,29.9750707 78.981523,29.9314846 79.0045113,29.8842105 C79.0285714,29.8330827 79.0571429,29.7729323 79.0857143,29.7037594 L79.2165414,29.3699248 L78.0917293,26.7383459 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n})))));\n\nvar SvgPayfastLogo = function SvgPayfastLogo(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 100 31\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPayfastLogo, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/PayfastLogo.65818463.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M503.914,153.878c4.466,0,8.084-3.618,8.084-8.084v-31.459c0-20.619-16.774-37.394-37.393-37.394H37.393 C16.774,76.942,0,93.716,0,114.336v283.326c0,20.62,16.774,37.395,37.393,37.395h437.214c20.619,0,37.393-16.775,37.391-37.395 V172.024c0-4.466-3.618-8.084-8.084-8.084c-4.466,0-8.084,3.618-8.084,8.084v225.637c0,11.705-9.522,21.227-21.225,21.227H37.393 c-11.703,0-21.225-9.522-21.225-21.227V114.336c0-11.704,9.522-21.226,21.225-21.226h437.212c11.703,0,21.225,9.522,21.225,21.226 v31.459C495.83,150.26,499.448,153.878,503.914,153.878z\"\n})));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M186.584,226.037h-16.436v18.088h16.436v0.002c6.507,0,11.029-2.315,11.029-8.824 C197.613,228.354,192.76,226.037,186.584,226.037z\"\n})));\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M186.033,197.693h-15.886v15.11h15.886c3.529,0,8.381-1.876,8.381-7.5C194.414,199.568,190.332,197.693,186.033,197.693z\"\n})));\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"261.137,203.648 260.917,203.648 251.983,231.224 269.851,231.224 \"\n})));\n\nvar _ref6 = /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M129.642,288.299h-11.24v12.229h11.846c4.254,0,6.533-2.278,6.533-6.378C136.781,290.125,133.591,288.299,129.642,288.299 z\"\n})));\n\nvar _ref7 = /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"181.063,292.021 180.912,292.021 174.76,311.011 187.065,311.011 \"\n})));\n\nvar _ref8 = /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M443.349,288.299h-11.24v12.229h11.85c4.252,0,6.529-2.278,6.529-6.378C450.489,290.125,447.3,288.299,443.349,288.299z\"\n})));\n\nvar _ref9 = /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M480.596,323.682c-0.139-0.995-0.269-2.554-0.387-4.656c-0.025-0.448-0.046-0.833-0.068-1.135 c-0.006-0.107-0.015-0.212-0.025-0.319c-0.387-4.411-1.277-8.12-2.493-11.241c2.043-4.231,3.163-9.025,3.163-14.082 c0-7.425-2.33-13.947-6.45-19.1c1.687-1.36,3.113-3.068,4.157-5.053c2.798-5.31,2.423-11.732-0.97-16.68l-25.399-37.028 l20.084-21.379c2.794-2.906,4.512-6.853,4.512-11.203c0-8.929-7.236-16.168-16.166-16.168h-0.004h-25.48 c-4.718,0-9.2,2.061-12.272,5.642l-0.711,0.829c-2.949-3.93-7.647-6.471-12.937-6.471h-20.516c-2.511,0-4.88,0.59-7,1.611 c-2.12-1.022-4.488-1.611-7-1.611h-19.305c-5.831,0-10.943,3.088-13.787,7.72c-2.931-4.784-8.148-7.72-13.785-7.72h-21.07 c-8.928,0-16.168,7.239-16.168,16.168v4.676l-3.865-10.339c-2.364-6.318-8.4-10.505-15.146-10.505h-20.844 c-6.745,0-12.781,4.188-15.146,10.505l-5.732,15.331c-2.309-8.461-7.619-15.333-15.537-19.839 c-7.002-3.985-15.956-6.006-26.614-6.006h-0.002c-0.427,0-0.855,0.003-1.281,0.01h-36.717c-2.224,0-4.341,0.449-6.269,1.261 c-1.935-0.817-4.062-1.27-6.293-1.27H51.558c-8.93,0-16.168,7.239-16.168,16.168v17.123c0,2.451,0.56,4.766,1.537,6.849 c-0.975,2.082-1.537,4.397-1.537,6.849v17.123c0,2.451,0.56,4.766,1.537,6.849c-0.975,2.083-1.537,4.397-1.537,6.849v17.122 c0,3.001,0.831,5.802,2.257,8.21c-1.425,2.408-2.257,5.209-2.257,8.21v12.153c0,8.929,7.238,16.168,16.168,16.168h0.011v25.912 c0,8.929,7.24,16.168,16.168,16.168h14.126c4.354,0,8.298-1.73,11.205-4.528c2.907,2.799,6.85,4.528,11.205,4.528h14.13 c3.821,0,7.333-1.326,10.101-3.543c2.829,2.265,6.381,3.543,10.101,3.543h13.979c0.204,0,0.407-0.015,0.611-0.024 c0.125,0.003,0.247,0.024,0.374,0.024h14.51c5.124,0,9.831-2.416,12.836-6.335c3.002,3.918,7.707,6.335,12.833,6.335h14.737 c0.678,0,1.347-0.044,2.01-0.127c0.638,0.077,1.282,0.127,1.941,0.127h13.293c3.549,0,6.83-1.144,9.496-3.081 c2.716,1.969,6.023,3.081,9.495,3.081h14.507c3.609,0,6.931-1.196,9.621-3.196c5.807,2.8,12.716,4.335,20.457,4.335 c7.793,0,14.868-1.458,20.787-4.204c2.659,1.92,5.913,3.064,9.444,3.064h14.13c8.745,0,15.853-6.95,16.141-15.626 c0.289,8.676,7.393,15.626,16.141,15.626h43.979c1.394,0,2.737-0.195,4.026-0.526c1.289,0.332,2.632,0.526,4.026,0.526h14.128 c3.823,0,7.335-1.326,10.103-3.544c2.829,2.265,6.381,3.544,10.101,3.544h13.977c6.48,0,12.334-3.871,14.876-9.834 C483.101,333.005,482.826,327.915,480.596,323.682z M51.558,196.451v-14.652h81.907h3.607v17.123H51.558V196.451z M51.558,227.271 v-12.18v-2.472h85.514v17.123H51.558V227.271z M51.558,245.909v-2.472h85.514v17.122h-3.607H51.558V245.909z M98.044,289.135 h-9.941h-6.24v42.08H67.737v-42.08H51.558v-12.153h36.545h9.941V289.135z M138.604,331.217L138.604,331.217v-0.001 c-0.415-0.621-0.711-1.651-0.932-2.796c0-0.003,0-0.008-0.002-0.011c-0.375-1.957-0.524-4.245-0.623-5.44 c-0.013-0.156-0.026-0.297-0.036-0.413c-0.382-5.469-1.29-11.089-7.899-11.089h-10.71v19.748h-14.131v-27.158v-27.076h9.941 h17.708c0.598,0,1.193,0.017,1.787,0.052c0.402,0.024,0.8,0.066,1.198,0.106c0.19,0.018,0.383,0.027,0.572,0.05 c0.485,0.058,0.965,0.136,1.442,0.219c0.098,0.017,0.198,0.027,0.294,0.044c7.472,1.382,13.695,5.907,13.695,14.797 c0,4.025-1.33,7.905-4.015,10.653l-0.001,0.001c-0.008,0.008-0.016,0.014-0.023,0.022c-0.272,0.276-0.559,0.537-0.857,0.788 c-0.097,0.081-0.198,0.157-0.297,0.236c-0.22,0.176-0.447,0.344-0.683,0.507c-0.117,0.081-0.238,0.161-0.36,0.238 c-0.243,0.155-0.493,0.3-0.749,0.44c-0.115,0.064-0.23,0.129-0.348,0.19c-0.378,0.19-0.765,0.369-1.172,0.526V306 c0.324,0.077,0.631,0.175,0.929,0.282c0.096,0.036,0.189,0.074,0.283,0.112c0.203,0.082,0.4,0.17,0.592,0.266 c0.095,0.047,0.19,0.094,0.282,0.144c0.219,0.121,0.429,0.251,0.634,0.389c0.043,0.029,0.089,0.055,0.131,0.084l0.001,0.001 c3.507,2.486,4.676,7.52,5.047,11.709c0.152,2.278,0.382,10.253,2.28,12.23H138.604z M196.267,331.216h-2.52l-3.339-9.724h-18.914 l-2.848,8.107l-0.568,1.617h-14.51l20.279-54.234h14.355l20.281,54.234H196.267z M205.377,257.412 c-0.002,0.001-0.004,0.001-0.006,0.002c-1.25,0.556-2.571,1.028-3.949,1.426c-0.023,0.006-0.046,0.014-0.069,0.021 c-1.356,0.387-2.768,0.702-4.232,0.951c-0.051,0.009-0.101,0.018-0.154,0.026c-0.711,0.117-1.432,0.222-2.167,0.309 c-0.068,0.009-0.137,0.015-0.204,0.023c-0.687,0.079-1.381,0.147-2.085,0.2c-0.068,0.005-0.137,0.012-0.205,0.017 c-0.715,0.053-1.438,0.091-2.168,0.119c-0.152,0.005-0.303,0.011-0.455,0.015c-0.734,0.023-1.471,0.039-2.218,0.039H153.24h-3.607 v-78.752h3.607h33.234c0.383-0.006,0.771-0.01,1.156-0.01c0.022,0,0.041,0.001,0.061,0.001c0.172,0,0.346,0.002,0.52,0.004 c0.247,0.002,0.495,0.003,0.743,0.009c0.18,0.003,0.36,0.011,0.54,0.015c0.241,0.008,0.482,0.013,0.723,0.023 c0.185,0.006,0.371,0.017,0.556,0.026c0.236,0.012,0.472,0.023,0.707,0.037c0.185,0.012,0.371,0.026,0.556,0.039 c0.236,0.017,0.472,0.032,0.705,0.053c0.188,0.016,0.372,0.034,0.558,0.053c0.232,0.023,0.464,0.043,0.695,0.068 c0.188,0.022,0.375,0.044,0.562,0.067c0.229,0.027,0.456,0.055,0.683,0.085c0.187,0.025,0.373,0.055,0.558,0.082 c0.225,0.032,0.45,0.067,0.673,0.103c0.186,0.03,0.372,0.064,0.557,0.097c0.22,0.039,0.44,0.079,0.659,0.122 c0.185,0.036,0.368,0.073,0.55,0.113c0.219,0.046,0.435,0.093,0.651,0.142c0.181,0.041,0.36,0.085,0.539,0.129 c0.212,0.053,0.427,0.107,0.638,0.162c0.179,0.047,0.356,0.098,0.532,0.149c0.208,0.059,0.415,0.12,0.621,0.183 c0.175,0.054,0.347,0.11,0.52,0.166c0.204,0.066,0.407,0.135,0.608,0.205c0.17,0.06,0.338,0.123,0.508,0.187 c0.198,0.073,0.393,0.15,0.59,0.227c0.166,0.068,0.331,0.137,0.495,0.206c0.192,0.082,0.383,0.166,0.57,0.252 c0.162,0.073,0.322,0.15,0.48,0.226c0.185,0.089,0.369,0.182,0.552,0.277c0.156,0.081,0.309,0.163,0.461,0.247 c0.179,0.099,0.356,0.202,0.53,0.304c0.15,0.088,0.299,0.178,0.445,0.269c0.171,0.108,0.34,0.218,0.507,0.33 c0.143,0.096,0.287,0.193,0.426,0.292c0.164,0.116,0.324,0.237,0.483,0.358c0.136,0.105,0.273,0.208,0.405,0.316 c0.155,0.125,0.305,0.255,0.456,0.386c0.129,0.112,0.258,0.224,0.383,0.34c0.147,0.136,0.288,0.276,0.429,0.416 c0.121,0.12,0.241,0.24,0.359,0.364c0.137,0.146,0.269,0.296,0.4,0.447c0.113,0.128,0.227,0.257,0.335,0.389 c0.128,0.156,0.248,0.318,0.371,0.479c0.103,0.137,0.208,0.273,0.307,0.415c0.117,0.166,0.23,0.34,0.341,0.514 c0.093,0.146,0.19,0.289,0.279,0.439c0.107,0.178,0.205,0.364,0.306,0.549c0.084,0.154,0.17,0.306,0.25,0.466 c0.097,0.192,0.184,0.39,0.274,0.589c0.073,0.162,0.15,0.321,0.219,0.486c0.084,0.205,0.16,0.419,0.238,0.631 c0.063,0.169,0.128,0.336,0.185,0.51c0.073,0.219,0.135,0.447,0.201,0.673c0.053,0.178,0.108,0.351,0.154,0.534 c0.061,0.237,0.111,0.484,0.163,0.729c0.039,0.181,0.083,0.358,0.116,0.543c0.049,0.261,0.084,0.534,0.124,0.804 c0.025,0.179,0.058,0.354,0.08,0.537c0.036,0.307,0.059,0.628,0.084,0.947c0.013,0.155,0.031,0.304,0.04,0.462 c0.027,0.482,0.042,0.976,0.042,1.483c0,7.059-4.192,12.794-10.368,15.882c0.619,0.179,1.216,0.393,1.8,0.625 c0.17,0.067,0.334,0.141,0.501,0.212c0.428,0.184,0.847,0.382,1.255,0.592c0.154,0.08,0.307,0.157,0.457,0.241 c0.51,0.282,1.006,0.581,1.48,0.905c0.019,0.013,0.038,0.023,0.057,0.037c0.529,0.364,1.033,0.757,1.516,1.171 c0.04,0.034,0.077,0.071,0.116,0.108c0.437,0.382,0.852,0.785,1.247,1.204c0.048,0.051,0.097,0.102,0.143,0.154 c1.301,1.412,2.368,3.026,3.179,4.801c0,0.001,0,0.003,0.002,0.004c1.173,2.575,1.815,5.477,1.815,8.588 C218.13,247.409,213.088,253.982,205.377,257.412z M259.225,331.216h-4.815h-9.69l-18.841-33.801h-0.152v33.801h-1.08h-12.213 V295.62v-18.639h14.507l18.837,33.421h0.154v-33.421h9.31h3.983V331.216z M247.239,246.443l-4.964,14.117H226.8h-5.59 l29.451-78.753h20.844l19.011,50.836l10.44,27.917h-20.933h-0.466l-4.853-14.117H247.239z M298.476,331.342 c-0.019,0.004-0.036,0.009-0.053,0.013c-0.564,0.136-1.135,0.257-1.714,0.363c-0.023,0.004-0.044,0.008-0.066,0.012 c-1.133,0.205-2.291,0.357-3.464,0.458c-0.081,0.008-0.162,0.015-0.243,0.022c-0.548,0.044-1.097,0.079-1.65,0.102 c-0.093,0.004-0.188,0.008-0.28,0.011c-0.566,0.021-1.133,0.033-1.701,0.033c-0.572,0-1.139-0.016-1.703-0.039 c-0.11-0.004-0.219-0.009-0.329-0.014c-0.549-0.027-1.093-0.066-1.632-0.114c-0.093-0.009-0.183-0.019-0.276-0.028 c-0.532-0.054-1.06-0.116-1.582-0.193c-0.032-0.004-0.067-0.009-0.098-0.013c-0.546-0.082-1.084-0.179-1.617-0.287 c-0.088-0.018-0.177-0.036-0.265-0.054c-0.53-0.111-1.054-0.235-1.568-0.372c-0.044-0.013-0.086-0.025-0.13-0.038 c-0.508-0.138-1.009-0.291-1.499-0.456c-0.039-0.013-0.078-0.024-0.115-0.037c-0.501-0.171-0.99-0.359-1.469-0.558 c-0.068-0.028-0.135-0.057-0.203-0.086c-0.484-0.206-0.96-0.425-1.421-0.661c0,0-0.002,0-0.002-0.001 c-5.727-2.937-9.591-8.206-9.637-16.42h9.637h4.49c0.305,6.38,4.254,8.429,10.255,8.429c4.252,0,8.659-1.518,8.659-5.544 c0-4.786-7.748-5.697-15.57-7.901c-0.612-0.175-1.228-0.36-1.84-0.554c-0.117-0.037-0.234-0.074-0.349-0.111 c-1.953-0.628-3.874-1.373-5.637-2.312c-0.002-0.001-0.004-0.002-0.006-0.003c-4.566-2.43-8.042-6.166-8.042-12.666 c0-6.905,4.053-11.356,9.449-13.871c0.055-0.025,0.108-0.052,0.162-0.077c0.464-0.211,0.937-0.407,1.419-0.591 c0.068-0.026,0.135-0.053,0.203-0.078c0.486-0.181,0.98-0.348,1.48-0.501c0.053-0.017,0.106-0.031,0.157-0.047 c2.991-0.898,6.191-1.317,9.235-1.317c2.522,0,5.047,0.29,7.438,0.886h0.001c7.834,1.952,14.224,7.213,14.285,16.583h-7.815 h-6.313c0.227-4.937-4.406-6.532-8.736-6.532c-3.037,0-6.836,1.063-6.836,4.634c0,4.177,7.823,4.936,15.722,7.14 c0.521,0.147,1.042,0.301,1.56,0.461c0.029,0.01,0.059,0.019,0.088,0.028c7.247,2.258,14.076,6.046,14.076,15.155 C312.928,324.326,306.582,329.38,298.476,331.342z M359.494,288.299h-9.713h-16.113v11.091h16.113v0h6.217v10.935h-6.217h-16.113 v20.891h-8.922h-5.208v-54.234h3.542h26.702h9.712V288.299z M353.563,260.562v-0.001l-27.354-49.082h-0.219v49.082h-8.87h-10.436 v-30.842v-47.911h21.07l27.354,48.532h0.219v-48.532h17.136h2.169v78.754h-2.169H353.563z M409.929,331.216h-8.115H365.95v-8.164 v-46.069h9.712h26.152h7.356V288.3h-7.356h-21.737v9.495h21.737h4.848v10.937h-4.848h-21.737v10.332h21.737h8.115V331.216z M417.53,227.473l-8.383,8.824v24.264h-18.348h-2.169v-78.753h2.169h18.348v30.223l25.92-30.223h25.48l-29.12,30.995l32.76,47.759 H438.71L417.53,227.473z M452.314,331.216L452.314,331.216c-1.217-1.824-1.442-7.141-1.595-8.66 c-0.379-5.469-1.29-11.089-7.899-11.089h-10.709v19.748h-6.013h-8.115v-54.234h7.356h20.292c9.571,0,18.987,4.331,18.987,15.266 c0,5.85-2.808,11.394-8.506,13.599v0.15c5.772,1.369,7.444,7.823,7.899,12.99c0.154,2.278,0.379,10.253,2.28,12.23H452.314z\"\n})));\n\nvar _ref10 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref11 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref12 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref13 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref14 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref15 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref16 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref17 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref18 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref19 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref20 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref21 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref22 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref23 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar _ref24 = /*#__PURE__*/React.createElement(\"g\", null);\n\nvar SvgBankTransLogo = function SvgBankTransLogo(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n id: \"Capa_1\",\n x: \"0px\",\n y: \"0px\",\n viewBox: \"0 0 511.998 511.998\",\n style: {\n enableBackground: \"new 0 0 511.998 511.998\"\n },\n xmlSpace: \"preserve\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, _ref8, _ref9, _ref10, _ref11, _ref12, _ref13, _ref14, _ref15, _ref16, _ref17, _ref18, _ref19, _ref20, _ref21, _ref22, _ref23, _ref24);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgBankTransLogo, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/BankTransLogo.a13e97e4.svg\";\nexport { ForwardRef as ReactComponent };","import React, {useState} from 'react'\nimport \"../Styles/Payment.scss\"\nimport {ReactComponent as PaypalLogo} from \"../Images/PaypalLogo.svg\"\nimport {ReactComponent as PayfastLogo} from \"../Images/PayfastLogo.svg\"\nimport {ReactComponent as TransferLogo} from \"../Images/BankTransLogo.svg\"\nimport {useHistory} from \"react-router-dom\"\nimport FormError from \"./errorMessage\"\n\nconst emailRegex = RegExp(\n /^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*$/\n);\n\nconst mobileRegex = RegExp(\n /^\\+(?:[0-9] ?){10,14}[0-9]$/\n) \n\nconst formValid = (formErrorData) => {\n let valid = true;\n // validate form errors being empty\n Object.values(formErrorData).forEach(val => {\n val.length > 0 && (valid = false);\n });\n \n return valid;\n };\nconst Payment = ({formState, inputChange,initialState,setInitialState}) => {\n let history = useHistory();\n const [payErrors,setPayErrors] = useState(initialState)\n const [isInitial, setisInitial] = useState(true)\n const handleInputChange = (e) =>{\n console.log(e)\n const {name,value} = e.target;\n inputChange(name, value)\n let tempVal = \"\";\n switch(name) {\n case \"billEmail\":\n tempVal = emailRegex.test(value) ? \"\" : \"Invalid email address\"\n setPayErrors({\n ...payErrors, billEmail : tempVal\n })\n break;\n case \"billMobile\":\n tempVal = mobileRegex.test(value) ? \"\" : \"Invalid International mobile number\";\n setPayErrors({\n ...payErrors, billMobile : tempVal\n })\n break;\n case \"billName\":\n tempVal = value.length < 1 ? \"Field Is required\" : \"\"\n setPayErrors({\n ...payErrors, billName : tempVal\n })\n break;\n case \"billSurname\":\n tempVal = value.length < 1 ? \"Field Is required\" : \"\"\n setPayErrors({\n ...payErrors, billSurname : tempVal\n })\n break;\n case \"paymentMethod\" : \n tempVal = value.checked === 0 ? \"Field Is required\" : \"\"\n setPayErrors({\n ...payErrors,paymentMethod : tempVal\n })\n break;\n case \"billAddress\" : \n tempVal = value.length < 1 ? \"Field Is required\" : \"\"\n setPayErrors({\n ...payErrors, billAddress : tempVal\n })\n break;\n default : \n setPayErrors({\n ...payErrors\n })\n }\n }\n \n const handleOnSubmit = (e) =>{\n e.preventDefault()\n setisInitial(false);\n\n if (formValid(payErrors)) {\n setInitialState(payErrors)\n history.push(\"/checkout/review\")\n } else {\n console.error(\"FORM INVALID - DISPLAY ERROR MESSAGE\");\n }\n }\n const PhoneInputSet = (v) => {\n console.log(v)\n }\n return (\n \n
Payment Information \n
\n {\n !isInitial && payErrors.paymentMethod.length > 0 && \n }\n \n \n \n \n history.push(\"/checkout/shipping\")}>← back \n next \n
\n \n
\n )\n}\n\nexport default Payment\n","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: \"40.5364351%\",\n y1: \"144.570586%\",\n x2: \"24.8669104%\",\n y2: \"301.872682%\",\n id: \"linearGradient-1\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#ED1C24\",\n offset: \"2%\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#BE1E2D\",\n offset: \"100%\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: \"49.9983656%\",\n y1: \"7.40771812%\",\n x2: \"49.9983656%\",\n y2: \"70.4278523%\",\n id: \"linearGradient-2\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#ED1C24\",\n offset: \"2%\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#BE1E2D\",\n offset: \"100%\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: \"49.9919491%\",\n y1: \"22.2881356%\",\n x2: \"49.9919491%\",\n y2: \"105.805085%\",\n id: \"linearGradient-3\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#ED1C24\",\n offset: \"2%\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#BE1E2D\",\n offset: \"100%\"\n})));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Homepage\",\n stroke: \"none\",\n strokeWidth: 1,\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Home-Experiment\",\n transform: \"translate(-161.000000, -62.000000)\",\n fillRule: \"nonzero\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Navbar\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"PayFast-Logo-Colour\",\n transform: \"translate(161.000000, 62.000000)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M98.162406,10.9789474 C97.5739624,11.334191 96.9500266,11.6270074 96.3007519,11.8526316 C95.5932149,12.1302995 94.8527371,12.3152926 94.0977444,12.4030075 C93.7774436,12.4556391 93.4511278,12.5007519 93.1172932,12.5338346 L93.1112782,12.5338346 C90.0240602,12.7984962 87.3879699,12.1353383 85.881203,10.7157895 C85.8661654,10.7067669 85.8571429,10.6887218 85.8421053,10.6796992 C85.8421053,10.7338346 85.8421053,10.7894737 85.8421053,10.8496241 C85.8487879,11.4816806 86.083786,12.0900053 86.5037594,12.562406 C87.7278195,13.9669173 90.081203,14.7323308 92.8195489,14.7759398 C94.6421053,14.7879699 96.3052632,14.4451128 97.5789474,13.8330827 C98.1806096,13.5547673 98.7213041,13.1602341 99.1699248,12.6721805 C99.5994538,12.2061922 99.8457124,11.600428 99.8631582,10.9669173 C99.863357,10.570134 99.7679312,10.1791464 99.5849624,9.82706767 C99.1695816,10.2784465 98.6903059,10.6665281 98.162406,10.9789474 L98.162406,10.9789474 Z M92.7819549,9.03909774 C89.8962406,9.26015038 87.4105263,8.72030075 85.8646617,7.49022556 C85.9114255,8.06554996 86.1417926,8.61062922 86.5218045,9.04511278 C87.7443609,10.4511278 90.0992481,11.2135338 92.837594,11.2571429 C94.6631579,11.2691729 96.3233083,10.9263158 97.5954887,10.312782 C98.1991241,10.0377542 98.7408318,9.64336647 99.1879699,9.15338346 C99.6164783,8.68520144 99.8615746,8.0780675 99.8781955,7.44360902 C99.8781955,6.95155676 99.7333492,6.47039083 99.4616541,6.06015038 C99.0541353,6.58947368 97.3533835,8.68721805 92.7819549,9.03609023 L92.7819549,9.03909774 Z M92.8646617,7.73984962 C94.6902256,7.75037594 96.3503759,7.40902256 97.6210526,6.79398496 C98.2254364,6.51807253 98.7680558,6.12325424 99.2165414,5.63308271 C100.126041,4.68016587 100.138548,3.18453554 99.2451128,2.21654135 C98.0195489,0.809022556 95.6691729,0.0466165414 92.9293233,0.0030075188 C91.1052632,-0.00902255639 89.443609,0.332330827 88.1729323,0.944360902 C87.5708042,1.22329363 87.0296392,1.61830829 86.5804511,2.10676692 C86.1564037,2.57331711 85.9127236,3.17585199 85.8932331,3.80601504 C85.9001824,4.43937094 86.1350749,5.04902393 86.5548872,5.52330827 C87.7729323,6.92932331 90.1308271,7.69022556 92.8646617,7.73684211 L92.8646617,7.73984962 Z M87.5383459,2.42706767 C88.2045113,1.61503759 90.2691729,0.82556391 92.6857143,0.864661654 C94.3022556,0.87518797 95.7503759,1.21954887 96.7293233,1.72030075 C97.1390846,1.90870341 97.5059972,2.17889846 97.8075188,2.51428571 C97.9860084,2.69979475 98.0903297,2.94428103 98.1007519,3.20150376 C98.0879322,3.45921065 97.9809049,3.70323274 97.8,3.88721805 C97.1383459,4.69774436 95.0706767,5.49022556 92.6526316,5.4481203 C91.037594,5.43759398 89.5894737,5.09172932 88.6105263,4.5924812 C88.2030952,4.40147117 87.8368527,4.13279119 87.5323308,3.80150376 C87.3509234,3.61481594 87.2439686,3.3682851 87.2315789,3.10827068 C87.2471057,2.85133293 87.3562404,2.60898982 87.5383459,2.42706767 L87.5383459,2.42706767 Z\",\n id: \"Shape\",\n fill: \"url(#linearGradient-1)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M25.0962406,9.54736842 C24.4486216,8.79749373 23.5318296,8.42255639 22.3458647,8.42255639 L16.9323308,8.42255639 L16.5293233,10.4721805 L21.9428571,10.4721805 C22.5172932,10.4721805 22.9614035,10.6696742 23.275188,11.0646617 C23.59452,11.4768908 23.7090607,12.0119673 23.5864662,12.518797 L23.5052632,12.8691729 L23.4781955,13.112782 L18.4661654,13.112782 C17.28996,13.1093176 16.1499121,13.5191387 15.2451128,14.2706767 C14.310869,15.0001746 13.6737869,16.0445188 13.4526316,17.2090226 L13.4,17.4240602 C13.1473684,18.6090226 13.3403509,19.5884712 13.9789474,20.362406 C14.6175439,21.1363409 15.5293233,21.5223058 16.7142857,21.5203085 L23.8015038,21.5203085 L25.7157895,12.4120301 C25.9493734,11.2481203 25.7428571,10.2932331 25.0962406,9.54736842 Z M22.1578947,19.4721805 L17.1458647,19.4721805 C16.6245815,19.4957865 16.1216643,19.2770786 15.7834586,18.8796992 C15.4506266,18.4857143 15.3473684,18.0005013 15.4736842,17.4240602 L15.5278195,17.2090226 C15.638657,16.6291017 15.9600144,16.1106452 16.4300752,15.7533835 C16.8786471,15.3744449 17.4458893,15.1647888 18.0330827,15.1609023 L23.0180451,15.1609023 L22.1578947,19.4721805 Z M37.2706767,8.42255639 L34.9789474,19.4451128 L29.8030075,19.4451128 C29.2857962,19.4676108 28.7868861,19.2514164 28.4496241,18.8586466 C28.1172932,18.4646617 28.0150376,17.9774436 28.1488722,17.4030075 L29.993985,8.42255639 L27.918797,8.42255639 L26.0601504,17.3969925 C25.8075188,18.5839599 26.0050125,19.5634085 26.6526316,20.3353383 C27.3002506,21.1072682 28.2165414,21.4972431 29.4015038,21.5052632 L34.6030075,21.5052632 L34.4406015,22.2571429 C34.3053885,22.8302011 33.9772782,23.3393561 33.5112782,23.6992481 C33.0734688,24.0795438 32.5151968,24.2926248 31.9353383,24.3007519 L24.8406015,24.3007519 L24.4105263,26.3473684 L31.4977444,26.3473684 C32.6647394,26.3413179 33.7917388,25.9214241 34.6781955,25.162406 C35.6094713,24.4367186 36.2591617,23.4095486 36.5157895,22.2571429 L39.3729323,8.43157895 L37.2706767,8.42255639 Z\",\n id: \"Shape\",\n fill: \"url(#linearGradient-2)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M58.8962406,21.5263158 L51.8075188,21.5263158 C50.6215539,21.5263158 49.7097744,21.1403509 49.0721805,20.3684211 C48.4345865,19.5964912 48.241604,18.6170426 48.4932331,17.4300752 L48.5473684,17.2150376 C48.7678747,16.050653 49.4044551,15.0062549 50.3383459,14.2766917 C51.2437996,13.5252727 52.3842689,13.1154913 53.5609023,13.118797 L58.5714286,13.118797 L58.6,12.875188 L58.6796992,12.524812 C58.8027147,12.01821 58.6887323,11.4831571 58.3699248,11.0706767 C58.0460648,10.670695 57.5499919,10.4503424 57.0360902,10.4781955 L51.2045113,10.4781955 L51.6075188,8.42255639 L57.4406015,8.42255639 C58.6255639,8.42255639 59.5418546,8.79548872 60.1894737,9.54135338 C60.8370927,10.287218 61.043609,11.2441103 60.8090226,12.4120301 L58.8962406,21.5263158 Z M57.2511278,19.4781955 L58.1142857,15.1669173 L53.1278195,15.1669173 C52.5407188,15.1713114 51.9736437,15.3809058 51.524812,15.7593985 C51.0557089,16.11753 50.7345989,16.6355875 50.6225564,17.2150376 L50.5699248,17.4300752 C50.443609,18.0055138 50.5468672,18.4907268 50.8796992,18.8857143 C51.2172971,19.2830411 51.719752,19.5017894 52.2406015,19.4781955 L57.2511278,19.4781955 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M72.4902256,18.0225564 C72.2784061,19.121349 71.6264387,20.0857175 70.6857143,20.6917293 C69.775847,21.29347 68.7041389,21.6034942 67.6135338,21.5804511 L60.606015,21.5804511 L61.037594,19.5323308 L68.0451128,19.5323308 C69.4275689,19.5323308 70.2180451,19.0310777 70.4165414,18.0285714 L70.524812,17.5443609 C70.7403509,16.5418546 70.156391,16.0406015 68.7729323,16.0406015 L65.6150376,16.0406015 C64.4461153,16.0406015 63.5478697,15.7438596 62.9203008,15.1503759 C62.2015038,14.5037594 61.958396,13.6150376 62.1909774,12.4842105 L62.2992481,11.9984962 C62.510404,10.8994291 63.162533,9.93482164 64.1037594,9.32932331 C65.0133641,8.72146994 66.0865753,8.40517163 67.1804511,8.42255639 L74.2150376,8.42255639 L73.8105263,10.4721805 L66.7759398,10.4721805 C65.3924812,10.4721805 64.5929825,10.9734336 64.3774436,11.9759398 L64.2706767,12.4616541 C64.0701754,13.4641604 64.6631579,13.9654135 66.0496241,13.9654135 L69.2075188,13.9654135 C70.3744361,13.9654135 71.273183,14.2621554 71.9037594,14.8556391 C72.6055138,15.5022556 72.8385965,16.3914787 72.6030075,17.5233083 L72.4902256,18.0225564 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.9593985,21.5052632 L78.675188,21.5052632 C77.4882206,21.5052632 76.5719298,21.118797 75.9263158,20.3458647 C75.2807018,19.5729323 75.083208,18.5934837 75.3338346,17.4075188 L76.7849624,10.3774436 L75.4917293,10.3774436 L75.9428571,8.27218045 L77.2360902,8.27218045 L78.206015,3.58345865 L80.3112782,3.58345865 L79.3458647,8.27218045 L83.7067669,8.27218045 L83.2556391,10.3774436 L78.8947368,10.3774436 L77.4390977,17.4105263 C77.3142857,17.9849624 77.4120301,18.4721805 77.7398496,18.8661654 C78.0716463,19.2669047 78.5737199,19.4867014 79.0932331,19.4586466 L82.3819549,19.4586466 L81.9593985,21.5052632 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M15.6781955,9.62556391 C15.444038,10.7667235 14.8072968,11.7856163 13.8842105,12.4962406 C12.918797,13.275188 11.8691729,13.6646617 10.7353383,13.6646617 L3.66766917,13.6646617 L2.04661654,21.5263158 L7.10542736e-15,21.5263158 L3.69473684,3.78195489 L12.8105263,3.78195489 C13.9433584,3.78195489 14.8245614,4.17142857 15.4541353,4.95037594 C16.0837093,5.72932331 16.2842105,6.68621554 16.0556391,7.82105263 L15.6781955,9.62556391 Z M13.6330827,9.62556391 L14.0045113,7.82105263 C14.1278195,7.25413534 14.0315789,6.77593985 13.7112782,6.38496241 C13.3853559,5.99208585 12.893282,5.77586312 12.3834586,5.80150376 L5.31578947,5.80150376 L4.0887218,11.6406015 L11.156391,11.6406015 C11.7316269,11.6380788 12.2871457,11.4306923 12.7233083,11.0556391 C13.183695,10.6992975 13.5054211,10.193576 13.6330827,9.62556391 L13.6330827,9.62556391 Z\",\n id: \"Shape\",\n fill: \"url(#linearGradient-3)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M55.2977444,5.63308271 L46.7112782,5.63308271 C45.5003535,5.67220825 44.4629164,6.5112485 44.1714286,7.68721805 L43.3684211,11.6105263 L48.7263158,11.6105263 L48.2992481,13.6857143 L42.962406,13.6857143 L41.3082707,21.5458647 L39.2255639,21.5458647 L42.0827068,7.68120301 C42.6075859,5.303403 44.7019614,3.60098294 47.1368421,3.57293233 L55.7233083,3.57293233 L55.2977444,5.63308271 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M39.4120301,25.4917293 L40.0135338,25.4917293 L41.6827068,29.3654135 L40.8947368,29.3654135 L40.5338346,28.4796992 L38.8496241,28.4796992 L38.4992481,29.3654135 L37.7263158,29.3654135 L39.4120301,25.4917293 Z M40.2887218,27.8887218 L39.687218,26.3112782 L39.0857143,27.8887218 L40.2887218,27.8887218 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M43.4300752,25.4917293 L44.8045113,25.4917293 C45.0607746,25.4918245 45.315975,25.524672 45.5639098,25.5894737 C45.813024,25.6523033 46.0474816,25.7631471 46.2541353,25.9157895 C46.4647961,26.0746176 46.6352747,26.280634 46.7518797,26.5172932 C46.8886233,26.8032143 46.9546379,27.1178152 46.9443609,27.4345865 C46.9524166,27.7376364 46.8863421,28.0380687 46.7518797,28.3097744 C46.6318471,28.5441958 46.4619564,28.7495017 46.2541353,28.9112782 C46.0474621,29.0686605 45.8134459,29.1864334 45.5639098,29.2586466 C45.3172993,29.3314023 45.061628,29.3688671 44.8045113,29.3699248 L43.4300752,29.3699248 L43.4300752,25.4917293 Z M44.6902256,28.7639098 C44.8705227,28.7637821 45.0501872,28.7425857 45.2255639,28.7007519 C45.3995996,28.6611849 45.5644645,28.5887056 45.7112782,28.487218 C45.8594708,28.3814706 45.9801391,28.2417223 46.0631579,28.0796992 C46.1615869,27.8771998 46.2085871,27.6535615 46.2,27.4285714 C46.2096133,27.1947892 46.1626706,26.9621394 46.0631579,26.7503759 C45.9822515,26.5861217 45.8612261,26.4449254 45.7112782,26.3398496 C45.5648616,26.2398574 45.3995882,26.1707803 45.2255639,26.1368421 C45.049431,26.100417 44.8700846,26.081777 44.6902256,26.081203 L44.1157895,26.081203 L44.1157895,28.7639098 L44.6902256,28.7639098 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M47.6120301,25.4917293 L48.875188,25.4917293 C49.0772053,25.48981 49.2788499,25.5094704 49.4766917,25.5503759 C49.6413799,25.5849837 49.7973813,25.6524991 49.9353383,25.7488722 C50.0637646,25.8375404 50.1673121,25.9576554 50.2360902,26.0977444 C50.3092878,26.259599 50.3447667,26.4359652 50.3398496,26.6135338 C50.3458809,26.8012274 50.3045062,26.9874134 50.2195489,27.1548872 C50.141872,27.2975187 50.0303297,27.4188726 49.8947368,27.5082707 C49.7476607,27.6009747 49.5852108,27.6666676 49.4150376,27.7022556 C49.2243395,27.7434956 49.0296888,27.7636667 48.8345865,27.762406 L48.2992481,27.762406 L48.2992481,29.3654135 L47.6105263,29.3654135 L47.6120301,25.4917293 Z M48.7834586,27.1819549 C48.8911982,27.1825703 48.9988129,27.1745244 49.1052632,27.1578947 C49.2007107,27.1434079 49.2931539,27.1134401 49.3789474,27.0691729 C49.4571277,27.0300409 49.5235421,26.9708905 49.5714286,26.8977444 C49.6215571,26.811665 49.6460763,26.7130665 49.6421053,26.6135338 C49.6577168,26.4248167 49.5538114,26.2464358 49.3819549,26.1669173 C49.2979489,26.125232 49.2074116,26.0982743 49.1142857,26.087218 C49.0115766,26.073826 48.9080891,26.0672953 48.8045113,26.0676692 L48.2992481,26.0676692 L48.2992481,27.1789474 L48.7834586,27.1819549 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.7639098,27.4180451 C50.7578614,27.1306502 50.8089763,26.8449177 50.9142857,26.5774436 C51.011749,26.3369495 51.1588045,26.1196968 51.3458647,25.9398496 C51.5349758,25.7615328 51.7586243,25.6238636 52.0030075,25.5353383 C52.2676957,25.4350286 52.5485223,25.3840619 52.8315789,25.3849432 C53.1175923,25.3838063 53.4014237,25.4347635 53.6691729,25.5353383 C53.9153827,25.623782 54.141015,25.7614126 54.3323308,25.9398496 C54.5207902,26.1191393 54.668934,26.3364851 54.7669173,26.5774436 C54.8722267,26.8449177 54.9233416,27.1306502 54.9172932,27.4180451 C54.9225446,27.7014696 54.8714296,27.9831129 54.7669173,28.2466165 C54.6675421,28.4890287 54.5196512,28.7085623 54.3323308,28.8917293 C54.1419224,29.0757176 53.9163771,29.2194324 53.6691729,29.3142857 C53.4018115,29.4162632 53.1177166,29.4672677 52.8315789,29.4646617 C52.5483976,29.4669935 52.2673095,29.4159793 52.0030075,29.3142857 C51.5078981,29.1245334 51.1136683,28.7379269 50.9142857,28.2466165 C50.8097734,27.9831129 50.7586584,27.7014696 50.7639098,27.4180451 Z M51.5157895,27.4180451 C51.5135135,27.6126108 51.5455841,27.8060521 51.6105263,27.9894737 C51.6710581,28.1564522 51.7640775,28.309781 51.8842105,28.4406015 C52.0030293,28.568676 52.1468416,28.6710335 52.3067669,28.7413534 C52.4768744,28.8138755 52.6602033,28.850234 52.8451128,28.8481203 C53.0309811,28.8500847 53.2152616,28.8137405 53.3864662,28.7413534 C53.5477261,28.6718488 53.6926796,28.5694081 53.8120301,28.4406015 C53.9316886,28.309698 54.0241997,28.1563646 54.0842105,27.9894737 C54.1503195,27.8063156 54.1829195,27.6127531 54.1804511,27.4180451 C54.1825593,27.2272856 54.1499483,27.0377337 54.0842105,26.8586466 C54.0247209,26.6918433 53.9327181,26.5385053 53.8135338,26.4075188 C53.6960636,26.2785832 53.5525457,26.1760704 53.3924812,26.1067669 C53.2199074,26.0316673 53.0332992,25.9942431 52.8451128,25.9969925 C52.6578814,25.9940671 52.4722168,26.0315077 52.3007519,26.1067669 C52.141582,26.1768783 51.9987137,26.2792928 51.881203,26.4075188 C51.7630723,26.5392856 51.6712002,26.6924057 51.6105263,26.8586466 C51.5454877,27.0379198 51.5128986,27.2273439 51.5142857,27.4180451 L51.5157895,27.4180451 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M59.762406,26.4 C59.6612515,26.2628901 59.5222132,26.15835 59.362406,26.0992481 C59.0314986,25.9662218 58.6611273,25.9710951 58.3338346,26.112782 C58.1728712,26.1820371 58.0283606,26.2845269 57.9097744,26.4135338 C57.789154,26.5439876 57.6960716,26.6974202 57.6360902,26.8646617 C57.5703525,27.0437487 57.5377414,27.2333006 57.5398496,27.4240602 C57.53705,27.620994 57.5685999,27.8169087 57.6330827,28.0030075 C57.690151,28.1696133 57.7801576,28.3230337 57.8977444,28.4541353 C58.0133442,28.5796005 58.1543075,28.6790437 58.3112782,28.7458647 C58.482413,28.8183242 58.666814,28.85418 58.8526316,28.8511278 C59.0442823,28.8546994 59.234012,28.8124226 59.406015,28.7278195 C59.5595316,28.6515755 59.6925628,28.5396849 59.793985,28.4015038 L60.3473684,28.7894737 C60.1788686,29.0032241 59.9632273,29.1751195 59.7172932,29.2917293 C59.4443943,29.4148539 59.1474425,29.4754773 58.8481203,29.4691729 C58.5629379,29.472046 58.2797789,29.4210264 58.0135338,29.318797 C57.5199612,29.1293367 57.127993,28.7422749 56.9323308,28.2511278 C56.8285425,27.9874176 56.777454,27.7059198 56.7819549,27.4225564 C56.777765,27.1343205 56.8325191,26.8482686 56.9428571,26.5819549 C57.0468139,26.340115 57.2005236,26.122872 57.393985,25.9443609 C57.5863439,25.7665455 57.8123322,25.6290096 58.0586466,25.5398496 C58.3249329,25.4396515 58.6072166,25.3886977 58.8917293,25.389465 C59.0218609,25.3900993 59.151685,25.402176 59.2796992,25.4255639 C59.4124198,25.448136 59.5424395,25.4844205 59.6676692,25.5338346 C59.7905551,25.5825672 59.9079897,25.6440565 60.0180451,25.7172932 C60.1255088,25.7885393 60.2200875,25.8775246 60.2977444,25.9804511 L59.762406,26.4 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M60.5383459,28.0421053 C60.5355572,27.8472955 60.5739918,27.6540976 60.6511278,27.475188 C60.792803,27.143785 61.0647794,26.8854074 61.4030075,26.7609023 C61.7636943,26.6286306 62.159614,26.6286306 62.5203008,26.7609023 C62.8585289,26.8854074 63.1305053,27.143785 63.2721805,27.475188 C63.3480745,27.654433 63.3859653,27.8474713 63.3834586,28.0421053 C63.3856542,28.2371975 63.3477798,28.4306638 63.2721805,28.6105263 C63.2021546,28.7758925 63.0999182,28.9256687 62.9714286,29.0511278 C62.8409058,29.1749663 62.6877357,29.2724846 62.5203008,29.3383459 C62.1607065,29.4766328 61.7626018,29.4766328 61.4030075,29.3383459 C61.2355726,29.2724846 61.0824025,29.1749663 60.9518797,29.0511278 C60.82339,28.9256687 60.7211537,28.7758925 60.6511278,28.6105263 C60.5743017,28.4309921 60.5358848,28.2373711 60.5383459,28.0421053 L60.5383459,28.0421053 Z M61.2075188,28.0421053 C61.2082917,28.1439822 61.2234799,28.245237 61.2526316,28.3428571 C61.282378,28.441766 61.329756,28.5344843 61.3924812,28.6165414 C61.456082,28.6984329 61.5366133,28.7656278 61.6285714,28.8135338 C61.8430718,28.9157964 62.0922666,28.9157964 62.3067669,28.8135338 C62.3984664,28.7652407 62.4789218,28.6981091 62.5428571,28.6165414 C62.6056904,28.5347731 62.6526181,28.4419378 62.681203,28.3428571 C62.711526,28.2454627 62.7272358,28.1441093 62.7278195,28.0421053 C62.7277164,27.9400634 62.7119955,27.8386384 62.681203,27.7413534 C62.6519638,27.6429921 62.6050863,27.5507658 62.5428571,27.4691729 C62.3161353,27.2067048 61.9423386,27.1273959 61.6285714,27.275188 C61.5367507,27.3219825 61.4561954,27.3881713 61.3924812,27.4691729 C61.3303479,27.5510495 61.2830179,27.6431649 61.2526316,27.7413534 C61.2231152,27.8388918 61.207919,27.9401994 61.2075188,28.0421053 L61.2075188,28.0421053 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M67.1669173,26.6616541 C67.3187678,26.6574563 67.4695412,26.6883314 67.6075188,26.7518797 C67.7244596,26.8079714 67.8272566,26.889695 67.9082707,26.9909774 C67.9878276,27.091146 68.0466173,27.2061695 68.081203,27.3293233 C68.1172809,27.4575371 68.1354978,27.5901153 68.1353394,27.7233083 L68.1353394,29.3654135 L67.4796992,29.3654135 L67.4796992,27.9097744 C67.4791733,27.8293088 67.4736489,27.7489535 67.4631579,27.6691729 C67.4525936,27.5898379 67.4281614,27.5129784 67.3909774,27.4421053 C67.3557302,27.3746753 67.3040008,27.3172557 67.2406015,27.275188 C67.1645465,27.2279021 67.0759242,27.2048288 66.9864662,27.2090226 C66.8943632,27.2067464 66.8033822,27.2296216 66.7233083,27.275188 C66.6517946,27.3184003 66.5902847,27.3763222 66.5428571,27.4451128 C66.495245,27.5163288 66.4601535,27.5951576 66.4390977,27.6781955 C66.4171167,27.7611182 66.4059962,27.8465442 66.406015,27.9323308 L66.406015,29.3654135 L65.7428571,29.3654135 L65.7428571,27.7789474 C65.7486468,27.6340232 65.7075103,27.4911003 65.6255639,27.3714286 C65.5374492,27.2584823 65.3984223,27.1974461 65.2556391,27.2090226 C65.165858,27.2070584 65.0771513,27.228846 64.9984962,27.2721805 C64.9283394,27.3122562 64.8677807,27.3671696 64.8210526,27.4330827 C64.7742898,27.5031367 64.7392448,27.5803371 64.7172932,27.6616541 C64.693319,27.7462907 64.6811737,27.833838 64.681203,27.9218045 L64.681203,29.3654135 L64.0255639,29.3654135 L64.0255639,26.7383459 L64.6481203,26.7383459 L64.6481203,27.1609023 L64.6601504,27.1609023 C64.6898814,27.0933254 64.7294032,27.0304958 64.7774436,26.9744361 C64.8286283,26.9141539 64.8872398,26.8605952 64.9518797,26.8150376 C65.0235073,26.7663848 65.1020935,26.7288662 65.1849624,26.7037594 C65.2788829,26.6745266 65.3768323,26.6603163 65.475188,26.6616541 C65.6549543,26.655434 65.8324769,26.7030876 65.9849624,26.7984962 C66.1187188,26.8898979 66.2260718,27.0148838 66.2962406,27.1609023 C66.3765496,27.0075463 66.4978423,26.8794862 66.6466165,26.7909774 C66.8049889,26.7011717 66.9849289,26.6564467 67.1669173,26.6616541 L67.1669173,26.6616541 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M69.5308271,26.7383459 L69.5308271,27.1052632 L69.5473684,27.1052632 C69.5856045,27.0511459 69.6289078,27.0007933 69.6766917,26.9548872 C69.7343386,26.8988272 69.7996518,26.8512346 69.8706767,26.8135338 C69.9531824,26.769203 70.0404593,26.7343931 70.1308271,26.7097744 C70.2365104,26.6801965 70.3459072,26.6660155 70.4556391,26.6676692 C70.8055124,26.6631614 71.1405487,26.8087818 71.3759398,27.0676692 C71.4903961,27.1956878 71.5796763,27.344148 71.6390977,27.5052632 C71.7020163,27.6792828 71.7335825,27.8630797 71.7323308,28.0481203 C71.7338328,28.2335427 71.7027856,28.4177904 71.6406015,28.5924812 C71.5842791,28.7555418 71.4969626,28.9061755 71.3834586,29.0360902 C71.2704791,29.1628085 71.1328354,29.2651457 70.9789474,29.3368421 C70.8098593,29.4130537 70.626048,29.4510483 70.4406015,29.4481203 C70.2631128,29.4504173 70.0875345,29.4112855 69.9278195,29.3338346 C69.7817331,29.2649193 69.6577836,29.1565938 69.5699248,29.0210526 L69.5593985,29.0210526 L69.5593985,30.6781955 L68.9007519,30.6781955 L68.9007519,26.7383459 L69.5308271,26.7383459 Z M71.0631579,28.0421053 C71.0627577,27.9401994 71.0475615,27.8388918 71.0180451,27.7413534 C70.9876588,27.6431649 70.9403287,27.5510495 70.8781955,27.4691729 C70.8141446,27.3885016 70.7336672,27.3223768 70.6421053,27.275188 C70.5384926,27.223794 70.4238903,27.1984989 70.3082707,27.2015038 C70.1957953,27.1997362 70.0846606,27.2260984 69.9849624,27.2781955 C69.8921323,27.3280136 69.8094943,27.3948382 69.7413534,27.475188 C69.6748356,27.5564 69.6238585,27.6491784 69.5909774,27.7488722 C69.5573906,27.8456444 69.5396189,27.947197 69.5383459,28.0496241 C69.5391888,28.1520907 69.5569726,28.2537126 69.5909774,28.3503759 C69.6242241,28.4489959 69.6751837,28.5407232 69.7413534,28.6210526 C69.8092012,28.7009076 69.8919425,28.7667941 69.9849624,28.8150376 C70.1924158,28.9158281 70.4346518,28.9158281 70.6421053,28.8150376 C70.7338048,28.7667445 70.8142602,28.6996129 70.8781955,28.6180451 C70.9409207,28.535988 70.9882987,28.4432698 71.0180451,28.3443609 C71.0473374,28.2462575 71.0625271,28.1444865 71.0631579,28.0421053 L71.0631579,28.0421053 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73.9969925,29.0315789 L73.9804511,29.0315789 C73.9063785,29.1573757 73.7956856,29.2575764 73.6631579,29.318797 C73.5087799,29.3960195 73.3379999,29.4347158 73.1654135,29.4315789 C73.0539384,29.4308908 72.9429198,29.4172658 72.8345865,29.3909774 C72.7215548,29.3645076 72.6141222,29.3181741 72.5172932,29.2541353 C72.4189219,29.1893206 72.3366337,29.1029179 72.2766917,29.0015038 C72.2088197,28.8848794 72.1754461,28.751385 72.1804511,28.6165414 C72.1714884,28.4437243 72.2315283,28.2744225 72.3473684,28.1458647 C72.4674201,28.0233883 72.6148139,27.9311383 72.7774436,27.8766917 C72.9656466,27.8121858 73.1611237,27.771272 73.3593985,27.7548872 C73.5729323,27.7338346 73.7819549,27.7233083 73.9864662,27.7233083 L73.9864662,27.6586466 C73.9966456,27.5143408 73.9289873,27.3755839 73.8090226,27.2947368 C73.6826941,27.2137013 73.5350044,27.1723272 73.3849624,27.1759398 C73.2467483,27.1759337 73.1102121,27.206218 72.9849624,27.2646617 C72.8673025,27.3163343 72.7598431,27.3886529 72.6676692,27.4781955 L72.3278195,27.0781955 C72.4771554,26.9401606 72.6532135,26.8342187 72.8451128,26.7669173 C73.0354521,26.6974512 73.2364785,26.6618262 73.4390977,26.6616541 C73.6358313,26.6579703 73.8312625,26.6942939 74.0135338,26.7684211 C74.1514699,26.8246603 74.2741181,26.9127815 74.3714286,27.0255639 C74.4585302,27.1291024 74.5212302,27.2509048 74.5548872,27.3819549 C74.5894454,27.5104445 74.6071377,27.6428846 74.6075188,27.7759398 L74.6075188,29.3729323 L73.993985,29.3729323 L73.9969925,29.0315789 Z M73.9864662,28.1669173 L73.8360902,28.1669173 C73.7288221,28.1669173 73.6175439,28.1714286 73.5022556,28.1804511 C73.3926113,28.1886215 73.2841938,28.2087922 73.1789474,28.2406015 C73.0886956,28.2677179 73.0048248,28.3127218 72.9323308,28.3729323 C72.866459,28.4314104 72.8305359,28.5165205 72.8345865,28.6045113 C72.833691,28.6574597 72.8477648,28.7095849 72.875188,28.7548872 C72.9019085,28.7967746 72.9385901,28.8313897 72.9819549,28.8556391 C73.0285034,28.8827039 73.0793763,28.9015269 73.1323308,28.9112782 C73.1863284,28.9219158 73.2412064,28.927454 73.2962406,28.9278195 C73.4823992,28.9506155 73.6688382,28.8876476 73.803054,28.7566483 C73.9372697,28.6256491 74.0047407,28.440792 73.9864662,28.2541353 L73.9864662,28.1669173 Z\",\n id: \"Shape\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M75.3759398,26.7383459 L76,26.7383459 L76,27.1609023 L76.0120301,27.1609023 C76.0777068,27.01879 76.1818975,26.8979288 76.312782,26.8120301 C76.4634743,26.7100639 76.6421587,26.6575096 76.8240602,26.6616541 C76.9759107,26.6574563 77.126684,26.6883314 77.2646617,26.7518797 C77.3816024,26.8079714 77.4843994,26.889695 77.5654135,26.9909774 C77.6449704,27.091146 77.7037602,27.2061695 77.7383459,27.3293233 C77.7744238,27.4575371 77.7926406,27.5901153 77.7924822,27.7233083 L77.7924822,29.3654135 L77.1353383,29.3654135 L77.1353383,27.9097744 C77.1355657,27.8292822 77.1300378,27.7488767 77.118797,27.6691729 C77.1094448,27.5897724 77.0854826,27.5127874 77.0481203,27.4421053 C77.012873,27.3746753 76.9611436,27.3172557 76.8977444,27.275188 C76.8216893,27.2279021 76.733067,27.2048288 76.643609,27.2090226 C76.5485076,27.2065891 76.4543429,27.2283194 76.3699248,27.2721805 C76.2962526,27.3120369 76.2317169,27.3668411 76.1804511,27.4330827 C76.1306534,27.5024047 76.0930229,27.5796997 76.0691729,27.6616541 C76.0435004,27.745995 76.0303278,27.8336433 76.0300752,27.9218045 L76.0300752,29.3654135 L75.3729323,29.3654135 L75.3759398,26.7383459 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M78.0917293,26.7383459 L78.8255639,26.7383459 L79.5578947,28.6496241 L79.5699248,28.6496241 L80.2210526,26.7383459 L80.9052632,26.7383459 L79.6571429,29.9263158 C79.6147898,30.0365619 79.5645339,30.143607 79.5067669,30.2466165 C79.4548071,30.3358036 79.3882136,30.415614 79.3097744,30.4827068 C79.2301155,30.5498546 79.138194,30.6009221 79.0390977,30.6330827 C78.9170096,30.6685144 78.7902582,30.6852456 78.6631579,30.6827068 C78.6073993,30.6826208 78.5516836,30.6796091 78.4962406,30.6736842 C78.4383323,30.6686604 78.3809722,30.6585972 78.324812,30.643609 L78.3744361,30.0766917 C78.4164873,30.0908137 78.459792,30.1008845 78.5037594,30.1067669 C78.5426171,30.112173 78.5818227,30.1146862 78.6210526,30.1142857 C78.680132,30.1160329 78.7390883,30.107901 78.7954887,30.0902256 C78.841429,30.0752458 78.8828196,30.0488593 78.9157895,30.0135338 C78.9516209,29.9750707 78.981523,29.9314846 79.0045113,29.8842105 C79.0285714,29.8330827 79.0571429,29.7729323 79.0857143,29.7037594 L79.2165414,29.3699248 L78.0917293,26.7383459 Z\",\n id: \"Path\",\n fill: \"#231F20\"\n})))));\n\nvar SvgPayfastLogoR = function SvgPayfastLogoR(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 100 31\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPayfastLogoR, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/PayfastLogoR.65818463.svg\";\nexport { ForwardRef as ReactComponent };","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n transform: \"matrix(2.07675 0 0 -2.07675 -11.153 92.77)\"\n}, /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"a\",\n d: \"M-84.525-27.457h326.05V78.457h-326.05z\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"b\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#a\",\n overflow: \"visible\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#b)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M32.419 40.982c-1.674 1.908-4.7 2.726-8.571 2.726H12.613a1.609 1.609 0 0 1-1.59-1.357L6.347 12.68a.964.964 0 0 1 .953-1.114h6.936l1.742 11.049-.054-.346a1.604 1.604 0 0 0 1.583 1.357h3.296c6.475 0 11.545 2.63 13.026 10.238.044.225.082.444.115.658.44 2.812-.003 4.726-1.524 6.459\",\n fill: \"#003087\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M117.331 26.863c-.424-2.784-2.55-2.784-4.606-2.784h-1.17l.821 5.198c.05.314.32.545.638.545h.537c1.4 0 2.722 0 3.404-.797.407-.477.53-1.185.376-2.162m-.895 7.264h-7.756a1.08 1.08 0 0 1-1.066-.91L104.48 13.33a.647.647 0 0 1 .638-.747h3.98c.371 0 .687.27.745.636l.89 5.64c.082.523.534.91 1.064.91h2.454c5.11 0 8.058 2.471 8.828 7.372.347 2.142.014 3.826-.989 5.005-1.103 1.296-3.058 1.982-5.653 1.982\",\n fill: \"#009cde\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M62.011 26.863c-.424-2.784-2.55-2.784-4.607-2.784h-1.17l.821 5.198c.05.314.32.545.638.545h.537c1.4 0 2.722 0 3.404-.797.408-.477.531-1.185.377-2.162m-.895 7.264H53.36c-.53 0-.982-.386-1.065-.91L49.16 13.33a.646.646 0 0 1 .638-.747h3.704c.53 0 .981.386 1.064.91l.847 5.365c.082.524.534.91 1.064.91h2.454c5.11 0 8.058 2.472 8.828 7.373.347 2.142.014 3.826-.989 5.005-1.103 1.296-3.058 1.982-5.653 1.982M79.123 19.723c-.36-2.122-2.043-3.547-4.192-3.547-1.077 0-1.94.347-2.494 1.003-.55.65-.756 1.577-.582 2.608.334 2.104 2.046 3.574 4.162 3.574 1.055 0 1.91-.35 2.476-1.012.569-.667.793-1.599.63-2.626m5.176 7.23h-3.714a.647.647 0 0 1-.64-.547l-.162-1.038-.26.376c-.804 1.167-2.597 1.558-4.387 1.558-4.103 0-7.608-3.11-8.29-7.47-.355-2.177.149-4.256 1.383-5.707 1.133-1.333 2.75-1.888 4.677-1.888 3.308 0 5.142 2.124 5.142 2.124l-.166-1.032a.646.646 0 0 1 .639-.747h3.344c.53 0 .982.385 1.065.91l2.008 12.713a.647.647 0 0 1-.64.747\",\n fill: \"#003087\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M134.443 19.723c-.36-2.122-2.043-3.547-4.192-3.547-1.077 0-1.94.347-2.494 1.003-.55.65-.756 1.577-.582 2.608.334 2.104 2.045 3.574 4.162 3.574 1.055 0 1.91-.35 2.476-1.012.569-.667.793-1.599.63-2.626m5.176 7.23h-3.714a.647.647 0 0 1-.64-.547l-.162-1.038-.26.376c-.804 1.167-2.597 1.558-4.387 1.558-4.102 0-7.607-3.11-8.29-7.47-.355-2.177.15-4.256 1.384-5.707 1.133-1.333 2.75-1.888 4.677-1.888 3.309 0 5.143 2.124 5.143 2.124l-.166-1.032a.644.644 0 0 1 .637-.747h3.343c.53 0 .982.385 1.066.91l2.008 12.713a.647.647 0 0 1-.64.747\",\n fill: \"#009cde\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.08 26.952h-3.734c-.357 0-.69-.177-.89-.473l-5.15-7.584-2.183 7.288a1.08 1.08 0 0 1-1.033.77h-3.669a.647.647 0 0 1-.612-.856l4.11-12.066-3.866-5.455a.647.647 0 0 1 .528-1.02h3.73c.352 0 .683.173.885.463l12.414 17.918a.646.646 0 0 1-.53 1.015\",\n fill: \"#003087\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M143.996 33.58l-3.184-20.251a.647.647 0 0 1 .639-.747h3.201c.53 0 .982.386 1.065.91l3.139 19.888a.646.646 0 0 1-.639.747h-3.582a.645.645 0 0 1-.639-.546\",\n fill: \"#009cde\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M32.419 40.982c-1.674 1.908-4.7 2.726-8.571 2.726H12.613a1.609 1.609 0 0 1-1.59-1.357L6.347 12.68a.964.964 0 0 1 .953-1.114h6.936l1.742 11.049-.054-.346a1.604 1.604 0 0 0 1.583 1.357h3.296c6.475 0 11.545 2.63 13.026 10.238.044.225.082.444.115.658.44 2.812-.003 4.726-1.524 6.459\",\n fill: \"#003087\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M17.849 34.485a1.408 1.408 0 0 0 1.389 1.187h8.808c1.043 0 2.016-.068 2.905-.21a12.206 12.206 0 0 0 1.44-.322 7.957 7.957 0 0 0 1.551-.618c.442 2.813-.002 4.726-1.523 6.46-1.675 1.907-4.7 2.725-8.571 2.725H12.612a1.609 1.609 0 0 1-1.588-1.357L6.346 12.682a.964.964 0 0 1 .952-1.115h6.937l1.742 11.05 1.872 11.868z\",\n fill: \"#003087\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M33.943 34.523a18.294 18.294 0 0 0-.115-.658c-1.481-7.607-6.551-10.238-13.026-10.238h-3.297a1.602 1.602 0 0 1-1.582-1.357l-1.688-10.702-.48-3.036a.844.844 0 0 1 .834-.976h5.847c.692 0 1.28.504 1.389 1.187l.057.298 1.102 6.984.07.386a1.407 1.407 0 0 0 1.39 1.187h.875c5.664 0 10.099 2.3 11.395 8.956.54 2.78.26 5.103-1.17 6.734a5.584 5.584 0 0 1-1.601 1.235\",\n fill: \"#009cde\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M32.392 35.14c-.226.067-.459.127-.699.18-.24.053-.488.1-.742.14-.89.145-1.862.213-2.906.213h-8.807a1.404 1.404 0 0 1-1.389-1.188l-1.872-11.87-.054-.345a1.602 1.602 0 0 0 1.582 1.357h3.297c6.475 0 11.545 2.63 13.026 10.238.044.225.081.443.115.658a7.998 7.998 0 0 1-1.218.514c-.109.036-.22.07-.333.104\",\n fill: \"#012169\"\n})));\n\nvar SvgPaypalLogoR = function SvgPaypalLogoR(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 2500,\n height: 812,\n viewBox: \"-11.153 -13.144 326.05 105.914\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPaypalLogoR, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/PaypalLogoR.b1807e33.svg\";\nexport { ForwardRef as ReactComponent };","import React, { useContext,useEffect } from 'react'\nimport {ControlContext} from \"../../Context/Control.Context\"\nimport {CartContext} from \"../../Context/Cart.Context\"\nimport axios from 'axios';\n\nconst PayWithPayfast = ({formState,cartProducts,Total}) => {\n const {cartID} = useContext(CartContext);\n const {isPaying} = useContext(ControlContext);\n\n const {shipName,shipSurname,shipMobile,shipEmail,shipAddress,shipCity,shipCountry} = formState;\n const {billName,billSurname,billMobile,billEmail,billAddress,deliveryInfo,paymentMethod} = formState;\n const handlePostData = async () => {\n try{\n const response = await axios({\n method : \"post\",\n url : \"https://rartx1msad.execute-api.eu-west-1.amazonaws.com/Dev/pendingorders\",\n headers : {\n \n \"content-type\":\"application/json\"\n },\n data : {\n Order_ID : `${cartID}`,\n billName : `${billName} ${billSurname}`,\n billEmail,\n billMobile,\n billAddress,\n paymentMethod,\n deliveryIntsruction :deliveryInfo,\n shipName : `${shipName} ${shipSurname}`,\n shipAddress : `${shipAddress}, ${shipCity} ${shipCountry}`,\n shipMobile,\n shipEmail,\n products : cartProducts\n \n\n } \n })\n console.log(response.data)\n }catch(err){\n console.log(err.toJSON());\n localStorage.setItem(`${cartID}`, JSON.stringify(\n {\n billName : `${billName} ${billSurname}`,\n billEmail,\n billMobile,\n billAddress,\n paymentMethod,\n deliveryInfo,\n shipName : `${shipName} ${shipSurname}`,\n shipAddress : `${shipAddress}, ${shipCity} ${shipCountry}`,\n shipMobile,\n products : cartProducts.map(product => {\n return {\n ...product\n }\n })\n }\n ))\n }\n }\n useEffect(()=>{\n handlePostData();\n },[])\n const handleSubmitPay = (event) => {\n localStorage.removeItem(cartID)\n event.preventDefault();\n event.target.submit()\n }\n return (\n \n <>\n
\n \n \n \n \n \n \n \n \n \n \n product.productTitle )} `}/>\n \n \n \n \n PAY\n \n {/* */}\n >\n \n \n )\n}\n\nexport default PayWithPayfast\n","import React from 'react'\nimport Backdrop from '@material-ui/core/Backdrop';\nimport CircularProgress from '@material-ui/core/CircularProgress';\nimport { makeStyles } from '@material-ui/core/styles';\n\nconst useStyles = makeStyles((theme) => ({\n backdrop: {\n zIndex: theme.zIndex.drawer + 1,\n color: '#fff',\n },\n })); \nconst BackDrop = ({openState}) => {\n const classes = useStyles();\n\n return (\n \n \n \n \n
\n );\n}\n\nexport default BackDrop\n","import React, {useEffect, useState,useContext,useRef}from 'react'\nimport BackDrop from \"../../Shared/Components/BackDrop\"\nimport {useHistory} from \"react-router-dom\"\nimport {CartContext} from \"../../Context/Cart.Context\"\nimport axios from 'axios';\n\n\nconst PayWithPaypal = ({formState,cartProducts}) => {\n const {cartID} = useContext(CartContext);\n const [payingState, setPayingState] = useState(false)\n const {shipName,shipSurname,shipMobile,shipEmail,shipAddress,shipCity,shipCountry} = formState;\n const {billName,billSurname,billMobile,billEmail,billAddress,deliveryInfo,paymentMethod} = formState;\n const [error, setError] = useState(null);\n const history = useHistory()\n const payPalRef = useRef();\n let Total = 0;\n let vatTotal = 0;\n let subTotal = 0;\n\n const handleRedirect = (Order_ID) => {\n setPayingState(false);\n history.push(`/success/${Order_ID}`)\n }\n \n \n const convertToSubCurrency = (perc,baseVal,rateValue) => {\n const baseAmount = (baseVal * perc)\n return (baseAmount * rateValue).toString().match(/^-?\\d+(?:\\.\\d{0,2})?/)[0];\n }\n\n const handleCreateOrder = async () =>{\n try{\n const response = await axios({\n method : \"post\",\n url : \"https://rartx1msad.execute-api.eu-west-1.amazonaws.com/Dev/pendingorders\",\n data : JSON.stringify({ \n Order_ID : `${cartID}`,\n billName : `${billName} ${billSurname}`,\n billEmail,\n billMobile,\n billAddress,\n paymentMethod,\n deliveryIntsruction :deliveryInfo,\n shipName : `${shipName} ${shipSurname}`,\n shipAddress : `${shipAddress}, ${shipCity} ${shipCountry}`,\n shipMobile,\n shipEmail,\n products : cartProducts\n }) \n })\n return response;\n }catch(err){\n console.log(err.toJSON());\n localStorage.setItem(`${cartID}`, JSON.stringify(\n {\n billName : `${billName} ${billSurname}`,\n billEmail,\n billMobile,\n billAddress,\n paymentMethod,\n deliveryInfo,\n shipName : `${shipName} ${shipSurname}`,\n shipAddress : `${shipAddress}, ${shipCity} ${shipCountry}`,\n shipMobile,\n products : cartProducts.map(product => {\n return {\n ...product\n }\n })\n }\n ))\n }\n \n}\nuseEffect(() => {\n let products = [];\n const getCurrency = async () =>{\n const results = await axios.get(\"https://api.exchangeratesapi.io/latest?base=ZAR\")\n const rates = results.data.rates\n products = await cartProducts.map((item) => {\n return {\n name : `${item.productBrand} ${item.productTitle} ${item.productSize}`,\n unit_amount : {\n currency_code : \"USD\",\n value : convertToSubCurrency(0.85,item.productPrice,rates[\"USD\"]),\n\n },\n tax : {\n currency_code : \"USD\",\n value : convertToSubCurrency(0.15,item.productPrice,rates[\"USD\"]),\n },\n quantity : item.productQty,\n }\n })\n \n vatTotal = products.reduce((acc,current) => acc + (current.tax.value * current.quantity),0).toFixed(2);\n subTotal = products.reduce((acc,current) => acc + (current.unit_amount.value * current.quantity),0).toFixed(2);\n Total = (parseFloat(vatTotal) + parseFloat(subTotal)).toFixed(2);\n \n }\n getCurrency();\n window.paypal\n .Buttons({\n createOrder : async (data, actions) => {\n try{\n const resp = await handleCreateOrder()\n }catch(err){\n console.log(err);\n }\n return actions.order.create({\n intent : 'CAPTURE',\n purchase_units : [{\n amount : {\n currency_code : 'USD',\n value : Total,\n breakdown : {\n item_total : {\n currency_code : 'USD',\n value : subTotal,\n },\n tax_total : {\n currency_code : 'USD',\n value : vatTotal,\n }\n }\n \n },\n payee : {\n email_address : \"shorai@penyesa.co.za\",\n merchant_ID : \"NHY7D537MQNNN\"\n },\n description : \"Penyesa Pantry groceries\",\n invoice_id : `${cartID}`,\n items : products,\n shipping : {\n name : {\n full_name : `${shipName} ${shipSurname}`\n },\n address : {\n address_line_1 : shipAddress,\n admin_area_2 : shipCity,\n country_code : \"ZW\"\n }\n }\n }]\n })\n },\n onApprove : async (data,actions) => {\n setPayingState(true);\n const order = await actions.order.capture() \n order.status === \"COMPLETED\" && handleRedirect(order.purchase_units[0].invoice_id)\n },\n onCancel : (data,actions) => {\n {/**Handle on Cancel */}\n console.log(\"You are a bummer!\");\n },\n onError : err => {\n setError(err);\n console.log(err.toJSON())\n }\n }).render(payPalRef.current)\n\n \n},[cartProducts])\n\n return (\n \n )\n}\n\nexport default PayWithPaypal\n","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgPantry = function SvgPantry(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, [\"svgRef\", \"title\"]);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 255.93,\n height: 243.24,\n viewBox: \"0 0 255.93 243.24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M124.08,221.32a92.88,92.88,0,0,1-92.87-92.4H9.72l17.43,18.81L18,172.38l23.91,11,1,26.29,26.28,1,11,23.92,24.65-9.16,19.29,17.87,19.3-17.87L168,234.53,179,210.61l26.28-1,1-26.28,23.91-11L221,147.73l17.41-18.8H217A92.89,92.89,0,0,1,124.08,221.32Z\",\n style: {\n fill: \"none\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M230.17,84.49,206.26,73.54l-1-26.28-26.28-1L168,22.34,143.38,31.5l-19.3-17.87L104.79,31.5,80.14,22.34l-11,23.92-26.28,1-1,26.28L18,84.49l9.16,24.65L9.76,127.92H31.21a92.88,92.88,0,0,1,185.75,0h21.46L221,109.14Z\",\n style: {\n fill: \"none\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M128.15,35.56a92.87,92.87,0,0,0-92.88,92.36H221A92.87,92.87,0,0,0,128.15,35.56Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0,127.94c9.85,62,63.39,109.42,128,109.42s118.12-47.4,128-109.42Z\",\n style: {\n fill: \"#3e3a27\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"236.41 106.86 243.43 87.97 246.66 79.26 238.22 75.4 219.9 67.01 219.13 46.88 218.78 37.62 209.52 37.26 189.39 36.5 181 18.18 177.13 9.74 168.43 12.97 149.54 19.98 134.76 6.29 127.96 0 121.17 6.29 106.39 19.98 87.5 12.97 78.79 9.74 74.92 18.18 66.53 36.5 46.4 37.26 37.14 37.62 36.79 46.88 36.02 67.01 17.71 75.4 9.26 79.26 12.49 87.97 19.51 106.86 5.82 121.64 0.01 127.92 13.63 127.92 31.02 109.14 21.87 84.49 45.78 73.54 46.78 47.26 73.06 46.26 84.01 22.34 108.67 31.5 127.96 13.63 147.25 31.5 171.91 22.34 182.86 46.26 209.14 47.26 210.14 73.54 234.05 84.49 224.9 109.14 242.3 127.94 255.93 127.94 250.1 121.64 236.41 106.86\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M110.58,150c0,1.17-.2,14.41-.24,18.59-3.77-3.89-18.4-19.09-19.38-20.21l-.22-.17H90l-.1,1.89c-.28,5.83-1.13,23.57-1.3,26.11l0,.49,4.55.34,0-.56c0-.76.09-8.43.17-14,0-2.25.07-4.24.08-5.47,3.84,4.13,19.57,20.23,19.73,20.39l.22.15h.7V177c.15-9.43.85-24.52,1-26.8l0-.5-4.48-.24Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.25,172.91c-2.51.19-6.44.14-8.11.12h-.28V165l3,.07,3.84.08h.52l-.15-4-.54.07c-1.55.19-5.28.35-6.7.39v-8.44l2.57-.06c2.1-.06,4.72-.12,5.41-.12h.53l-.2-4-.54.07c-1.16.14-10.83.7-11.73.7h-.53l0,.52c0,.7.11,9.74.11,10.25v5c0,1.47,0,8.9-.11,10.76l0,.53h.53c.39,0,3.8.11,6.81.2l5.73.17H82l-.19-4.23Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M53.55,150.19h0a50.93,50.93,0,0,0-7.08-.49H46v.5c0,.25,0,1.85.05,3.63,0,2.19.06,4.64.06,5.11V163c0,2.67-.11,11.6-.18,13.19l0,.52h4.57l-.06-.55c0-.48-.07-2.5-.07-5.53v-1.79c7.16-1.55,11.76-5.86,11.76-11.05C62.08,153.8,59.05,151.09,53.55,150.19Zm-3.23,15V153.47c6.8.28,7.15,4.13,7.15,4.91C57.47,162.71,53.24,164.51,50.32,165.23Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M177.6,161.53l-.39-.23-.69-.4c-1.46-.82-3.27-1.84-3.27-3.22,0-2.69,5.05-4.42,7.36-4.79l.54-.09-1.05-3.86-.47.1c-5.28,1.2-11,5.08-11,9.27,0,3.06,2.66,4.75,5.62,6.35s3.61,2.36,3.61,3.84c0,2.6-4.26,4.39-7.9,5.13l-.56.11,1.31,3.76.43-.1c7.88-1.85,11.4-6.25,11.4-9.79C182.55,164.45,180.26,163.1,177.6,161.53Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M214.72,174.55c-1.28-2-4.15-7.18-7.18-12.72-2.87-5.21-5.82-10.6-7.43-13.2l-.23-.23h-.55l-.15.23c-.43.68-3,5.6-5.9,11.3-3.14,6.07-6.69,13-7.76,14.83l-.24.42,3.93,2.48.24-.49c.28-.55,1-2.19,1.76-3.93.83-1.89,1.84-4.19,2.23-5l12.33-.5c.63,1.11,2.9,5.47,4,7.67l1.14,2.18,4-2.66Zm-19.5-9.75c.26-.52.63-1.3,1.12-2.33,1-2.16,2.5-5.2,3.23-6.63,1,1.91,3.58,6.73,4.55,8.59Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M143.4,149.13a20.34,20.34,0,0,0-7.36,5h0a21.86,21.86,0,0,0-4.13,6.45,24.77,24.77,0,0,0-4.54-6.94,23.94,23.94,0,0,0-5.94-4.46l-.44-.23-2,3.82.5.21a15.93,15.93,0,0,1,5.29,4,16.84,16.84,0,0,1,4.67,11.2V171c0,.46-.15,4.4-.19,5.26l0,.52H134l-.06-.55c-.07-.73-.18-4-.18-4.53v-3.49a16.52,16.52,0,0,1,4.16-10.5,15.19,15.19,0,0,1,6.86-4.69l.52-.15L143.85,149Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M162.08,172.91c-2.52.19-6.44.14-8.12.12h-.27V165l3,.07,3.84.08h.52l-.15-4-.54.07c-1.55.19-5.28.35-6.69.39v-8.44l2.57-.06c2.1-.06,4.72-.12,5.41-.12h.53l-.21-4-.53.07c-1.16.14-10.84.7-11.73.7h-.53l0,.52c0,.7.11,9.74.11,10.25v5c0,1.47,0,8.9-.11,10.76l0,.53h.53c.38,0,3.79.11,6.8.2l5.73.17h.53l-.2-4.23Z\",\n style: {\n fill: \"#daba27\"\n }\n }), /*#__PURE__*/React.createElement(\"text\", {\n transform: \"translate(88.81 205.77)\",\n style: {\n fontSize: \"22.77252960205078px\",\n fill: \"#daba27\",\n stroke: \"#daba27\",\n strokeMiterlimit: 10,\n strokeWidth: \"0.5px\",\n fontFamily: \"Microsoft-Yi-Baiti, Microsoft Yi Baiti\",\n fontStyle: \"italic\",\n letterSpacing: \"0.05999381541596353em\"\n }\n }, \"PANTRY\"), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"164.9 68.11 164 62.71 147.84 64.94 140.81 95.8 102.25 100.62 94.73 72.92 91.39 72.92 98.28 104.89 145.78 101.63 152.8 69.67 164.9 68.11\",\n style: {\n fill: \"#3e3a27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M137.32,104.05a7.69,7.69,0,1,0,7.69,7.69A7.68,7.68,0,0,0,137.32,104.05Zm0,11.88a4.2,4.2,0,1,1,4.2-4.19A4.19,4.19,0,0,1,137.32,115.93Z\",\n style: {\n fill: \"#3e3a27\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M106,106.14a6.64,6.64,0,1,0,6.64,6.64A6.64,6.64,0,0,0,106,106.14Zm0,10.64a4,4,0,1,1,4-4A4,4,0,0,1,106,116.78Z\",\n style: {\n fill: \"#3e3a27\"\n }\n }));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPantry, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/pantry.3b9acd87.svg\";\nexport { ForwardRef as ReactComponent };","import React,{createRef,useState,useContext} from 'react'\nimport {ReactComponent as Pantry} from \"../Images/pantry.svg\"\nimport {CartContext} from \"../../Context/Cart.Context\"\nimport BackDrop from \"../../Shared/Components/BackDrop\"\nimport {useHistory} from \"react-router-dom\"\nimport Pdf from \"react-to-pdf\";\nimport axios from \"axios\"\n\n\n\nconst InvoiceStyle = {\n container : {\n\n width : \"794px\",\n height : \"1123px\",\n backgroundColor : \"#ffffff\",\n fontFamily : \"'Raleway', sans-serif\",\n },\n headerContainer : {\n width : \"100%\",\n height : \"5rem\",\n color : \"#4a4110\",\n display : \"flex\",\n backgroundColor : \"#e0dfd1\",\n },\n headerBrand : {\n flex: \"0 0 40%\",\n display : \"flex\",\n alignItems: 'center',\n justifyContent : \"center\"\n \n },\n brandText : {\n width : \"90%\",\n display : \"flex\",\n letterSpacing : \".08em\"\n },\n brandName : {\n display : \"flex\",\n flexDirection : \"column\",\n justifyContent : \"center\",\n paddingLeft: \"1rem\" ,\n },\n brandTitle : {\n textTransform : \"uppercase\"\n },\n brandLink : {\n color : \"#4a4110\"\n },\n headerTab : {\n height : \"calc(100% + 2rem)\",\n flex: \"1\",\n clipPath : \"polygon(5rem 0%, 100% 0%, 100% 100%, 0% 100%)\",\n \"-webkit-clip-path\" : \"polygon(5rem 0%, 100% 0%, 100% 100%, 0% 100%)\",\n backgroundColor : \"#73736875\",\n display : \"flex\",\n justifyContent : \"flex-end\"\n },\n headerTab1 : {\n height : \"100%\",\n width : \"90%\",\n clipPath : \"polygon(5rem 0%, 100% 0%, 100% 100%, 0% 100%)\",\n \"-webkit-clip-path\" : \"polygon(5rem 0%, 100% 0%, 100% 100%, 0% 100%)\",\n backgroundColor : \"#d1b82d73\",\n display : \"flex\",\n justifyContent : \"flex-end\"\n },\n headerTab2 : {\n height : \"100%\",\n width : \"88%\",\n clipPath : \"polygon(5rem 0%, 100% 0%, 100% 100%, 0% 100%)\",\n \"-webkit-clip-path\" : \"polygon(5rem 0%, 100% 0%, 100% 100%, 0% 100%)\",\n backgroundColor : \"#4b42119e\",\n display : \"flex\",\n justifyContent : \"flex-end\"\n },\n \n headerInvoice : {\n width : \"75%\",\n clipPath : \"polygon(5rem 0, 100% 0%, 100% 100%, 0% 100%)\",\n \"-webkit-clip-path\" : \"polygon(5rem 0%, 100% 0%, 100% 100%, 0% 100%)\",\n backgroundColor : \"#DBBA07\",\n display : \"flex\",\n flexDirection : \"column\",\n alignItems : \"flex-end\",\n justifyContent: 'center',\n height : \"101%\",\n paddingRight : \"3rem\",\n },\n invoiceParticular : {\n \n width : \"100%\",\n display : \"flex\",\n justifyContent : \"flex-end\",\n letterSpacing : \".13em\",\n fontSize : \"1.2em\"\n },\n invoiceBanner : {\n fontSize : \"3.6em\",\n letterSpacing : \".1em\"\n },\n invoiceLine : {\n width : \"80%\",\n display : \"flex\",\n justifyContent : \"space-between\",\n },\n invoiceNumber : {\n fontSize : \"1.3em\",\n fontWeight : \"700\"\n },\n identityContainer : {\n padding: \"5rem 2.5rem\",\n paddingBottom : \"3.5rem\",\n display : \"grid\",\n gridTemplateColumns : \"1fr 1fr 1fr\",\n justifyContent : \"center\",\n alignItems : \"center\",\n gridGap : \"2.5rem\"\n },\n bankInfo : {\n justifySelf : \"flex-end\",\n width : \"90%\",\n },\n bankRow : {\n display : \"flex\",\n justifyContent : \"space-between\",\n fontSize : \"1.1em\",\n },\n paymentLabel : {\n fontWeight : \"700\",\n color : \"#4a4110\",\n },\n customerTitle : {\n display : \"flex\",\n justifyContent : \"space-between\",\n fontSize : \"1.1em\",\n width : \"100%\",\n },\n customerLabel : {\n fontWeight : \"700\",\n color : \"#4a4110\",\n },\n productTable : {\n margin : \" 0 auto\",\n width : '90%',\n backgroundColor : \"#f1f1f1\",\n font:\"1em\",\n border:\"2px solid #d3d3d345\",\n borderCollapse:\"collapse\"\n\n },\n rowHeader : {\n backgroundColor : \"#b2a55f\",\n color : \"#312c13\",\n borderBottom:\"0.8px solid #dddddd\",\n },\n rowProductDark : {\n backgroundColor : \"lightgrey\",\n fontSize : \"1.1em\",\n color : \"#3d3213\"\n },\n rowProductLight : {\n color : \"#3d3213\",\n fontSize : \"1.1em\",\n },\n rowProductPlace : {\n color : \"#fff\",\n backgroundColor : \"#fff\",\n },\n paymentContainer : {\n padding: \"1.5rem 3.5rem\",\n display: \"flex\",\n justifyContent : \"flex-end\",\n\n },\n totalsInfo : {\n width : \"20%\",\n padding:\".1em\"\n\n },\n totalRow : {\n width : \"100%\",\n display : \"flex\",\n justifyContent : \"space-between\",\n fontSize : \"1.2em\",\n padding:\"0.1em 0em\"\n },\n grandTotal : {\n fontSize : \"1.3em\",\n fontWeight : \"700\",\n padding: \"0.2em 0em\",\n borderTop : \"1px solid #4a4110\",\n marginTop : \".2em\",\n fontFamily : \"'Segoe UI', Tahoma, Geneva, Verdana, sans-serif\"\n },\n terms :{\n justifyContent : \"flex-start\",\n },\n termsContainer : {\n width : \"60%\",\n fontSize : \"1em\"\n },\n footerContainer : {\n padding: \"0rem 3.5rem\",\n display: \"flex\",\n justifyContent : \"flex-start\",\n color : \"#4a4110\",\n fontSize : \"1.4em\"\n },\n paymentValue : {\n fontFamily : \"'Segoe UI', Tahoma, Geneva, Verdana, sans-serif\"\n }\n \n}\nfunction PayWithOffline({formState,cartProducts,Total}) {\n const ref = createRef();\n const cellDisplay = 10;\n const history = useHistory();\n \n const [payingState, setPayingState] = useState(false)\n const {cartID,cartDispatch} = useContext(CartContext);\n const {shipName,shipSurname,shipMobile,shipEmail,shipAddress,shipCity,shipCountry} = formState;\n const {billName,billSurname,billMobile,billEmail,billAddress,deliveryInfo,paymentMethod} = formState;\n const rowCount = cartProducts.length < cellDisplay ? (cellDisplay - cartProducts.length) : 0\n const blankRows = Array(rowCount).fill(0)\n const vatTotal = (0.15 * Total).toFixed(2);\n const subTotal = (0.85 * Total).toFixed(2);\n ;\n const formatMoney = (amount, decimalCount = 2, decimal = \".\", thousands = \" \") => {\n try {\n decimalCount = Math.abs(decimalCount);\n decimalCount = isNaN(decimalCount) ? 2 : decimalCount;\n \n const negativeSign = amount < 0 ? \"-\" : \"\";\n \n let i = parseInt(amount = Math.abs(Number(amount) || 0).toFixed(decimalCount)).toString();\n let j = (i.length > 3) ? i.length % 3 : 0;\n \n return negativeSign + (j ? i.substr(0, j) + thousands : '') + i.substr(j).replace(/(\\d{3})(?=\\d)/g, \"R1\" + thousands) + (decimalCount ? decimal + Math.abs(amount - i).toFixed(decimalCount).slice(2) : \"\");\n } catch (e) {\n console.log(e)\n }\n };\n const placeOrder = async (downloadPdf) => {\n setPayingState(true);\n try{\n const response = await axios({\n method : \"POST\",\n url : \"https://rartx1msad.execute-api.eu-west-1.amazonaws.com/MostUpdate/offlineorders/OfflinePurchases\",\n data : JSON.stringify({ \n Order_ID : `${cartID}`,\n billName : `${billName} ${billSurname}`,\n billEmail,\n billMobile,\n billAddress,\n paymentMethod,\n deliveryIntsruction :deliveryInfo,\n shipName : `${shipName} ${shipSurname}`,\n shipAddress : `${shipAddress}, ${shipCity} ${shipCountry}`,\n shipMobile,\n shipEmail,\n products : cartProducts\n })\n \n })\n \n setPayingState(false);\n downloadPdf();\n cartDispatch({type :\"ClearCart\"})\n history.push(\"/checkout/success/invoice\")\n \n\n }catch(err){\n console.log(err)\n window.alert(\"Order Processing Failed, Please Try again. If problem persists please try another payment method or contact us at info@penyesa.co.za\")\n }\n \n \n \n \n }\n return (\n <>\n {\n payingState && \n }\n \n {({toPdf}) => placeOrder(toPdf)}>Download Invoice }\n \n \n
\n
\n
\n
\n
\n
\n
\n
\n
INVOICE \n
\n
\n Reference No. \n {cartID} \n
\n
\n
\n
\n
\n
\n \n
\n {/* --------------Invoice Identity Information--------- */}\n
\n
\n
\n Invoice To: \n {`${billName} ${billSurname}`} \n
\n
{billAddress}
\n
{billEmail}
\n
{billMobile}
\n
\n
\n
\n Ship To: \n {`${shipName} ${shipSurname}`} \n
\n
{`${shipAddress} ${shipCity}`}
\n
{`${shipEmail}`}
\n
{`${shipMobile}`}
\n
\n
\n
\n Bank Name \n First National bank \n
\n
\n Account Name: \n PENYESA (PTY) LTD \n
\n
\n Account \n 62729554156 \n
\n
\n
\n {/* -------------Product Listing----------------- */}\n
\n \n Product \n Price \n Quantity \n Item Total \n \n {\n cartProducts.map((product,index) => \n \n {`${product.productBrand} ${product.productTitle} ${product.productSize}`} \n R{formatMoney(product.productPrice)} \n {product.productQty} \n R{formatMoney((product.productPrice * product.productQty).toFixed(2))} \n \n )\n }\n {\n blankRows.map((row,index) => \n \n \n \n \n \n \n \n )\n }\n \n
\n {/* ------------- Payment Information ---------- */}\n
\n \n
\n
\n SubTotal \n R{formatMoney(subTotal)} \n
\n
\n Tax 15% \n R{formatMoney(vatTotal)} \n
\n
\n Total \n R{formatMoney(Total)} \n
\n
\n
\n {/* -----------Terms and conditions -------------- */}\n
\n
\n
Note: \n
Thank you for your order.This confirms that we have received your order which we have placed on hold until we can confirm that payment has been received.Please use the payment reference provided or full name as reference and kindly send the proof of payment to info@penyesa.co.za
\n
\n
\n {/* ------ Footer -------- */}\n
\n
\n
Thank you for your business \n \n
\n
\n
\n \n
\n >\n \n )\n}\n\nexport default PayWithOffline\n","import React from 'react'\nimport \"../Styles/Review.scss\"\nimport {ReactComponent as Payfast} from \"../Images/PayfastLogoR.svg\"\nimport {ReactComponent as Paypal} from \"../Images/PaypalLogoR.svg\"\nimport {ReactComponent as Transfer} from \"../Images/BankTransLogo.svg\"\nimport {useHistory} from \"react-router-dom\"\nimport PayWithPayFast from \"./PayWithPayfast\"\nimport PayWithPaypal from \"./PayWithPaypal\"\nimport PayWithOffline from \"./PayWithOffline\"\n\nconst Review = ({cartProducts,formState}) => {\n const history = useHistory();\n const paymentMethod = formState.paymentMethod;\n const Total = cartProducts.reduce((acc,current) => acc + current.productQty * current.productPrice,0).toFixed(2);\n const orderItem = cartProducts.map(item => (\n \n {`${item.productQty} x ${item.productBrand} ${item.productTitle}`}\n {`R${item.productPrice}`} \n \n ))\n const paySelect = () => {\n if(formState.paymentMethod === \"Payfast\"){\n return \n }\n if(formState.paymentMethod === \"Paypal\"){\n return \n }\n if(formState.paymentMethod === \"Transfer\"){\n return ;\n }\n }\n\n const RenderPayment = () => {\n if(cartProducts.length > 0){\n if(paymentMethod === \"Payfast\"){\n return \n }\n else if(paymentMethod === \"Paypal\"){\n return \n }\n else if(paymentMethod === \"Transfer\"){\n return \n }\n }else{\n return history.push('/category/Food')}>\n Shop\n \n }\n }\n return (\n \n
Review Your Order \n
\n\n\n
\n
\n
\n
\n\n
\n
Shipping Information \n
\n
\n {`${formState.shipName} ${formState.shipSurname}`} \n {`${formState.shipEmail}`} \n {`${formState.shipAddress}`} \n {`${formState.shipCity}, ${formState.shipCountry}`} \n {`T: ${formState.shipMobile}`} \n {`${formState.deliveryInfo}`} \n \n
\n
\n
\n
\n\n
\n
Billing Information \n
\n
\n {`${formState.billName} ${formState.billSurname}`} \n {`${formState.billEmail}`} \n {`${formState.billAddress}`} \n {`T: ${formState.billMobile}`} \n \n
\n
\n
\n
Payment Method : \n
\n
\n {\n paySelect()\n }\n
\n {\n paymentMethod === \"Transfer\" ? \"Download your invoice below to place an order and find Penyesa Bank details.Use the given reference number or full name for payment reference. Your order will only be processed after full payment has been received.\"\n : \"You will be redirected to the VCS website when you place an order.\"\n }\n
\n
\n\n\n
\n history.push(\"/checkout/payment\")}>← back \n {\n RenderPayment()\n }\n
\n
\n
\n\n
\n )\n}\n\nexport default Review\n","import React, {useState, useContext,useEffect}from 'react'\nimport Breadcrumb from \"./Breadcrumb\"\nimport OrderSummry from \"./OrderSummary\"\nimport Shipment from \"./Shipment\"\nimport Payment from \"./Payment\"\nimport Review from \"./Review\"\nimport { useLocation } from 'react-router-dom'\nimport {CartContext} from \"../../Context/Cart.Context\"\nimport {AuthContext} from \"../../Context/Auth.Context\"\nimport \"../Styles/Checkout.scss\"\n// import Particles from \"react-particles-js\"\n\nconst initialFormState = {\n shipName : \"\",\n shipSurname : \"\",\n shipMobile : \"\",\n shipEmail : \"\",\n shipAddress : \"\",\n shipCity : \"\",\n shipCountry : \"\",\n deliveryInfo : \"\",\n paymentMethod : \"\",\n billName : \"\",\n billSurname : \"\",\n billMobile : \"\",\n billEmail : \"\",\n billAddress : \"\",\n}\nconst initialStateErrorShip = {\n\n shipName : 'Field is required',\n shipSurname : \"Field is required\",\n shipMobile : \"Field is required\",\n shipAddress : \"Field is required\",\n shipCity : \"Field is required\",\n shipCountry : \"Field is required\",\n shipEmail : \"\",\n}\nconst initialStateErrorPay = {\n\n paymentMethod : \"Field is required\",\n billName : \"Field is required\",\n billSurname : \"Field is required\",\n billMobile : \"Field is required\",\n billEmail : \"Field is required\",\n billAddress : \"Field is required\"\n}\nconst clearShipError = {\n shipName : '',\n shipSurname : \"\",\n shipMobile : \"\",\n shipAddress : \"Address required\",\n shipCity : \"City required\",\n shipCountry : \"Country required\",\n shipEmail : \"\",\n}\n\nconst clearPayError = {\n paymentMethod : \"Please selecte a payment Method\",\n billName : \"\",\n billSurname : \"\",\n billMobile : \"\",\n billEmail : \"\",\n billAddress : \"\"\n}\nfunction Checkout() {\n const {currentAuthState,userInfo, handleRetrieveSession} = useContext(AuthContext);\n let location = useLocation();\n const {cartProducts} = useContext(CartContext)\n const [formState, setFormState] = useState(initialFormState)\n const [initShipError,setInitShipError] = useState(initialStateErrorShip);\n const [initPayError,setInitPayError] = useState(initialStateErrorPay);\n\n useEffect(() => {\n const getUserInfo = async () => {\n await handleRetrieveSession();\n\n if (currentAuthState === \"signedin\") {\n setFormState({\n ...formState,\n shipName: userInfo.first_name,\n shipSurname: userInfo.last_name,\n shipMobile: userInfo.mobile,\n shipEmail: userInfo.email,\n deliveryInfo: \"\",\n paymentMethod: \"\",\n billName: userInfo.first_name,\n billSurname: userInfo.last_name,\n billMobile: userInfo.mobile,\n billEmail: userInfo.email,\n billAddress: userInfo.fullAddress,\n });\n setInitShipError(clearShipError);\n setInitPayError(clearPayError);\n }\n };\n getUserInfo();\n }, [currentAuthState, handleRetrieveSession,]);\n const handleFormInput = (name, value) => {\n setFormState({\n ...formState, [name] : value\n })\n }\n const handleSetInitialShipError = (val) => {\n setInitShipError(val)\n }\n const handleSetInitialPayError = (val) => {\n setInitPayError(val)\n }\n const currentForm = () => {\n switch (location.pathname) {\n case \"/checkout/shipping\":\n return \n case \"/checkout/payment\" :\n return \n case \"/checkout/review\" :\n return \n default:\n break;\n }\n }\n return (\n \n
\n
\n
\n {\n currentForm()\n }\n
\n
\n \n {/*
*/}\n
\n )\n}\n\nexport default Checkout\n","import React, {useEffect, useState} from 'react'\nimport Backdrop from \"./BackDrop\";\nimport {useHistory, useParams} from \"react-router-dom\"\nimport \"../Styles/Success.scss\"\nimport axios from \"axios\"\n\n\nconst Success = () => {\n const history = useHistory()\n const {id} = useParams();\n const [foundState, setFoundState] = useState(false)\n const [isLoadingState, setIsLoadingstate] = useState(true);\n const [paymentData,setPaymentData] = useState({})\n\n \n const fetchOrder = async (id) =>{\n try{\n const response = await axios.get(`https://rartx1msad.execute-api.eu-west-1.amazonaws.com/Dev/pendingorders/Pantry/${id}`)\n const order = response.data\n if(order.Order_ID){\n setPaymentData({\n Order_ID : order.Order_ID,\n billName : order.billName,\n \n })\n setFoundState(true)\n setIsLoadingstate(false)\n }else{\n setFoundState(false)\n setIsLoadingstate(false)\n throw Error(\"Not Found\")\n }\n \n }catch(err){\n console.log(err)\n \n }\n }\n useEffect(() => {\n \n fetchOrder(id);\n \n },[])\n\n return (\n <>\n \n \n
\n
\n
\n {`Payment Confirmation Status : ${foundState ? \"Success\" : \"\"}`}\n \n \n {\n foundState ? (\n
\n {`Thank you ${paymentData.billName}. Your payment refernce is ${paymentData.Order_ID}. We have emailed your order confirmation, we will\n send you an update when your order has been shipped. For enquires contact us at info@penyesa.co.za `}\n
\n ) : (\n !isLoadingState && (\n
\n Sorry, No Payment information found...If you made a payment. Please contact us at info@penyesa.co.za \n
\n )\n )\n }\n \n
\n
\n >\n )\n}\n\nexport default Success\n","import React, {useState, useContext} from 'react'\nimport \"../Styles/Signup.scss\"\nimport {Link} from \"react-router-dom\"\nimport FormError from './FormError';\nimport Loader from \"../../Shared/Components/Loader\"\nimport {AuthContext} from \"../../Context/Auth.Context\"\n\n\nconst emailRegex = RegExp(\n /^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*$/\n);\nconst formValid = (signupErrorData) => {\n let valid = true;\n // validate form errors being empty\n Object.values(signupErrorData).forEach(val => {\n val.length > 0 && (valid = false);\n });\n \n return valid;\n };\n\nconst hasUpperCase = (word) => {\n return word.toLowerCase() !== word\n}\nconst hasLowerCase = (word) => {\n return word.toUpperCase() !== word;\n}\n\nconst Signup = () => {\n const [inputState, setInputState] = useState({\n signupFirstName : \"\",\n signLastName : \"\",\n signupMobile : \"\",\n signupEmail : \"\",\n signupAddressOne : \"\",\n signupSuburb : \"\",\n signupCity : \"\",\n signupPostCode : \"\",\n signupProvince : \"\", \n signupPassword : \"\",\n signupConfirmPassword : \"\",\n retryEmail : \"\"\n \n });\n const [signupError,setSignupError] = useState({\n signupFirstName : \"First name is required\",\n signupLastName : \"Last name is required\",\n signupMobile : \"Mobile number is required\",\n signupEmail : \"Email is required\",\n signupAddressOne : \"Address is required\",\n signupSuburb : \"Suburb is required\",\n signupCity : \"City is required\",\n signupPostCode : \"Post code is required\",\n signupProvince : \"\", \n signupPassword : \"Password is required\",\n signupConfirmPassword : \"Password does not match\"\n });\n\n \n const [retryEmailError, setretryEmailError] = useState({\n retryEmail : \"Email Required\"\n })\n \n \n const {currentAuthState,userEmail, handleSignUp,handleResendVerification, handleNavState,\n errorAuthState,isLoading,resetError} = useContext(AuthContext);\n const [isInitial, setisInitial] = useState(true)\n const handleInputChange = (event) => {\n //Validate Error posibility on value change\n const {name, value} = event.target;\n setInputState({\n ...inputState, \n [name] : value\n })\n let tempVal = \"\";\n switch(name){\n case \"signupFirstName\" : \n tempVal = value.length < 1 ? \"First name is required\" : \"\"\n setSignupError({\n ...signupError, signupFirstName : tempVal\n })\n break;\n case \"signupLastName\" : \n tempVal = value.length < 1 ? \"Last name is required\" : \"\"\n setSignupError({\n ...signupError, signupLastName : tempVal\n })\n break;\n case \"signupMobile\" : \n tempVal = value.length < 1 ? \"Mobile number is required\" : \"\"\n setSignupError({\n ...signupError, signupMobile : tempVal\n })\n break;\n case \"signupEmail\" :\n \n if(value.length > 0){\n resetError();\n tempVal = emailRegex.test(value) ? \"\" : \"Provided Email Invalid\"\n }\n setSignupError({\n ...signupError, signupEmail : tempVal\n })\n break;\n case \"signupAddressOne\" : \n tempVal = value.length < 1 ? \"Address is required\" : \"\"\n setSignupError({\n ...signupError, signupAddressOne : tempVal\n })\n break;\n case \"signupSuburb\" : \n tempVal = value.length < 1 ? \"Suburb is required\" : \"\"\n setSignupError({\n ...signupError, signupSuburb : tempVal\n })\n break;\n case \"signupCity\" :\n tempVal = value.length < 1 ? \"City is required\" : \"\"\n setSignupError({\n ...signupError, signupCity : tempVal\n })\n break;\n case \"signupPostCode\" :\n tempVal = value.length < 1 ? \"Post code is required\" : \"\"\n setSignupError({\n ...signupError, signupPostCode : tempVal\n })\n break;\n \n case \"signupPassword\" : \n if( value.length < 1){\n tempVal = \"Password is required\"\n }else if(value.length >= 1 && value.length < 8){\n tempVal = \"Password length should be greater than 7 \" \n }else{\n tempVal = hasUpperCase(value) && hasLowerCase(value) ? \"\" : \"Password must contain at lest one upper case letter and one lower case letter\";\n }\n \n setSignupError({\n ...signupError, signupPassword : tempVal\n })\n break;\n case \"signupConfirmPassword\" :\n if(value.length > 0){\n tempVal = value === inputState.signupPassword ? \"\" : \"Password does not match\"\n }\n setSignupError({\n ...signupError, signupConfirmPassword : tempVal\n })\n break;\n case \"retryEmail\" : \n if(value.length > 0){\n tempVal = emailRegex.test(value) ? \"\" : \"Provided Email Invalid\"\n }\n setretryEmailError({\n ...retryEmailError, retryEmail : tempVal\n })\n break;\n default : \n setretryEmailError({\n ...retryEmailError\n })\n setSignupError({\n ...signupError\n })\n break;\n } \n\n }\n const handleRetrySubmit = async (event) => {\n event.preventDefault();\n setisInitial(false)\n if(formValid(retryEmailError)){\n await handleResendVerification({\n email : inputState.retryEmail\n })\n }\n \n }\n const handleSubmit = async (event) => {\n event.preventDefault();\n setisInitial(false)\n if (formValid(signupError)) {\n await handleSignUp({\n first_name : inputState.signupFirstName,\n last_name : inputState.signupLastName,\n email : inputState.signupEmail,\n mobile_number : inputState.signupMobile,\n address_line_1 : inputState.signupAddressOne,\n surburb : inputState.signupSuburb ,\n city : inputState.signupCity,\n province : inputState.signupProvince,\n post_code : inputState.signupPostCode,\n password : inputState.signupConfirmPassword,\n \n })\n setisInitial(true);\n } else {\n console.error(\"FORM INVALID - DISPLAY ERROR MESSAGE\");\n }\n \n }\n const signupMessage = (value) => {\n\n switch(value){\n case \"confirmsignup\" : \n return \n {`We have sent an email to ${userEmail} containing a verification link. Please click the link to complete your account registration and be able to login.`}\n
Have not received your confirmation code/link? handleNavState(\"resendconfirmation\")}>Resend confirmation
\n
\n case \"resendconfirmation\" :\n return \n
\n Please enter the email you used during sign up to resend the link to confirm your account.\n
\n
\n
\n Email \n \n {\n !isInitial && retryEmailError.retryEmail.length > 0 && \n }\n \n
\n
\n {\n isLoading && \n }\n Resend Confirmation \n
\n
\n
\n case \"confirmation_resent\" :\n return \n {`Email has been resent to ${userEmail}. Please check your mailbox or contact info@penyesa.co.za for assistance.`}\n \n
\n default :\n return \n Create a Penyesa account to get exclusive offers and for a faster and more secure shopping experience. \n {\n errorAuthState.name === \"UsernameExistsException\" && \n } \n
\n }\n }\n return (\n \n \n
\n \n Signup \n
\n {\n signupMessage(currentAuthState)\n }\n {\n currentAuthState === \"signup\" &&\n <>\n \n
\n \n
\n\n
\n Address \n \n {\n !isInitial && signupError.signupAddressOne.length > 0 && \n }\n
\n
\n
\n
\n \n \n
\n \n {\n isLoading && \n }\n {/* history.push(\"/\")}>← back */}\n Sign up \n
\n \n {` Already Have a Penyesa account? `}\n {\n LOGIN\n } \n \n >\n }\n \n \n\n
\n )\n}\n\nexport default Signup\n","import React from 'react'\nimport {Link} from 'react-router-dom'\nimport Loader from \"../../Shared/Components/Loader\"\nimport \"../Styles/CompleteSignup.scss\"\n\nconst CompleteSignup = () => {\n return (\n \n
\n
\n Account registration complete\n \n
\n You have successfully verified your email. Your Penyesa account has been successfully set up, \n sign into your account for secure and quick shopping.\n
\n
\n Sign in ↛ \n
\n
\n \n
\n )\n}\n\nexport default CompleteSignup\n","import React,{useState, useContext} from 'react'\nimport \"../Styles/ForgotPass.scss\"\nimport FormError from './FormError';\nimport {AuthContext} from \"../../Context/Auth.Context\"\nimport Loader from \"../../Shared/Components/Loader\"\n\nconst emailRegex = RegExp(\n /^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*$/\n);\n\n\nconst ForgotPass = () => {\n\n const {isLoading, currentAuthState,resetPassword,resetPasswordConfirm} = useContext(AuthContext)\n const [emailInputState, setEmailInputState] = useState(\"\");\n const [emailErrorState, setEmailErrorState] = useState(\"Email Required\")\n const [isSubmit, setIsSubmit] = useState(false);\n const [isInitial, setIsInitial] = useState(true)\n\n const handleInputChange = (event) => {\n const {value} = event.target;\n setEmailInputState(value.toLowerCase());\n let tempVal = \"\";\n if(value.length > 0){\n tempVal = emailRegex.test(value) ? \"\" : \"Provided email is invalid\"\n }\n setEmailErrorState(tempVal);\n\n }\n const handleSubmit = () => {\n setIsInitial(false)\n if(emailErrorState.length < 1){\n resetPassword(emailInputState.toLowerCase());\n setTimeout(() => {\n setIsSubmit(true)\n },500)\n }\n\n }\n\n\n return (\n \n
\n
\n {!isSubmit ? \"Forgot your Password?\" : \"Reset Password\" }\n \n
\n {!isSubmit ? \"Enter your email below to receive a link to reset your password.\" : `An email has been sent to ${emailInputState}. Please check your email and follow the provided link to reset your password`}\n
\n {\n !isSubmit && (\n
\n
\n Email \n \n {\n !isInitial && emailErrorState.length > 0 && \n }\n \n
\n
\n {\n isLoading && \n }\n reset password \n
\n
\n )\n }\n
\n {/* Sign in ↛ */}\n
\n
\n \n
\n )\n}\n\nexport default ForgotPass\n","import React from 'react'\nimport \"../Styles/Success.scss\"\nconst SuccessOffline = () => {\n return (\n \n
\n
\n
\n
\n {`Payment Confirmation Status : Order Placed Successfully`}\n \n \n
\n Thank you for your order.This confirms that we have received your order which we have placed on hold until we can confirm that payment has been received. Please use the payment reference provided or full name as reference and kindly send the proof of payment to info@penyesa.co.za\n
\n A copy of your invoice has been emailed to you.\n
\n
\n \n
\n
\n
\n )\n}\nexport default SuccessOffline\n","import React, {useContext,useState} from 'react'\nimport {useParams,Link, NavLink} from \"react-router-dom\"\nimport \"../Styles/ResetPassword.scss\"\nimport {AuthContext} from \"../../Context/Auth.Context\"\nimport FormError from './FormError';\nimport Loader from \"../../Shared/Components/Loader\"\n\nconst hasUpperCase = (word) => {\n return word.toLowerCase() !== word\n}\nconst hasLowerCase = (word) => {\n return word.toUpperCase() !== word;\n}\nconst formValid = (passFormErrors) => {\n let valid = true;\n // validate form errors being empty\n Object.values(passFormErrors).forEach(val => {\n val.length > 0 && (valid = false);\n });\n \n return valid;\n };\n\nconst ResetPassword = () => {\n const initialState = {\n resetPassword : \"\",\n resetConfirmPassword : \"\"\n }\n const initialErrorState = {\n resetPassword : \"Password is required\",\n resetConfirmPassword : \"Password do not match\"\n }\n\n const {username,code} = useParams()\n const {isLoading,resetPasswordConfirm,resetError} = useContext(AuthContext)\n const [passwordInput,setPasswordInput] = useState(initialState)\n const [passwordError,setPasswordError] = useState(initialErrorState)\n const [isSubmit, setIsSubmit] = useState(false);\n const [isInitial, setIsInitial] = useState(true)\n const [changeState,setChangeState] = useState(false)\n \n\n\n console.log(`Username : ${username} Reset Code : ${code}`)\n \n\n const handleInputChange = (event) => {\n const {name,value} = event.target;\n \n let tempVal = \"\";\n setPasswordInput({\n ...passwordInput,[name] : value\n })\n switch(name){\n case \"resetPassword\" :\n if( value.length < 1){\n tempVal = \"Password is required\"\n }else if(value.length >= 1 && value.length < 8){\n //resetError()\n tempVal = \"Password length should be greater than 7\" \n }else{\n tempVal = hasUpperCase(value) && hasLowerCase(value) ? \"\" : \"Password must contain at lest one upper case letter and one lower case letter\";\n } \n break;\n case \"resetConfirmPassword\" :\n if(value.length > 0){\n tempVal = value === passwordInput.resetPassword ? \"\" : \"Password does not match\"\n }\n break;\n }\n setPasswordError({\n ...passwordError, [name] : tempVal\n })\n \n }\n const handleSubmit = (e) => {\n e.preventDefault();\n setIsInitial(false)\n if(formValid(passwordError)){\n\n setIsInitial(true);\n setPasswordInput(initialState)\n setPasswordError(initialErrorState)\n setChangeState(true)\n\n }else {\n console.error(\"FORM INVALID - DISPLAY ERROR MESSAGE\");\n }\n }\n return (\n \n
\n
Enter new Password \n \n {\n changeState === false ? <>\n
\n Enter your new password below to set a new password for your account\n
\n
\n \n > : \n <>\n
\n You have successfully changed your Penyesa password. You can follow the link below to the Penyesa Pantry homepage to login to your account.\n
\n
Login \n >\n }\n
\n\n
\n )\n}\n\nexport default ResetPassword\n","import React from 'react';\nimport { Switch, Route } from 'react-router-dom';\nimport Home from \"./Home/Components/Home\"\nimport Category from \"./Category/Components/Category\"\nimport Navbar from \"./Shared/Components/Navbar\"\nimport SideBarCart from './Shared/Components/SideBarCart'\nimport Checkout from \"./Checkout/Components/Checkout\"\nimport AuthContextProvider from \"./Context/Auth.Context\" \nimport ControlContextProvider from \"./Context/Control.Context\"\nimport {CartContextProvider} from \"./Context/Cart.Context\"\nimport {ProductsContextProvider} from \"./Context/Products.Context\"\nimport Success from './Shared/Components/Success';\nimport Signup from \"./auth/Components/Signup\"\nimport CompleteSignup from './auth/Components/CompleteSignup';\nimport ForgotPass from \"./auth/Components/ForgotPass\"\nimport SuccessOffline from './Shared/Components/SuccessOffline';\nimport ResetPassword from './auth/Components/ResetPassword';\n\nfunction App() {\n return (\n <>\n \n \n \n \n \n {/* */}\n \n \n }/>\n } />\n }/>\n }/>\n }/>\n }/>\n }/>\n }/>\n }/>\n {/* }/> */}\n \n \n \n \n \n >\n \n );\n}\n\nexport default App;\n","// This optional code is used to register a service worker.\n// register() is not called by default.\n\n// This lets the app load faster on subsequent visits in production, and gives\n// it offline capabilities. However, it also means that developers (and users)\n// will only see deployed updates on subsequent visits to a page, after all the\n// existing tabs open on the page have been closed, since previously cached\n// resources are updated in the background.\n\n// To learn more about the benefits of this model and instructions on how to\n// opt-in, read https://bit.ly/CRA-PWA\n\nconst isLocalhost = Boolean(\n window.location.hostname === 'localhost' ||\n // [::1] is the IPv6 localhost address.\n window.location.hostname === '[::1]' ||\n // 127.0.0.0/8 are considered localhost for IPv4.\n window.location.hostname.match(\n /^127(?:\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/\n )\n);\n\nexport function register(config) {\n if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {\n // The URL constructor is available in all browsers that support SW.\n const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href);\n if (publicUrl.origin !== window.location.origin) {\n // Our service worker won't work if PUBLIC_URL is on a different origin\n // from what our page is served on. This might happen if a CDN is used to\n // serve assets; see https://github.com/facebook/create-react-app/issues/2374\n return;\n }\n\n window.addEventListener('load', () => {\n const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;\n\n if (isLocalhost) {\n // This is running on localhost. Let's check if a service worker still exists or not.\n checkValidServiceWorker(swUrl, config);\n\n // Add some additional logging to localhost, pointing developers to the\n // service worker/PWA documentation.\n navigator.serviceWorker.ready.then(() => {\n console.log(\n 'This web app is being served cache-first by a service ' +\n 'worker. To learn more, visit https://bit.ly/CRA-PWA'\n );\n });\n } else {\n // Is not localhost. Just register service worker\n registerValidSW(swUrl, config);\n }\n });\n }\n}\n\nfunction registerValidSW(swUrl, config) {\n navigator.serviceWorker\n .register(swUrl)\n .then(registration => {\n registration.onupdatefound = () => {\n const installingWorker = registration.installing;\n if (installingWorker == null) {\n return;\n }\n installingWorker.onstatechange = () => {\n if (installingWorker.state === 'installed') {\n if (navigator.serviceWorker.controller) {\n // At this point, the updated precached content has been fetched,\n // but the previous service worker will still serve the older\n // content until all client tabs are closed.\n console.log(\n 'New content is available and will be used when all ' +\n 'tabs for this page are closed. See https://bit.ly/CRA-PWA.'\n );\n\n // Execute callback\n if (config && config.onUpdate) {\n config.onUpdate(registration);\n }\n } else {\n // At this point, everything has been precached.\n // It's the perfect time to display a\n // \"Content is cached for offline use.\" message.\n console.log('Content is cached for offline use.');\n\n // Execute callback\n if (config && config.onSuccess) {\n config.onSuccess(registration);\n }\n }\n }\n };\n };\n })\n .catch(error => {\n console.error('Error during service worker registration:', error);\n });\n}\n\nfunction checkValidServiceWorker(swUrl, config) {\n // Check if the service worker can be found. If it can't reload the page.\n fetch(swUrl, {\n headers: { 'Service-Worker': 'script' },\n })\n .then(response => {\n // Ensure service worker exists, and that we really are getting a JS file.\n const contentType = response.headers.get('content-type');\n if (\n response.status === 404 ||\n (contentType != null && contentType.indexOf('javascript') === -1)\n ) {\n // No service worker found. Probably a different app. Reload the page.\n navigator.serviceWorker.ready.then(registration => {\n registration.unregister().then(() => {\n window.location.reload();\n });\n });\n } else {\n // Service worker found. Proceed as normal.\n registerValidSW(swUrl, config);\n }\n })\n .catch(() => {\n console.log(\n 'No internet connection found. App is running in offline mode.'\n );\n });\n}\n\nexport function unregister() {\n if ('serviceWorker' in navigator) {\n navigator.serviceWorker.ready\n .then(registration => {\n registration.unregister();\n })\n .catch(error => {\n console.error(error.message);\n });\n }\n}\n","/* eslint-disable */\n// WARNING: DO NOT EDIT. This file is automatically generated by AWS Amplify. It will be overwritten.\n\nconst awsmobile = {\n \"aws_project_region\": \"eu-west-1\",\n \"aws_cognito_identity_pool_id\": \"eu-west-1:921298f7-3f22-4e9f-952a-00e76057876f\",\n \"aws_cognito_region\": \"eu-west-1\",\n \"aws_user_pools_id\": \"eu-west-1_U3FYsfRNi\",\n \"aws_user_pools_web_client_id\": \"7pl2suvrrbbhg7rg2rqvdr33g9\",\n \"oauth\": {},\n \"aws_cognito_username_attributes\": [\n \"EMAIL\"\n ],\n \"aws_cognito_social_providers\": [],\n \"aws_cognito_signup_attributes\": [\n \"EMAIL\"\n ],\n \"aws_cognito_mfa_configuration\": \"OFF\",\n \"aws_cognito_mfa_types\": [\n \"SMS\"\n ],\n \"aws_cognito_password_protection_settings\": {\n \"passwordPolicyMinLength\": 8,\n \"passwordPolicyCharacters\": []\n },\n \"aws_cognito_verification_mechanisms\": [\n \"EMAIL\"\n ]\n};\n\n\nexport default awsmobile;\n","import React from \"react\";\nimport ReactDOM from \"react-dom\";\nimport \"./index.css\";\nimport App from \"./App\";\nimport { BrowserRouter as Router } from \"react-router-dom\";\nimport * as serviceWorker from \"./serviceWorker\";\nimport Amplify from \"aws-amplify\";\nimport awsExports from \"./aws-exports\";\n\nAmplify.configure(awsExports);\n\nReactDOM.render(\n \n \n \n \n ,\n document.getElementById(\"root\")\n);\n\n// If you want your app to work offline and load faster, you can change\n// unregister() to register() below. Note this comes with some pitfalls.\n// Learn more about service workers: https://bit.ly/CRA-PWA\nserviceWorker.unregister();","module.exports = __webpack_public_path__ + \"static/media/pantry_promo_2024.a67c499b.png\";"],"sourceRoot":""}