toggle()}\n {...confirmation}\n />,\n t(\"global.confirmation\")\n );\n } else resolveHandler();\n }\n });\n\n pendingConfirmation.then(() => (resolveAction ? resolveAction() : handleBackStep())).catch();\n };\n\n const contentPadding = useMemo(() => {\n if (isApplicationAttachment) {\n return \"0\";\n }\n\n if (hiddenTitle) {\n return \"30px 15px 0\";\n }\n\n return \"0 15px\";\n }, [isApplicationAttachment, hiddenTitle]);\n\n return redirect ? (\n \n ) : (\n \n {loading ? (\n \n ) : (\n \n {({ toggle }) => (\n \n )}\n \n )}\n \n );\n};\n\nconst DefaultFormActions = ({ loading, processing, disableSubmit, goBack, backAction, dataKeysLength }) => {\n const { t } = useTranslation();\n\n return (\n \n {backAction ? (\n \n {\"<\"}\n \n ) : (\n \n )}\n \n \n {t(\"global.cancel\")}\n \n \n {t(\"global.save_button\")}\n \n \n
\n );\n};\nconst ConfiramtionModalContent = ({ resolve, reject, description, decline, accept, onAccept, close }) => {\n return (\n <>\n \n \n
\n \n {description}\n \n \n {\n resolve();\n close();\n }}\n >\n {decline}\n \n {\n reject();\n onAccept();\n close();\n }}\n >\n {accept}\n \n
\n >\n );\n};\n\nexport default SubPageSection;\n","import styled from \"styled-components\";\n\nexport const TitleIconHolder = styled.div`\n display: flex;\n align-items: center;\n flex: 0 0 auto;\n`;\n\nexport const ActionRow = styled.div`\n display: flex;\n width: 300px;\n\n > * {\n flex-basis: 150px;\n }\n\n @media screen and (max-width: 767px) {\n width: 100%;\n }\n`;\n","import React, { useEffect } from \"react\";\nimport { observer } from \"mobx-react\";\nimport { useModal } from \"../../../utils/hooks\";\nimport SuggestGlobalPageModal from \"../SuggestGlobalPageModal\";\nimport useStore from \"../../contexts/store\";\nimport { countriesList } from \"../../constants/workforce\";\nimport { useIsBarona } from \"../../hooks\";\n\nconst SuggestGlobalPage = () => {\n const handleSuggestGlobalPageModal = useModal( , \"\");\n const { getDefaultCountry, defaultCountry } = useStore(\"ContactUs\");\n const isGoogleBot = window.navigator.userAgent.indexOf(\"Googlebot\") !== -1;\n const isBarona = useIsBarona();\n\n useEffect(() => {\n const isGlobalSuggestedModalShown = localStorage.getItem(\"globalSuggestedModal\");\n const isIncludeCountry = defaultCountry?.name\n ? countriesList.map(item => item.toLowerCase()).includes(defaultCountry.name.toLowerCase())\n : false;\n\n if (isIncludeCountry && !isGlobalSuggestedModalShown && !isGoogleBot && !isBarona) {\n localStorage.setItem(\"globalSuggestedModal\", \"true\");\n handleSuggestGlobalPageModal();\n }\n }, [defaultCountry, defaultCountry?.name]);\n\n useEffect(() => {\n if (!defaultCountry?.name) {\n getDefaultCountry();\n }\n }, []);\n\n return null;\n};\n\nexport default observer(SuggestGlobalPage);\n","import React from \"react\";\n\nimport fuzuLogoBlack from \"images/new_fuzu_logo_black.png\";\nimport { Modal, Description, Logo, Content, Actions, Close, GoToGlobal } from \"./styled\";\n\nconst SuggestGlobalPageModal = ({ close }) => {\n return (\n \n \n \n \n \n\n \n Are you visiting Fuzu.com from Europe or US? Visit Fuzu Global Workforce to explore our remote talent solution\n or continue to Fuzu.com to browse jobs.\n \n \n Continue to Fuzu.com \n Go to Fuzu Global Workforce \n \n \n \n );\n};\n\nexport default SuggestGlobalPageModal;\n","import styled from \"styled-components\";\nimport { theme } from \"b2c/contexts/theme\";\n\nexport const Modal = styled.div`\n max-width: 640px;\n width: 100%;\n`;\n\nexport const Content = styled.div`\n margin: -40px -20px 0;\n`;\n\nexport const Logo = styled.div`\n margin-bottom: 16px;\n padding-left: 32px;\n\n img {\n width: 98px;\n height: 29px;\n }\n`;\n\nexport const Description = styled.p`\n font-style: normal;\n font-weight: 400;\n font-size: 16px;\n line-height: 140%;\n color: #666666;\n display: block;\n padding: 40px 16px;\n border-bottom: 1px solid #c5c5c5;\n border-top: 1px solid #c5c5c5;\n\n @media screen and (min-width: 768px) {\n padding: 64px 32px;\n }\n`;\n\nexport const Actions = styled.div`\n display: flex;\n justify-content: flex-end;\n gap: 16px;\n margin: 24px 32px 0 0;\n`;\n\nexport const GoToGlobal = styled.a`\n background: ${theme.primary};\n border-radius: 8px;\n display: block;\n font-weight: 600;\n font-size: 16px;\n line-height: 24px;\n color: #333333;\n padding: 9px 24px;\n cursor: pointer;\n`;\n\nexport const Close = styled.button`\n font-weight: 400;\n font-size: 16px;\n line-height: 140%;\n color: #408bfc;\n padding: 9px 24px;\n background: transparent;\n border: none;\n outline: none;\n cursor: pointer;\n`;\n","import React, { useContext } from \"react\";\nimport { Content } from \"./styled\";\nimport ThemeContext from \"../../contexts/theme\";\n\nconst SvgContent = ({ children, style = {} }) => {\n const theme = useContext(ThemeContext);\n\n return (\n \n {children}\n \n );\n};\n\nexport default SvgContent;\n","import styled from \"styled-components\";\n\nexport const Content = styled.div`\n circle {\n fill: ${({ fill }) => fill};\n }\n ellipse {\n fill: ${({ fill }) => fill};\n }\n`;\n","import React, { useMemo } from \"react\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport { jobRow, courseRow, articleRow, companyRow, inviteRow } from \"../RowTypes\";\nimport ResultTable from \"../ResultTable\";\nimport { debitRow, creditRow } from \"../PaymentRows\";\nimport { languageFormat } from \"../../constants/main\";\n\nconst TableGenerator = ({ tab, savedContent = false, items = [], handleSaving }) => {\n const { t, language } = useTranslation();\n const languageFormatType = languageFormat[language];\n\n const headings = (() => {\n switch (tab) {\n default:\n return [];\n case \"jobs\":\n return [\n t(\"search.employer\"),\n t(\"search.title\"),\n t(\"search.location\"),\n t(\"search.experience\"),\n t(\"search.type\"),\n t(\"search.views\"),\n t(\"search.published\")\n ].concat(savedContent ? [] : \"\");\n case \"courses\":\n return [\n t(\"search.course\"),\n t(\"search.category\"),\n t(\"search.modules\"),\n t(\"search.participants\"),\n t(\"search.likes\")\n ].concat(savedContent ? [] : \"\");\n case \"articles\":\n return [\n t(\"search.title\"),\n t(\"search.published\"),\n t(\"search.author\"),\n t(\"search.views\"),\n t(\"search.likes\"),\n t(\"search.comments\")\n ].concat(savedContent ? [] : \"\");\n case \"companies\":\n return [t(\"search.name\"), t(\"search.job_count\")].concat(savedContent ? [] : \"\");\n case \"debit\":\n return [t(\"search.activity\"), t(\"search.received_points\"), t(\"search.date\")];\n case \"credit\":\n return [t(\"search.purchases\"), t(\"search.used_money\"), t(\"search.used_points\"), t(\"search.date\")];\n case \"invites\":\n return [t(\"search.friends_email\"), t(\"search.received_fuzu_points\"), t(\"search.date\")];\n }\n })();\n\n const rows = useMemo(() => {\n switch (tab) {\n default:\n return [];\n case \"jobs\":\n return items.map(job => jobRow(job, handleSaving, savedContent, t));\n case \"courses\":\n return items.map(course => courseRow(course, handleSaving, savedContent, t));\n case \"articles\":\n return items.map(article => articleRow(article, handleSaving, savedContent, t));\n case \"companies\":\n return items.map(company => companyRow(company, t));\n case \"invites\":\n return items.map(data => inviteRow({ ...data, languageFormatType }));\n case \"debit\":\n return items.map(pointsData => debitRow({ ...pointsData, languageFormatType }));\n case \"credit\":\n return items.map(pointsData => creditRow({ ...pointsData, languageFormatType }));\n }\n }, [headings]);\n\n return ;\n};\n\nexport default TableGenerator;\n","import React, { useContext } from \"react\";\n\nimport Label from \"../Core/Label\";\nimport { TabWrapper, TabContent, TabScrollContent, TabItem, TabPanel } from \"./styled\";\n\nimport ThemeContext from \"../../contexts/theme\";\n\nconst Tabs = ({\n children,\n style,\n theme = \"white\",\n borderRadius = \"5px\",\n margin = \"0 0 10px\",\n padding = \"0 20px\",\n ...props\n}) => {\n const Theme = useContext(ThemeContext);\n\n return (\n <>\n \n \n {children} \n \n \n >\n );\n};\n\nTabs.Tab = ({\n color = \"black200\",\n selectedColor = \"secondary300\",\n focusColor = \"secondary100\",\n theme = \"white\",\n children,\n selected,\n style,\n count = 0,\n to,\n ...props\n}) => {\n const Theme = useContext(ThemeContext);\n\n return (\n \n {children}\n {count > 0 && {count} }\n \n );\n};\n\nTabs.TabPanel = ({ style, active, children }) => {\n return active ? (\n \n {children}\n \n ) : null;\n};\n\nexport default Tabs;\n","import styled from \"styled-components\";\n\nexport const TabWrapper = styled.nav(props => props.$styled);\n\nexport const TabContent = styled.div`\n ${props => props.$styled}\n`;\n\nexport const TabScrollContent = styled.div`\n display: flex;\n width: 100%;\n white-space: nowrap;\n overflow: auto;\n\n -ms-overflow-style: none;\n scrollbar-width: none;\n &::-webkit-scrollbar {\n display: none;\n }\n &:after {\n content: \"\";\n width: 0;\n min-height: 50px;\n position: sticky;\n right: 0;\n background-color: ${({ $theme }) => $theme};\n display: inline-flex;\n flex: 0 0 0;\n margin-left: auto;\n box-shadow: 0px 0 10px 15px ${({ $theme }) => $theme};\n }\n`;\n\nexport const TabItem = styled.div.attrs()`\n ${({ selected, $color, $altcolor, $focusColor, $theme }) => `\n cursor: pointer;\n display: inline-flex;\n align-items: center;\n min-height: 50px;\n padding: 0 calc(10px + 0.5%);\n color: ${selected ? $altcolor : $color};\n font-weight: 500;\n transition: .2s ease, font-weight 0s;\n user-select: none;\n background-color: ${$theme};\n box-shadow: ${selected ? `inset 0 -2px 0px 0px currentColor, 0 0 10px 5px ${$theme};` : \"none\"};\n\n position: ${selected ? \"sticky\" : \"static\"};\n left: 0;\n right: 0;\n z-index: ${selected ? \"1\" : \"0\"};\n\n\n &:hover {\n color: ${$altcolor};\n }\n\n &:focus {\n background-color: ${selected ? $theme : $focusColor};\n outline: none;\n z-index: 3;\n }\n `}\n ${({ $styled }) => $styled}\n`;\n\nexport const TabPanel = styled.div(props => props.$styled);\n","import React, { useState, useContext, useEffect, useCallback } from \"react\";\nimport { observer } from \"mobx-react\";\nimport { useScreenClass } from \"react-grid-system\";\nimport styled from \"styled-components\";\n\nimport { highlightField, debounce } from \"utils/helpers\";\nimport { usePreventSubmission } from \"utils/hooks\";\nimport ThemeContext from \"../../contexts/theme\";\nimport useStore from \"../../contexts/store\";\nimport { Input, Spinner, Text } from \"../Core\";\n\nconst TownInput = ({ loading = false, defaultValue = \"\", onChange, ...inputProps }) => {\n const {\n state: { loading: processing },\n towns,\n getTowns\n } = useStore(\"Common\");\n const theme = useContext(ThemeContext);\n const [focused, setFocused] = useState(false);\n const [field, setField] = useState(\"\");\n const screen = useScreenClass();\n const isSm = /xs|sm/.test(screen);\n\n const getTownsDebounced = useCallback(debounce(getTowns, 750), []);\n\n usePreventSubmission(focused);\n\n useEffect(() => {\n setField(defaultValue);\n }, [defaultValue]);\n\n const handleInput = value => {\n setField(value);\n if (value.length > 2) getTownsDebounced(value);\n if (towns.some(item => item.name.toLowerCase() == value.toLowerCase()) && !isSm) {\n const found = towns.find(item => item.name.toLowerCase() == value.toLowerCase());\n setFocused(false);\n onChange(null, \"city\");\n onChange(found.id, \"city_id\");\n } else {\n if (!focused) setFocused(true);\n onChange(value, \"city\");\n onChange(null, \"city_id\");\n }\n };\n\n const handleTownSelect = ({ id, name }) => {\n setField(name);\n setFocused(false);\n onChange(null, \"city\");\n onChange(id, \"city_id\");\n };\n\n const handleAutoSelect = e => {\n if (e.keyCode == 13) {\n const found = towns[0];\n if (found) handleTownSelect(found);\n }\n };\n\n const isMenuVisible = focused && (isSm || field.length >= 3);\n\n return (\n \n {\n target.select();\n setFocused(true);\n }}\n onBlur={() => {\n if (!isSm) setFocused(false);\n }}\n onChange={({ target: { value } }) => handleInput(value)}\n onKeyDown={handleAutoSelect}\n autoComplete=\"new-password\"\n {...inputProps}\n />\n {processing && }\n {isMenuVisible && (\n \n {towns.map(town => (\n \n e.preventDefault()} onClick={() => handleTownSelect(town)}>\n {highlightField(town.name, field)} \n \n \n ))}\n
\n )}\n \n );\n};\n\nconst FilterWrapper = styled.div`\n width: 100%;\n position: relative;\n\n .location-menu {\n position: absolute;\n z-index: 9;\n border: 1px solid #e8eaef;\n background-color: #ffffff;\n border-radius: 5px;\n font-size: 14px;\n overflow: hidden;\n max-height: 236px;\n overflow-y: auto;\n height: fit-content;\n display: flex;\n flex-direction: column;\n\n @media screen and (max-width: 767px) {\n margin: 8px 0 0;\n width: 100%;\n }\n }\n`;\n\nexport const ProcessingState = styled(Spinner)`\n ${({ bottom = 12 }) => `bottom: ${bottom}px;`}\n position: absolute;\n right: 0;\n transform: translate(-50%);\n z-index: 10;\n`;\n\nconst LocationItem = styled.div`\n ${({ theme }) => `\n padding: 10px 12px;\n cursor: pointer;\n color: ${theme.black300};\n min-width: 250px;\n span {\n background-color: ${theme.primary100};\n }\n &.selected {\n font-weight: 500;\n color: ${theme.black500};\n }\n &:hover {\n background-color: ${theme.primary100};\n }\n`}\n`;\n\nexport default observer(TownInput);\n","import React, { cloneElement, Children } from \"react\";\n\nimport { useModal } from \"utils/hooks\";\nimport { UnderDevelopmentContent } from \"../ModalContents\";\n\nconst UnderDevelopment = ({ children, disabled = false }) => {\n const openModal = useModal( , \"\");\n\n const onClick = e => {\n e.preventDefault();\n e.stopPropagation();\n openModal();\n };\n\n return disabled ? children : cloneElement(Children.only(children), { onClick });\n};\n\nexport default UnderDevelopment;\n","var _path, _path2;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgFuzuCoin = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 24,\n height: 24,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#676767\",\n d: \"M19.083 4.917A10 10 0 0 0 17.51 3.63L16.77 4.91a8.6 8.6 0 0 1 2.321 2.32l1.279-.738c-.371-.56-.8-1.088-1.287-1.574M15.757 4.321l.738-1.279A9.95 9.95 0 0 0 12.585 2v1.471a8.5 8.5 0 0 1 3.172.85M8.243 4.321a8.5 8.5 0 0 1 3.171-.85V2a9.95 9.95 0 0 0-3.91 1.042zM15.757 19.679a8.5 8.5 0 0 1-3.171.85V22a9.95 9.95 0 0 0 3.91-1.042zM4.908 7.23A8.6 8.6 0 0 1 7.23 4.908L6.491 3.63A10.1 10.1 0 0 0 3.63 6.491zM6.49 20.37l.739-1.279a8.6 8.6 0 0 1-2.32-2.32l-1.28.738a10.1 10.1 0 0 0 2.862 2.86M4.321 8.243l-1.279-.738A9.95 9.95 0 0 0 2 11.415h1.471a8.5 8.5 0 0 1 .85-3.172M19.679 8.243c.476.97.773 2.04.85 3.171H22a9.95 9.95 0 0 0-1.042-3.91zM19.091 16.77a8.6 8.6 0 0 1-2.32 2.321l.738 1.279a10.1 10.1 0 0 0 2.86-2.861zM19.679 15.757l1.279.738A9.95 9.95 0 0 0 22 12.585h-1.47a8.5 8.5 0 0 1-.851 3.172M8.243 19.679l-.738 1.279A9.95 9.95 0 0 0 11.415 22v-1.471a8.5 8.5 0 0 1-3.172-.85M4.321 15.757a8.5 8.5 0 0 1-.85-3.171H2a9.95 9.95 0 0 0 1.042 3.91z\"\n})), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#676767\",\n fillRule: \"evenodd\",\n d: \"M4.622 12c0-4.068 3.31-7.378 7.378-7.378s7.377 3.31 7.377 7.378-3.31 7.377-7.377 7.377S4.622 16.067 4.622 12m10.711-4.167-1.25 2.376h-2.17v1.312h2.17v2.323h-2.17v2.323H9.5V7.833z\",\n clipRule: \"evenodd\"\n})));\nexport default SvgFuzuCoin;","import React, { useEffect, useContext, forwardRef, useCallback, useState } from \"react\";\nimport { observer } from \"mobx-react\";\nimport { Link, useLocation } from \"react-router-dom\";\nimport { Row } from \"react-grid-system\";\nimport {\n RightArrowAlt,\n Home,\n Briefcase,\n Chalkboard,\n Group,\n UserCircle,\n Chat,\n UserPlus,\n LogOut,\n Bell\n} from \"@styled-icons/boxicons-regular\";\nimport { SettingsOutline, QuestionMarkCircleOutline } from \"@styled-icons/evaicons-outline\";\nimport {\n Settings as SettingsSolid,\n QuestionMarkCircle as QuestionMarkCircleSolid,\n Close,\n Bell as BellSolid\n} from \"@styled-icons/evaicons-solid\";\nimport {\n Home as HomeSolid,\n Briefcase as BriefcaseSolid,\n Chalkboard as ChalkboardSolid,\n Group as GroupSolid,\n UserCircle as UserCircleSolid,\n Chat as ChatSolid,\n UserPlus as UserPlusSolid\n} from \"@styled-icons/boxicons-solid\";\n\nimport { buildImageUrlS3, getCompanyName, isBaronaBrand } from \"b2c/contexts/branded\";\nimport FuzuIcon from \"images/b2c/icons/fuzu-coin.svg\";\nimport { useInitialFocus } from \"utils/hooks\";\nimport useStore from \"../../contexts/store\";\nimport Text from \"../Core/Text\";\nimport Button from \"../Core/Button\";\nimport Image from \"../Core/Image\";\nimport MenuItem from \"../MenuItem\";\nimport ThemeContext from \"../../contexts/theme\";\nimport { StyledActivityCenter, StyledLabel, StyledMenuHeader, StyledOverlay } from \"./styled\";\nimport { Label } from \"../Core\";\nimport Icon from \"../Core/Icon\";\nimport { useNotificationsSettingsNav } from \"../NotificationsSettings\";\nimport { nameImages } from \"../../constants/images\";\n\nconst ActivityCenter = forwardRef((props, ref) => {\n const {\n user: { full_name: firstName, avatar },\n toggleUserAccountMenu,\n userAccountMenu\n } = useStore(\"User\");\n const [avatarImage, setAvatar] = useState(avatar);\n const Theme = useContext(ThemeContext);\n const { pathname } = useLocation();\n const { open } = useNotificationsSettingsNav();\n const isBarona = isBaronaBrand();\n\n const {\n User: {\n Notifications: { updateCounterBadge }\n }\n } = useStore();\n\n const OnPressEscape = useCallback(event => {\n if (event.keyCode === 27) {\n toggleUserAccountMenu();\n }\n }, []);\n\n const hideActivityCenter = () => {\n if (userAccountMenu) {\n toggleUserAccountMenu();\n }\n };\n\n useEffect(() => {\n setAvatar(avatar || buildImageUrlS3(nameImages.avatarEmpty));\n }, [avatar]);\n\n useEffect(() => {\n document.addEventListener(\"keydown\", OnPressEscape);\n\n return () => {\n document.removeEventListener(\"keydown\", OnPressEscape);\n };\n }, []);\n\n useInitialFocus(ref);\n\n return (\n event.stopPropagation()}\n aria-modal=\"true\"\n role=\"dialog\"\n ref={ref}\n style={{\n display: \"flex\",\n flexDirection: \"column\",\n paddingBottom: \"20px\"\n }}\n >\n \n \n }\n fontSize={14}\n fontWeight={600}\n margin=\"0\"\n >\n \n {firstName?.length > 22 ? `${firstName?.substr(0, 22)}...` : firstName}\n \n \n \n\n \n View profile\n \n \n \n \n \n \n\n <>\n \n \n \n \n \n
\n
\n \n \n\n \n\n {!isBarona && (\n \n )}\n\n \n
\n\n
\n\n \n \n\n \n\n \n \n updateCounterBadge()}\n >\n \n \n \n Logout \n \n
\n
\n >\n \n \n );\n});\n\nexport default observer(ActivityCenter);\n","import styled from \"styled-components\";\n\nexport const StyledActivityCenter = styled.div`\n position: fixed;\n left: 0;\n top: 0;\n z-index: 98;\n width: 75%;\n height: 100%;\n display: block;\n background-color: #ffffff;\n border-radius: 5px;\n overflow: hidden auto;\n &:focus {\n border: none;\n outline: none;\n }\n ${({ $styled }) => $styled}\n`;\n\nexport const StyledLabel = styled.div`\n display: inline-block;\n position: relative;\n top: 1px;\n left: 10px;\n font-weight: 500;\n font-size: 14px;\n color: ${props => props.color};\n`;\n\nexport const StyledMenuHeader = styled.div`\n width: 100%;\n height: 99px;\n margin-bottom: 15px;\n background: ${({ theme }) => theme.primary};\n position: relative;\n`;\n\nexport const StyledOverlay = styled.div`\n height: 100%;\n background: #1c1e2085;\n position: fixed;\n right: 0px;\n width: 25%;\n`;\n","import React, { useState } from \"react\";\nimport { Visible } from \"react-grid-system\";\nimport cn from \"classnames\";\n\nimport HeaderSearchInput from \"b2c/components/HeaderSearchInput\";\nimport NotificationsButton from \"b2c/components/NotificationsButton\";\nimport { onEnterPress } from \"utils/helpers\";\nimport { Badge, Button } from \"../Core\";\nimport Highlight from \"../Highlight\";\nimport AccountMenu from \"../AccountMenu\";\nimport MessagesLink from \"../MessagesLink\";\nimport useStore from \"../../contexts/store\";\n\nconst UserSide = ({\n Theme,\n pathname,\n id,\n firstName,\n avatar,\n push,\n unreadCount,\n MessageIcon,\n customJkuat,\n email,\n fullName\n}) => {\n const [searchTerm, setSearchTerm] = useState(\"\");\n const { global_brand } = useStore(\"initialState\");\n const globalBrandName = global_brand.name.toLowerCase();\n\n const handleUniversalSearch = () => {\n push(`/search?term=${searchTerm}`);\n setSearchTerm(\"\");\n };\n\n return (\n \n
\n\n
\n \n \n \n {MessageIcon}\n {!isNaN(unreadCount) && {unreadCount} }\n \n \n \n \n\n {!customJkuat && (\n
\n \n \n )}\n
\n \n \n \n \n
\n );\n};\n\nexport default UserSide;\n","import { useEffect } from \"react\";\nimport { observer } from \"mobx-react\";\n\nimport { useLocation } from \"react-router-dom\";\nimport { usePrev } from \"utils/hooks\";\nimport { getPathRoot, getLastUrlLevel } from \"utils/helpers\";\n\nimport useStore from \"../../contexts/store\";\n\nconst UserStatusManager = ({ routes = [] }) => {\n const { user, getUserStatus } = useStore(\"User\");\n const { pathname } = useLocation();\n const pathRoot = getPathRoot(pathname);\n const previousRoot = usePrev(pathRoot);\n const lastLevel = getLastUrlLevel(pathname);\n\n const matches =\n routes.some(route => route == lastLevel) ||\n (routes.some(route => pathname.includes(route)) && pathRoot != previousRoot);\n\n useEffect(() => {\n return () => {\n if (matches && user?.id) getUserStatus();\n };\n }, [pathname]);\n\n return null;\n};\n\nexport default observer(UserStatusManager);\n","import React, { useState, useEffect } from \"react\";\nimport { observer } from \"mobx-react\";\nimport { Row, Col } from \"react-grid-system\";\n\nimport useStore from \"b2c/contexts/store\";\nimport { isWhitelabelledOrJkuat } from \"b2c/contexts/branded\";\nimport { Card, Text, SwitchInput } from \"../Core\";\n\n/* Remove this component after deploy 16.02.2024 */\nconst VisibilitySettings = () => {\n const {\n Profile: { profile: { personal_info: { talent_pool_visibility } = {} } = {} },\n Settings: { toggleVisibility }\n } = useStore(\"User\");\n const whitelabelledOrJkuat = isWhitelabelledOrJkuat();\n\n const [disabled, disableToggle] = useState(false);\n const [pool, setPoolVisibility] = useState(talent_pool_visibility);\n\n useEffect(() => {\n setPoolVisibility(talent_pool_visibility);\n }, [talent_pool_visibility]);\n\n const handleVisibilityToggle = () => {\n disableToggle(true);\n toggleVisibility().then(() => {\n setPoolVisibility(!pool);\n disableToggle(false);\n });\n };\n\n return (\n <>\n {!whitelabelledOrJkuat ? (\n \n \n \n \n \n Let Employers Find You\n \n \n {pool ? \"Public\" : \"Private\"}: Your profile is {pool ? \"\" : \"not \"}visible to headhunters. Hiring\n managers will be able to view your profile and reach out about potential opportunities.{\" \"}\n \n \n \n \n \n
\n \n \n ) : null}\n >\n );\n};\n\nexport default observer(VisibilitySettings);\n","import React, { useContext } from \"react\";\nimport cn from \"classnames\";\nimport { Link } from \"react-router-dom\";\n\nimport { Text } from \"../Core\";\nimport LogoFooter from \"../LogoFooter\";\nimport BrandedContext from \"../../contexts/branded\";\nimport { Actions, Flex } from \"./styled\";\n\nconst WhitelabelledFooter = ({ isBrandFooterInformation }) => {\n const { employer } = useContext(BrandedContext);\n const country = employer?.address.country.name.toLowerCase();\n const jkuatFooter = isBrandFooterInformation ? \"branded-footer_jkuat\" : \"\";\n const currentYear = new Date().getFullYear();\n\n return (\n {\n if (isBrandFooterInformation) {\n return;\n }\n\n window.location.replace(\n `https://www.fuzu.com/${[\"kenya\", \"uganda\", \"nigeria\"].includes(country) ? `${country}` : \"\"}`\n );\n }}\n >\n \n \n Powered by\n \n \n \n\n {isBrandFooterInformation && (\n \n \n Service Terms\n \n \n Privacy Policy\n \n © Fuzu Ltd {currentYear} \n \n )}\n \n );\n};\n\nexport default WhitelabelledFooter;\n","import styled from \"styled-components\";\n\nexport const Actions = styled.div`\n margin-top: 32px;\n\n .hamburger-link,\n .hamburger-text {\n color: #eee;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 20px;\n display; block;\n margin-bottom: 12px;\n text-decoration: none;\n display: block;\n }\n \n .hamburger-text {\n cursor: default;\n margin: 0;\n }\n\n @media screen and (min-width: 768px) {\n display: flex;\n align-items: center;\n gap: 16px;\n margin-left: auto; \n margin-top: 0;\n \n .hamburger-link {\n margin-bottom: 0;\n }\n }\n`;\n\nexport const Flex = styled.div`\n display: flex;\n align-items: center;\n gap: 8px;\n`;\n","import React, { useState, useEffect, useCallback, useRef } from \"react\";\nimport { observer } from \"mobx-react\";\nimport { Row, Col } from \"react-grid-system\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\n\nimport SvgContent from \"b2c/components/SvgContent\";\nimport Tooltip from \"components/Tooltip\";\nimport WorkExperienceIco from \"images/b2c/profilePage/WorkExperienceIco.svg\";\nimport { capitalize } from \"utils/helpers\";\nimport useStore from \"../../contexts/store\";\nimport { Card, Text, Input, Dropdown, Textarea, Checkbox } from \"../Core\";\nimport SubPageSection from \"../SubPageSection\";\nimport CompanyInput from \"../CompanyInput\";\nimport { getCompanyName } from \"../../contexts/branded\";\nimport { languageFormat } from \"../../constants/main\";\n\nconst WorkExperience = ({ itemId, inProfileWizard, ...rest }) => {\n const {\n Profile: {\n state: { loading, processing },\n profile: { personal_info: { country = {} } = {} } = {},\n work_experience_options: {\n disciplines = [],\n employer_sizes = [],\n industries = [],\n job_levels = [],\n salary_currencies = []\n } = {},\n work_experience_details: {\n id: item_id,\n current_work,\n description,\n discipline_id,\n employer,\n employer_size_id,\n end_date,\n industry_id,\n job_level_id,\n job_title,\n salary,\n salary_currency,\n start_date,\n waits_user_review\n } = {},\n validation_errors,\n initializeWorkExperience,\n addWorkExperience,\n updateWorkExperience\n }\n } = useStore(\"User\");\n const [startDate, setStartDate] = useState({});\n const [endDate, setEndDate] = useState({});\n const [isCurrentWork, setCurrentWork] = useState(false);\n const [salaryValue, setSalaryValue] = useState(\"\");\n const { t, language } = useTranslation();\n const languageFormatType = languageFormat[language];\n const companyName = getCompanyName();\n const salaryRef = useRef();\n\n useEffect(() => {\n initializeWorkExperience(itemId);\n }, [itemId]);\n\n useEffect(() => {\n setStartDate(formatDate(start_date));\n }, [start_date]);\n\n useEffect(() => {\n setSalaryValue(salary);\n }, [salary]);\n\n useEffect(() => {\n setEndDate(formatDate(end_date));\n }, [end_date]);\n\n useEffect(() => {\n setCurrentWork(current_work);\n }, [current_work]);\n\n const formatDate = date =>\n date\n ? {\n year: +date.substring(0, date.indexOf(\"-\", 0)),\n month: +date.substring(date.indexOf(\"-\", 0) + 1, date.indexOf(\"-\", 5)),\n day: +date.substring(date.length, date.indexOf(\"-\", 7) + 1)\n }\n : {};\n\n const formatError = useCallback(\n key => {\n return validation_errors[key]\n ? capitalize(validation_errors[key].join(\", \"))\n : waits_user_review && requiredFields.includes(key) && !initialFields[key]\n ? \"Field is missing\"\n : null;\n },\n [waits_user_review, validation_errors]\n );\n\n const months = Array.from({ length: 12 }, (_, i) => ({\n name: new Date(null, i + 1, null).toLocaleString(languageFormatType, { month: \"long\" }),\n id: i + 1\n }));\n\n const getMonth = value => (months.some(m => m.id == value) ? months.find(m => m.id == value).name : \"\");\n /*\n const confirmation = {\n description: `Are you sure you don't want to fill in salary information?\n Your salary is not shared with anyone and is used solely\n for collecting statistics about the job market salary trends.`,\n decline: \"No, just save\",\n accept: \"Fill in Salary\",\n onAccept: () => salaryRef.current && salaryRef.current.focus()\n };\n */\n\n const dynamicFields = {\n start: startDate,\n end: endDate,\n current_work: isCurrentWork,\n salary: salaryValue\n };\n\n const initialFields = {\n employer,\n industry_id,\n employer_size_id,\n job_title,\n discipline_id,\n job_level_id,\n salary_currency: salary_currency || country?.currency,\n description\n };\n\n const requiredFields = [\"employer\", \"industry_id\", \"job_title\", \"discipline_id\", \"job_level_id\"];\n\n // const disableSubmit = [\"month\", \"year\"].some(key => !startDate[key] || (!endDate[key] && !isCurrentWork));\n\n const getDefaultValue = (id, list) =>\n (list?.some(item => item.id == id) && list.find(item => item.id == id).name) || \"\";\n\n return (\n \n \n \n }\n loading={loading}\n processing={processing}\n submitAction={\n itemId || item_id\n ? formData => updateWorkExperience(itemId || item_id, formData, inProfileWizard)\n : formData => addWorkExperience(formData, true)\n }\n initialFields={initialFields}\n dynamicFields={dynamicFields}\n validation={validation_errors}\n confirmation={false}\n requiredFields={requiredFields}\n {...rest}\n >\n {handleChange => (\n <>\n \n \n handleChange(null, value, key)}\n errorMessage={formatError(\"employer\")}\n />\n \n \n \n \n {industries.map(({ name, id }) => (\n handleChange(null, id, \"industry_id\")}>\n {name}\n \n ))}\n \n \n \n \n \n \n {employer_sizes.map(({ name, id }) => (\n handleChange(null, id, \"employer_size_id\")}>\n {name}\n \n ))}\n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n {months.map(({ name, id }) => (\n \n setStartDate({\n ...startDate,\n month: id\n })\n }\n >\n {name}\n \n ))}\n \n \n \n \n \n \n {[...Array(92)]\n .map((_, i) => new Date().getFullYear() - i)\n .map(year => (\n \n setStartDate({\n ...startDate,\n year\n })\n }\n >\n {year}\n \n ))}\n \n \n \n
\n {validation_errors.start_date && (\n \n {formatError(\"start_date\")}\n \n )}\n \n \n \n \n \n \n {months.map(({ name, id }) => (\n \n setEndDate({\n ...endDate,\n month: id\n })\n }\n >\n {name}\n \n ))}\n \n \n \n \n \n \n {[...Array(92)]\n .map((_, i) => new Date().getFullYear() - i)\n .map(year => (\n \n setEndDate({\n ...endDate,\n year\n })\n }\n >\n {year}\n \n ))}\n \n \n \n
\n {t(\"wizard.work_experience.current_work_label\")}}\n checked={isCurrentWork}\n onChange={() => setCurrentWork(!isCurrentWork)}\n errorMessage={formatError(\"current_work\")}\n margin=\"-8px 0 8px\"\n />\n {validation_errors.end_date && (\n \n {formatError(\"end_date\")}\n \n )}\n \n
\n \n \n \n \n {t(\"wizard.work_experience.category_label\")}*\n \n {t(\"wizard.work_experience.category_description\")} \n >\n }\n placeholder={t(\"wizard.work_experience.category_placeholder\")}\n triggerDataCy=\"choose-job-category\"\n defaultValue={getDefaultValue(discipline_id, disciplines)}\n errorMessage={formatError(\"discipline_id\")}\n >\n \n {disciplines.map(({ name, id }) => (\n handleChange(null, id, \"discipline_id\")}>\n {name}\n \n ))}\n \n \n \n \n \n \n {t(\"wizard.work_experience.job_level_label\")}*\n \n {t(\"wizard.work_experience.job_level_description\")} \n >\n }\n placeholder={t(\"wizard.work_experience.job_level_placeholder\")}\n triggerDataCy=\"choose-job-level\"\n defaultValue={getDefaultValue(job_level_id, job_levels)}\n errorMessage={formatError(\"job_level_id\")}\n >\n \n {job_levels.map(({ name, id }) => (\n handleChange(null, id, \"job_level_id\")}>\n {name}\n \n ))}\n \n \n \n \n \n \n \n \n {salary_currencies.map(currency => (\n handleChange(null, currency, \"salary_currency\")}>\n {currency}\n \n ))}\n \n \n \n \n \n setSalaryValue(e.target.value)}\n errorMessage={formatError(\"salary\")}\n />\n \n \n
\n \n
\n \n );\n};\n\nexport default observer(WorkExperience);\n","import React, { Component } from \"react\";\nimport ServerSide from \"../../contexts/ssr\";\n\nconst withLoading = (MainComponent, PlaceholderComponent) => {\n class Loader extends Component {\n constructor(props) {\n super(props);\n }\n\n render() {\n return this.props.loading && !this.context.ssr ? (\n \n ) : (\n \n );\n }\n }\n\n Loader.contextType = ServerSide;\n\n return Loader;\n};\n\nexport default withLoading;\n","export const aboutFuzu = [\n \"Through a friend or professional acquaintance\",\n \"Through a colleague at work\",\n \"Fuzu business development team\",\n \"Social media (LinkedIn, Facebook, Instagram, etc.)\",\n \"Internet search (Google, Bing, etc.)\",\n \"Email marketing\"\n];\n\nexport const hours = [\n \"9:00 AM\",\n \"9:30 AM\",\n \"10:00 AM\",\n \"10:30 AM\",\n \"11:00 AM\",\n \"11:30 AM\",\n \"12:00 AM\",\n \"12:30 PM\",\n \"1:00 PM\",\n \"1:30 PM\",\n \"2:00 PM\",\n \"2:30 PM\",\n \"3:00 PM\",\n \"3:30 PM\",\n \"4:00 PM\",\n \"4:30 PM\",\n \"5:00 PM\",\n \"6:30 PM\"\n];\n\nexport const hoursMapper = {\n \"9:00 AM\": \"09:00-09:30am\",\n \"9:30 AM\": \"09:30-10:00am\",\n \"10:00 AM\": \"10:00-10:30am\",\n \"10:30 AM\": \"10:30-11:00am\",\n \"11:00 AM\": \"11:00-11:30am\",\n \"11:30 AM\": \"11:30-12:00am\",\n \"12:00 AM\": \"12:00-12:30am\",\n \"12:30 PM\": \"12:30-01:00pm\",\n \"1:00 PM\": \"01:00-01:30pm\",\n \"1:30 PM\": \"01:30-02:00pm\",\n \"2:00 PM\": \"02:00-02:30pm\",\n \"2:30 PM\": \"02:30-03:00pm\",\n \"3:00 PM\": \"03:00-03:30pm\",\n \"3:30 PM\": \"03:30-04:00pm\",\n \"4:00 PM\": \"04:00-04:30pm\",\n \"4:30 PM\": \"04:30-05:00pm\",\n \"5:00 PM\": \"05:00-05:30pm\",\n \"6:30 PM\": \"05:30-06:00pm\"\n};\n\nexport const stepsInfo = {\n optionSelectionStep: {\n title: \"companies.contact_us_modal.title_1\",\n arrow: false,\n step: 1,\n cancel: true,\n button: \"companies.contact_us_modal.continue\"\n },\n calendarStep: {\n // title: \"Book a call with Fuzu\",\n title: \"employers.contact_us_modal.calendar_title\",\n arrow: true,\n step: 3,\n cancel: true\n },\n formStep: {\n title: {\n fuzu: \"employers.contact_us_modal.form_step_title\",\n barona: \"companies.contact_us_modal.title_3\"\n },\n arrow: true,\n step: 2,\n cancel: true,\n button: \"companies.contact_us_modal.continue\"\n },\n jobSeekerStep: {\n title: \"employers.contact_us_modal.job_seeker_title\",\n arrow: false,\n step: false,\n cancel: false,\n button: \"employers.contact_us_modal.job_seeker_button\"\n },\n confirmedStep: {\n title: \"employers.contact_us_modal.calendar_title\",\n arrow: false,\n step: false,\n cancel: false,\n button: \"global.done\"\n },\n baronaConfirmedStep: {\n title: \"companies.contact_us_modal.title_4\",\n arrow: false,\n step: false,\n cancel: false,\n button: \"companies.contact_us_modal.button_4\"\n },\n baronaJobSeekerStep: {\n title: \"companies.contact_us_modal.title_2\",\n arrow: false,\n step: false,\n cancel: false,\n button: \"companies.contact_us_modal.button_2\"\n },\n lastStep: {\n fuzu: \"3\",\n barona: \"2\"\n },\n jobSeekerText: {\n fuzu: \"employers.contact_us_modal.job_seeker_description\",\n barona: \"companies.contact_us_modal.sub-title_2\"\n },\n formState: {\n fuzu: \"To set up your Fuzu account and to select the best solution for your needs, we’ll schedule a short call with the Fuzu experts\",\n barona:\n \"To set up your partnership with us and find the best solution for your needs, we’ll schedule a short call with Barona experts.\"\n }\n};\n\nexport const steps = {\n optionSelectionStep: \"optionSelectionStep\",\n formStep: \"formStep\",\n jobSeekerStep: \"jobSeekerStep\",\n calendarStep: \"calendarStep\",\n confirmedStep: \"confirmedStep\",\n baronaConfirmedStep: \"baronaConfirmedStep\",\n baronaJobSeekerStep: \"baronaJobSeekerStep\"\n};\n\nexport const productTypes = {\n \"Free Forever\": 0,\n Starter: 1,\n \"Starter Gold\": 2,\n Basic: 3,\n Growth: 4,\n Premium: 5,\n \"Junior professional\": 6,\n \"Mid-level\": 7,\n \"Team lead\": 8,\n \"Tech hires\": 9,\n \"Executive search\": 10\n};\n","import modern from \"images/b2c/cvBuilder/modern.png\";\nimport classic from \"images/b2c/cvBuilder/classic.png\";\nimport international from \"images/b2c/cvBuilder/international.png\";\nimport plain from \"images/b2c/cvBuilder/plain.png\";\n\nexport const features = [\n \"You will get 12 month access to Fuzu CV Creator\",\n \"All design and editing options available for 12 months\",\n \"Create and download CV as many times as you wish\"\n];\n\nexport const imageMap = {\n modern,\n classic,\n international,\n plain\n};\n","var _path, _path2, _path3, _path4, _path5;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgGlobalProvide1 = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 40,\n height: 40,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#408BFC\",\n strokeWidth: 1.5,\n d: \"M9.333 7.75a3.333 3.333 0 1 0 0-6.667 3.333 3.333 0 0 0 0 6.667Z\"\n})), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#408BFC\",\n strokeWidth: 2,\n d: \"M3.84 13.333H28a4 4 0 0 1 4 4v1.334H4.16a2.827 2.827 0 0 1-2.827-2.827 2.507 2.507 0 0 1 2.507-2.507Z\"\n})), _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#408BFC\",\n strokeWidth: 2,\n d: \"M1.333 16v18.667a4 4 0 0 0 4 4h28a4 4 0 0 0 4-4v-12a4 4 0 0 0-4-4H4.667\"\n})), _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n stroke: \"#408BFC\",\n strokeWidth: 1.5,\n d: \"M26 15.917c0 .85-.151 1.664-.428 2.416H12.428A7 7 0 1 1 26 15.916Z\"\n})), _path5 || (_path5 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#408BFC\",\n d: \"M33.583 31.25v-5.333a1.333 1.333 0 0 0-2.666 0v5.333a1.333 1.333 0 1 0 2.666 0\"\n})));\nexport default SvgGlobalProvide1;","var _path, _path2, _path3, _path4;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgGlobalProvide2 = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 40,\n height: 44,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#408BFC\",\n d: \"M10.5 13a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5M23.077 15.857H9.231c-.85 0-1.539.688-1.539 1.536s.69 1.536 1.539 1.536h13.846a1.537 1.537 0 1 0 0-3.071M17.033 22H9.231a1.537 1.537 0 1 0 0 3.071h7.802c.85 0 1.538-.687 1.538-1.535S17.884 22 17.034 22\"\n})), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#408BFC\",\n d: \"M6.838 3.572a3.76 3.76 0 0 0-3.761 3.76v29.336a3.76 3.76 0 0 0 3.76 3.76H22.07a13 13 0 0 1-.944-1.504H6.838a2.257 2.257 0 0 1-2.257-2.256V7.332a2.256 2.256 0 0 1 2.257-2.256H25.64a2.256 2.256 0 0 1 2.256 2.256V20.94q.732-.277 1.505-.463V7.332a3.76 3.76 0 0 0-3.76-3.76z\"\n})), _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#408BFC\",\n strokeWidth: 1.5,\n d: \"M30 40.813c4.886 0 8.846-3.954 8.846-8.83 0-4.878-3.96-8.831-8.846-8.831s-8.846 3.953-8.846 8.83 3.96 8.83 8.846 8.83Z\"\n})), _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#408BFC\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeWidth: 1.5,\n d: \"m26.923 31.214 3.078 2.304 3.62-4.607\"\n})));\nexport default SvgGlobalProvide2;","var _path, _path2, _path3, _path4, _path5;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgGlobalProvide3 = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 40,\n height: 38,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#408BFC\",\n strokeLinejoin: \"round\",\n strokeWidth: 2,\n d: \"m1.85 14.936 17.554-8.699a1.34 1.34 0 0 1 1.192 0l17.554 8.699-17.63 7.392c-.332.14-.707.14-1.04 0z\"\n})), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#408BFC\",\n strokeWidth: 2,\n d: \"M30.667 18.5v5.645c0 .9-.5 1.728-1.3 2.155a19.92 19.92 0 0 1-18.735 0 2.44 2.44 0 0 1-1.299-2.154V18\"\n})), _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#408BFC\",\n d: \"M34.667 16.357H36v12.554c0 .365-.298.66-.667.66a.664.664 0 0 1-.666-.66z\"\n})), _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#408BFC\",\n strokeLinejoin: \"round\",\n strokeWidth: 1.5,\n d: \"m34.718 34.777.615-2.44.616 2.44a.33.33 0 0 1-.323.41h-.585a.33.33 0 0 1-.323-.41Z\"\n})), _path5 || (_path5 = /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#408BFC\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeWidth: 2,\n d: \"m12 14.832 4.923-2.44\"\n})));\nexport default SvgGlobalProvide3;","var _path, _g;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgGlobalProvide4 = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 40,\n height: 40,\n fill: \"none\"\n}, props), /*#__PURE__*/React.createElement(\"mask\", {\n id: \"global-provide-4_svg__a\",\n width: 40,\n height: 40,\n x: 0,\n y: 0,\n maskUnits: \"userSpaceOnUse\",\n style: {\n maskType: \"luminance\"\n }\n}, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n d: \"M39.09 0H.91v40H39.09z\"\n}))), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"#408BFC\",\n mask: \"url(#global-provide-4_svg__a)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n d: \"M30.384 16.857c2.334-2.355 3.085-4.747 3.14-6.655.056-2-.123-2.872-.544-3.297-.421-.424-1.286-.606-3.268-.548-1.892.054-4.263.812-6.597 3.167L12.05 20.686a2.64 2.64 0 0 1-3.136.464L4.773 18.9c-.433-.235-.518-.821-.147-1.147 2.56-2.25 8.03-5.769 11.856-3.633l5.594-5.643c5.192-5.238 10.384-4.19 11.942-2.62 1.558 1.572 2.596 6.81-2.596 12.048l-2.797 2.822-2.797 2.821c2.117 3.86-1.371 9.378-3.601 11.96-.323.375-.905.29-1.138-.147l-2.23-4.178a2.7 2.7 0 0 1 .46-3.164zM20.083 29.344a.67.67 0 0 0-.115.79l1.388 2.601a.636.636 0 0 0 1.09.077c.813-1.18 1.605-2.584 2.092-4.005.4-1.166.563-2.231.439-3.171-.062-.475-.624-.6-.96-.26zM14.67 15.947c.336-.339.213-.905-.258-.968-.932-.125-1.988.04-3.144.443-1.408.49-2.8 1.29-3.97 2.11-.394.277-.347.87.076 1.1l2.578 1.4a.66.66 0 0 0 .784-.116z\",\n clipRule: \"evenodd\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"m21.037 28.38-9.345-9.427L10.653 20 20 29.428zM13.25 25.762l-7.27 7.333a.745.745 0 0 0 0 1.047.73.73 0 0 0 1.039 0l7.269-7.333a.745.745 0 0 0 0-1.047.73.73 0 0 0-1.039 0M15.326 27.857l-2.596 2.619a.745.745 0 0 0 0 1.047.73.73 0 0 0 1.039 0l2.596-2.619a.745.745 0 0 0 0-1.047.73.73 0 0 0-1.039 0M11.173 23.667 6.5 28.38a.745.745 0 0 0 0 1.047.73.73 0 0 0 1.038 0l4.673-4.714a.745.745 0 0 0 0-1.047.73.73 0 0 0-1.038 0M26.23 13.714a2.19 2.19 0 0 0 3.116 0c.86-.868.86-2.275 0-3.143a2.19 2.19 0 0 0-3.116 0 2.236 2.236 0 0 0 0 3.143\"\n}))));\nexport default SvgGlobalProvide4;","var _path, _g;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgGlobalProvide5 = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 40,\n height: 38,\n fill: \"none\"\n}, props), /*#__PURE__*/React.createElement(\"mask\", {\n id: \"global-provide-5_svg__a\",\n width: 40,\n height: 38,\n x: 0,\n y: 0,\n maskUnits: \"userSpaceOnUse\",\n style: {\n maskType: \"luminance\"\n }\n}, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n d: \"M39.333.5H.667v37h38.666z\"\n}))), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#global-provide-5_svg__a)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#408BFC\",\n strokeWidth: 2,\n d: \"M22.153 19.61c3.385 3.355 8.872 3.355 12.257 0a8.535 8.535 0 0 0 0-12.147c-3.385-3.354-8.872-3.354-12.257 0a8.535 8.535 0 0 0 0 12.147Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#408BFC\",\n d: \"M31.524 16.923c.291.289.77.291 1.017-.035a5.243 5.243 0 0 0 .526-5.511c-.182-.367-.652-.453-.993-.224-.34.23-.422.689-.26 1.065a3.78 3.78 0 0 1-.344 3.61c-.23.34-.238.806.054 1.095\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#408BFC\",\n strokeWidth: 2,\n d: \"M18.092 27.157a2.475 2.475 0 0 0 0-3.521 2.53 2.53 0 0 0-3.554 0l-7.615 7.547a2.475 2.475 0 0 0 0 3.522 2.53 2.53 0 0 0 3.554 0z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#408BFC\",\n d: \"m21.035 18.215 2.357 2.336-4.351 4.313-2.357-2.336z\"\n}))));\nexport default SvgGlobalProvide5;","var _path, _g;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgGlobalProvide6 = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 40,\n height: 40,\n fill: \"none\"\n}, props), /*#__PURE__*/React.createElement(\"mask\", {\n id: \"global-provide-6_svg__a\",\n width: 33,\n height: 32,\n x: 3,\n y: 5,\n maskUnits: \"userSpaceOnUse\",\n style: {\n maskType: \"luminance\"\n }\n}, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n d: \"M36 5.185H4V36h32z\"\n}))), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n stroke: \"#408BFC\",\n strokeWidth: 2,\n mask: \"url(#global-provide-6_svg__a)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20 34.815c7.856 0 14.223-6.368 14.223-14.222 0-7.855-6.367-14.223-14.222-14.223S5.779 12.738 5.779 20.593c0 7.854 6.367 14.222 14.222 14.222Z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n d: \"M19.487 11.111v9.91c0 .474.53.756.923.491l6.524-4.386\"\n}))));\nexport default SvgGlobalProvide6;","var _path, _g, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgGlobalProvide7 = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 40,\n height: 36,\n fill: \"none\"\n}, props), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#global-provide-7_svg__a)\"\n}, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"global-provide-7_svg__b\",\n width: 40,\n height: 36,\n x: 0,\n y: 0,\n maskUnits: \"userSpaceOnUse\",\n style: {\n maskType: \"luminance\"\n }\n}, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n d: \"M40 .5H0v35h40z\"\n}))), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#global-provide-7_svg__b)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#408BFC\",\n d: \"m32.768 1.413-5.282 8.534c-.31.5.122 1.132.696 1.016l5.02-1.013a.7.7 0 0 1 .262 0l5.021 1.013c.574.116 1.006-.516.696-1.016L33.9 1.413a.663.663 0 0 0-1.13 0M7.232 34.587l5.283-8.534c.31-.5-.123-1.132-.696-1.016L6.797 26.05a.7.7 0 0 1-.261 0l-5.021-1.014c-.573-.116-1.006.516-.696 1.017L6.1 34.587a.663.663 0 0 0 1.131 0\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#408BFC\",\n strokeLinecap: \"round\",\n strokeWidth: 2,\n d: \"M6.667 20.692V9.25c0-2.23 1.79-4.038 4-4.038H20M33.333 15.308v12.115c0 2.23-1.79 4.039-4 4.039H20\"\n})))), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"global-provide-7_svg__a\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n d: \"M0 .5h40v35H0z\"\n})))));\nexport default SvgGlobalProvide7;","import globalProvide1 from \"images/b2c/icons/global-provide-1.svg\";\nimport globalProvide2 from \"images/b2c/icons/global-provide-2.svg\";\nimport globalProvide3 from \"images/b2c/icons/global-provide-3.svg\";\nimport globalProvide4 from \"images/b2c/icons/global-provide-4.svg\";\nimport globalProvide5 from \"images/b2c/icons/global-provide-5.svg\";\nimport globalProvide6 from \"images/b2c/icons/global-provide-6.svg\";\nimport globalProvide7 from \"images/b2c/icons/global-provide-7.svg\";\nimport testimonial1 from \"images/b2c/global-testimonial-1.png\";\nimport testimonial2 from \"images/b2c/global-testimonial-2.png\";\n\nexport const providesData = [\n {\n Image: globalProvide1,\n title: \"Competitive rates\",\n text: \"Cost of talent is 30-70% lower than that of inhouse or remote talent in Europe\"\n },\n {\n Image: globalProvide2,\n title: \"Validated talent\",\n text: \"Talent is validated through tests and expert interviews to ensure right skills and culture fit\"\n },\n {\n Image: globalProvide3,\n title: \"Experts in what we do\",\n text: \"Fuzu has successfully matched over 150000 professionals to 2000+ businesses\"\n },\n {\n Image: globalProvide4,\n title: \"Fast delivery\",\n text: \"After initial scoping of your needs, Fuzu takes between 5-20 days to find the right match\"\n },\n {\n Image: globalProvide5,\n title: \"Relentless focus on value\",\n text: \"Fuzu supports and monitors the onboarding and on-the-job performance to ensure value\"\n },\n {\n Image: globalProvide6,\n title: \"Matching time zone\",\n text: \"English-speaking talent, working in a time zone +/- 2h from any location in Europe\"\n },\n {\n Image: globalProvide7,\n title: \"Flexibility\",\n text: \"If you are not satisfied, you can change your team at any point\"\n }\n];\n\nexport const hiringData = [\n {\n title: \"Scope\",\n text: \"Talk with our expert to scope your needs\"\n },\n {\n title: \"Match\",\n text: \"We find the talent with the right skills and culture fit\"\n },\n {\n title: \"Review\",\n text: \"You review and choose the perfect candidate\"\n },\n {\n title: \"Onboard\",\n text: \"We facilitate the onboarding to ensure success\"\n }\n];\n\nexport const fitData = [\n { text: \"You operate in English and work with international markets\" },\n { text: \"You want to reduce your talent and operating costs \" },\n { text: \"You need a partner who can help you scale fast\" },\n { text: \"You need a service provider who understands your culture\" }\n];\n\nexport const whatIsuzuData = [\n {\n title: \"We are a European company\",\n text: \"Fuzu is an EU based limited liability company with our headquarters based in Helsinki, Finland.\"\n },\n {\n title: \"A multinational team of professionals\",\n text: \"Fuzu has a multinational team with experience working with Nokia, Microsoft, Accenture, Bain & Co., IBM and United Nations.\"\n },\n {\n title: \"We helped more than 15M+ users and 2000+ employers\",\n text: \"Over the past few years, our platform helped find the right talent, land a job or learn a new skill for 15M + users and 2000+ employers.\"\n },\n {\n title: \"An AI-powered solution\",\n text: \"Our AI-powered talent development and employment solution attracts and validates talent using automated smart testing and expert reviews.\"\n }\n];\n\nexport const servicesTabs = { remote: \"remove\", outSourced: \"outSourced\" };\n\nexport const remoteFeatures = [\n {\n text: \"No upfront recruitment fee\"\n },\n {\n text: \"Contracts from 3 months and up\"\n },\n {\n text: \"Pick talent from pre-validated talent pool or let us know what you need\"\n },\n {\n text: \"We take care of the payroll and contracting as the Employer of Record\"\n },\n {\n text: \"We monitor performance and support you throughout engagement\"\n }\n];\n\nexport const outSourcedFeatures = [\n {\n text: \"No upfront recruitment fee\"\n },\n {\n text: \"Contracts from 3 months and up\"\n },\n {\n text: \"We take care of the payroll and contracting as the Employer of Record\"\n }\n];\n\nexport const outSourcedRoles = [\n {\n title: \"Data labeling team\",\n text: \"Build a labeling and annotation team, responsible for labeling user-generated content. Deliver high-quality training data sets for Machine Learning programs or other data labeling needs while following a pre-defined set of instructions.\"\n },\n {\n title: \"Customer success team\",\n text: \"Build an autonomous team and management structure to provide a high level of customer care. Resolve routine customer queries quickly and efficiently and align processes with client SLA criteria.\"\n }\n];\n\nexport const removeRoles = [\n {\n label: \"Sales and Marketing\",\n title: \"Lead Generator\",\n text: \"Identifies and assesses leads by segmenting and evaluating them based on your own criteria. Feeds high-quality leads to your sales team.\"\n },\n {\n label: \"Sales and Marketing\",\n title: \"Remote Sales Specialist\",\n text: \"Converts leads to sales through cold calling or remote meetings Provides reliable data on sales funnel performance.\"\n },\n {\n label: \"Sales and Marketing\",\n title: \"Market Researcher\",\n text: \"Supports business growth by conducting market research. Receives insights using online tools, consumer outreach, surveys and data analysis.\"\n },\n {\n label: \"Sales and Marketing\",\n title: \"Community manager\",\n text: \"Helps increase customer engagement by facilitating and catalyzing discussions, or by creating content that resonates with your audience.\"\n },\n {\n label: \"Customer Success\",\n title: \"Customer success specialist\",\n text: \"Provides customers with care & support via online and phone-based channels. Solves customer queries quickly and efficiently.\"\n },\n {\n label: \"Digital Content and Data\",\n title: \"Digital content specialist\",\n text: \"Creates copy and visuals for print or digital media, like magazines, ads or e-commerce websites.\"\n },\n {\n label: \"Digital Content and Data\",\n title: \"Data labeler\",\n text: \"Provides high-quality training data-sets for Machine Learning projects by labeling and annotating data.\"\n },\n {\n label: \"Admin and finance\",\n title: \"Virtual Assistant\",\n text: \"Helps with administrative tasks like answering emails, scheduling meetings and making travel arrangements.\"\n },\n {\n label: \"Admin and finance\",\n title: \"Financial specialist\",\n text: \"Helps manage the organization’s finances. Prepares financial statements, analyzes financial data and generates insights.\"\n },\n {\n label: \"Tech\",\n title: \"Front-end developer\",\n text: \"Converts UI designs and logic into a functioning user experience, excluding the backend logic.\"\n },\n {\n label: \"Tech\",\n title: \"Back-end developer\",\n text: \"Builds the underlying backend logic based on functional specification and data architecture.\"\n },\n {\n label: \"Tech\",\n title: \"QA engineer\",\n text: \"Identifies, logs and prioritizes bugs and sets structures and processes for manual and automated testing.\"\n }\n];\n\nexport const suggestsRoles = [\n {\n title: \"Sales and Marketing\",\n text: \"Remote sales specialists, Lead generators, Market researchers, Community managers\",\n name: \"salesAndMarketing\"\n },\n {\n title: \"Customer Success\",\n text: \"Customer success specialists\",\n name: \"customerSuccess\"\n },\n {\n title: \"Digital content and data\",\n text: \"Digital content specialists, Data labelers\",\n name: \"digitalContent\"\n },\n {\n title: \"Admin and finance\",\n text: \"Virtual assistants, financial specialists\",\n name: \"adminFinance\"\n },\n {\n title: \"Tech\",\n text: \"Front-end and Back-end developers, QA engineers\",\n name: \"tech\"\n }\n];\n\nexport const formInit = {\n email: \"\",\n name: \"\",\n phoneCode: \"\",\n phone: \"\",\n company: \"\",\n salesAndMarketing: false,\n customerSuccess: false,\n digitalContent: false,\n adminFinance: false,\n tech: false,\n country: \"\",\n about: \"\",\n count: \"\"\n};\n\nexport const defaultValidation = {\n email: { error: false },\n name: { error: false },\n country: { error: false },\n count: { error: false }\n};\n\nexport const testimonials = [\n {\n title: \"Save time for business development\",\n text: \"’Vinrian (Fuzu outstaffed expert) has saved us more than 20 hours a week, that we can dedicate to Business Development. That time is priceless!’\",\n name: \"Jinal Shah\",\n position: \"CEO, Flygkonsult 747, Sweden\",\n image: testimonial1\n },\n {\n title: \"Best talent available in the market\",\n text: \"’GIZ has been partnering with Fuzu for 4 years and counting. We take value in the deep database of potential talent available. The staff is always available to ensure that we receive the best solutions in the market. We couldn’t be more satisfied with our partnership with Fuzu’\",\n name: \"George Rugu\",\n position: \"Head of HR, GIZ\",\n image: testimonial2\n }\n];\n","export const defaultValidation = {\n email: { error: false },\n name: { error: false },\n careerName: { error: false },\n thank: { error: false }\n};\n","export const ARTICLES_FALLBACK = [\n {\n title: \"Loading\",\n background_image: \"none\",\n front_image: null,\n id: 0\n }\n];\n\nexport const ARTICLES_FUZU_APP = [\n {\n id: \"custom-fuzu-app\",\n type: \"customFuzuApp\"\n }\n];\n\nexport const customFuzuApp = \"customFuzuApp\";\n","export const applicationTypes = {\n applicationTypeFastApply: \"application_type_fast_apply\",\n fastApplyAssignmentsRequested: \"fast_apply_assignments_requested\",\n fastApplyAssignmentsCompeted: \"fast_apply_assignments_completed\",\n applicationTypeInternal: \"application_type_internal\",\n applicationTypeExternal: \"application_type_external\",\n fastApplyApplied: \"fast_apply_applied\"\n};\n","var _path, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgComm = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlnsXlink: \"http://www.w3.org/1999/xlink\",\n width: 24,\n height: 25,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"url(#comm_svg__a)\",\n d: \"M0 24.68h24v-24H0z\"\n})), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"pattern\", {\n id: \"comm_svg__a\",\n width: 1,\n height: 1,\n patternContentUnits: \"objectBoundingBox\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#comm_svg__b\",\n transform: \"scale(.01563)\"\n})), /*#__PURE__*/React.createElement(\"image\", {\n xlinkHref: \"data:image/png;base64,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\",\n id: \"comm_svg__b\",\n width: 64,\n height: 64\n}))));\nexport default SvgComm;","var _path, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgCup = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlnsXlink: \"http://www.w3.org/1999/xlink\",\n width: 24,\n height: 25,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"url(#cup_svg__a)\",\n d: \"M0 24.68h24v-24H0z\"\n})), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"pattern\", {\n id: \"cup_svg__a\",\n width: 1,\n height: 1,\n patternContentUnits: \"objectBoundingBox\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#cup_svg__b\",\n transform: \"scale(.01563)\"\n})), /*#__PURE__*/React.createElement(\"image\", {\n xlinkHref: \"data:image/png;base64,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\",\n id: \"cup_svg__b\",\n width: 64,\n height: 64\n}))));\nexport default SvgCup;","var _path, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgGraph = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlnsXlink: \"http://www.w3.org/1999/xlink\",\n width: 24,\n height: 25,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"url(#graph_svg__a)\",\n d: \"M0 24.68h24v-24H0z\"\n})), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"pattern\", {\n id: \"graph_svg__a\",\n width: 1,\n height: 1,\n patternContentUnits: \"objectBoundingBox\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#graph_svg__b\",\n transform: \"scale(.01563)\"\n})), /*#__PURE__*/React.createElement(\"image\", {\n xlinkHref: \"data:image/png;base64,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\",\n id: \"graph_svg__b\",\n width: 64,\n height: 64\n}))));\nexport default SvgGraph;","var _path, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgHouse = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlnsXlink: \"http://www.w3.org/1999/xlink\",\n width: 24,\n height: 25,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"url(#house_svg__a)\",\n d: \"M0 24.68h24v-24H0z\"\n})), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"pattern\", {\n id: \"house_svg__a\",\n width: 1,\n height: 1,\n patternContentUnits: \"objectBoundingBox\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#house_svg__b\",\n transform: \"scale(.01563)\"\n})), /*#__PURE__*/React.createElement(\"image\", {\n xlinkHref: \"data:image/png;base64,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\",\n id: \"house_svg__b\",\n width: 64,\n height: 64\n}))));\nexport default SvgHouse;","var _path, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgCool = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlnsXlink: \"http://www.w3.org/1999/xlink\",\n width: 24,\n height: 25,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"url(#cool_svg__a)\",\n d: \"M0 24.68h24v-24H0z\"\n})), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"pattern\", {\n id: \"cool_svg__a\",\n width: 1,\n height: 1,\n patternContentUnits: \"objectBoundingBox\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#cool_svg__b\",\n transform: \"scale(.01563)\"\n})), /*#__PURE__*/React.createElement(\"image\", {\n xlinkHref: \"data:image/png;base64,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\",\n id: \"cool_svg__b\",\n width: 64,\n height: 64\n}))));\nexport default SvgCool;","var _path, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgFire = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlnsXlink: \"http://www.w3.org/1999/xlink\",\n width: 24,\n height: 25,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"url(#fire_svg__a)\",\n d: \"M0 24.68h24v-24H0z\"\n})), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"pattern\", {\n id: \"fire_svg__a\",\n width: 1,\n height: 1,\n patternContentUnits: \"objectBoundingBox\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#fire_svg__b\",\n transform: \"scale(.01563)\"\n})), /*#__PURE__*/React.createElement(\"image\", {\n xlinkHref: \"data:image/png;base64,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\",\n id: \"fire_svg__b\",\n width: 64,\n height: 64\n}))));\nexport default SvgFire;","var _path, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgLamp = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlnsXlink: \"http://www.w3.org/1999/xlink\",\n width: 24,\n height: 25,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"url(#lamp_svg__a)\",\n d: \"M0 24.68h24v-24H0z\"\n})), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"pattern\", {\n id: \"lamp_svg__a\",\n width: 1,\n height: 1,\n patternContentUnits: \"objectBoundingBox\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#lamp_svg__b\",\n transform: \"scale(.01563)\"\n})), /*#__PURE__*/React.createElement(\"image\", {\n xlinkHref: \"data:image/png;base64,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\",\n id: \"lamp_svg__b\",\n width: 64,\n height: 64\n}))));\nexport default SvgLamp;","var _path, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgPerson = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlnsXlink: \"http://www.w3.org/1999/xlink\",\n width: 24,\n height: 25,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"url(#person_svg__a)\",\n d: \"M0 24.68h24v-24H0z\"\n})), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"pattern\", {\n id: \"person_svg__a\",\n width: 1,\n height: 1,\n patternContentUnits: \"objectBoundingBox\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#person_svg__b\",\n transform: \"scale(.01563)\"\n})), /*#__PURE__*/React.createElement(\"image\", {\n xlinkHref: \"data:image/png;base64,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\",\n id: \"person_svg__b\",\n width: 64,\n height: 64\n}))));\nexport default SvgPerson;","var _path, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgRocket = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlnsXlink: \"http://www.w3.org/1999/xlink\",\n width: 24,\n height: 25,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"url(#rocket_svg__a)\",\n d: \"M0 24.68h24v-24H0z\"\n})), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"pattern\", {\n id: \"rocket_svg__a\",\n width: 1,\n height: 1,\n patternContentUnits: \"objectBoundingBox\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#rocket_svg__b\",\n transform: \"scale(.01563)\"\n})), /*#__PURE__*/React.createElement(\"image\", {\n xlinkHref: \"data:image/png;base64,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\",\n id: \"rocket_svg__b\",\n width: 64,\n height: 64\n}))));\nexport default SvgRocket;","var _path, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgStar = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlnsXlink: \"http://www.w3.org/1999/xlink\",\n width: 24,\n height: 25,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"url(#star_svg__a)\",\n d: \"M0 24.68h24v-24H0z\"\n})), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"pattern\", {\n id: \"star_svg__a\",\n width: 1,\n height: 1,\n patternContentUnits: \"objectBoundingBox\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#star_svg__b\",\n transform: \"scale(.01563)\"\n})), /*#__PURE__*/React.createElement(\"image\", {\n xlinkHref: \"data:image/png;base64,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\",\n id: \"star_svg__b\",\n width: 64,\n height: 64\n}))));\nexport default SvgStar;","import heroImageB2C from \"images/b2c/landing-page/heroImage.png\";\n\nimport howItWorks1 from \"images/b2c/landing-page/howItWorks1.png\";\nimport howItWorks2 from \"images/b2c/landing-page/howItWorks2.png\";\nimport howItWorks3 from \"images/b2c/landing-page/howItWorks3.png\";\n\nimport howItWorksBarona1 from \"images/b2c/landing-page/howItWorksBarona1.png\";\nimport howItWorksBarona2 from \"images/b2c/landing-page/howItWorksBarona2.png\";\nimport howItWorksBarona3 from \"images/b2c/landing-page/howItWorksBarona3.png\";\n\nimport howItWorksB2B_1 from \"images/b2b/landing-page/howItWorksB2B_1.png\";\nimport howItWorksB2B_2 from \"images/b2b/landing-page/howItWorksB2B_2.png\";\nimport howItWorksB2B_3 from \"images/b2b/landing-page/howItWorksB2B_3.png\";\nimport howItWorksB2B_4 from \"images/b2b/landing-page/howItWorksB2B_4.png\";\n\nimport infoSlideImage1 from \"images/b2b/landing-page/infoSlider/1.mp4\";\nimport infoSlideImage2 from \"images/b2b/landing-page/infoSlider/2.mp4\";\nimport infoSlideImage3 from \"images/b2b/landing-page/infoSlider/3.mp4\";\n\nimport testimonial1 from \"images/b2b/landing-page/testimonials/olaronke.jpeg\";\nimport testimonial3 from \"images/b2b/landing-page/testimonials/sarah.jpg\";\nimport testimonial4 from \"images/b2b/landing-page/testimonials/alastair.jpg\";\n\nimport Clock from \"images/b2c/landing-page/bullets/clock.svg\";\nimport Comm from \"images/b2c/landing-page/bullets/comm.svg\";\nimport Cup from \"images/b2c/landing-page/bullets/cup.svg\";\nimport Glass from \"images/b2c/landing-page/bullets/glass.svg\";\nimport Graph from \"images/b2c/landing-page/bullets/graph.svg\";\nimport House from \"images/b2c/landing-page/bullets/house.svg\";\nimport Letter from \"images/b2c/landing-page/bullets/letter.svg\";\nimport Cool from \"images/b2c/landing-page/bullets/cool.svg\";\nimport Fire from \"images/b2c/landing-page/bullets/fire.svg\";\nimport Lamp from \"images/b2c/landing-page/bullets/lamp.svg\";\nimport Person from \"images/b2c/landing-page/bullets/person.svg\";\nimport Rocket from \"images/b2c/landing-page/bullets/rocket.svg\";\nimport Star from \"images/b2c/landing-page/bullets/star.svg\";\n\nexport const testimonialsFuzu = [];\n\nexport const testimonials = {\n fuzu: [\n {\n id: 1,\n text: \"landing_fuzu.testimonials.sub-title_1\",\n videoID: \"H9S0jTYfen4\",\n author: \"landing_fuzu.testimonials.author_1\"\n },\n {\n id: 3,\n text: \"landing_fuzu.testimonials.sub-title_2\",\n videoID: \"09zWVDb0Pw4\",\n author: \"landing_fuzu.testimonials.author_2\"\n }\n ],\n barona: [\n {\n id: 4,\n text: \"landing.testimonials.sub-title_1\",\n videoID: \"lgaYWf8XMnI\",\n author: \"landing.testimonials.author_1\"\n },\n {\n id: 5,\n text: \"landing.testimonials.sub-title_2\",\n videoID: \"-tVfhCyYu54\",\n author: \"landing.testimonials.author_2\"\n }\n ]\n};\n\nexport const countries = [\n {\n name: \"Jobs in Africa\",\n slug: \"global\"\n },\n {\n name: \"Jobs in Kenya\",\n slug: \"kenya\"\n },\n {\n name: \"Jobs in Nigeria\",\n slug: \"nigeria\"\n },\n {\n name: \"Jobs in Uganda\",\n slug: \"uganda\"\n }\n];\n\nexport const countriesSelection = {\n b2b: [\n {\n name: \"pricing.hire_in_africa\",\n slug: \"global\"\n },\n {\n name: \"pricing.hire_in_kenya\",\n slug: \"kenya\"\n },\n {\n name: \"pricing.hire_in_nigeria\",\n slug: \"nigeria\"\n },\n {\n name: \"pricing.hire_in_uganda\",\n slug: \"uganda\"\n }\n ],\n b2c: [\n {\n name: \"landing.search.jobs_in_africa\",\n slug: \"global\"\n },\n {\n name: \"landing.search.jobs_in_kenya\",\n slug: \"kenya\"\n },\n {\n name: \"landing.search.jobs_in_nigeria\",\n slug: \"nigeria\"\n },\n {\n name: \"landing.search.jobs_in_uganda\",\n slug: \"uganda\"\n }\n ]\n};\n\nexport const globalAfrica = {\n id: \"global\",\n country_code: \"global\",\n name: \"Africa\"\n};\n\nexport const searchCountries = [\n { slug: \"/kenya/job\", name: \"landing.search.jobs_in_kenya\" },\n { slug: \"/nigeria/job\", name: \"landing.search.jobs_in_nigeria\" },\n { slug: \"/uganda/job\", name: \"landing.search.jobs_in_uganda\" }\n];\n\nexport const searchNigeriaCities = [\n { slug: \"/nigeria/job/lagos\", name: \"landing.search.jobs_in_lagos\" },\n { slug: \"/nigeria/job/abuja\", name: \"landing.search.jobs_in_abuja\" },\n { slug: \"/nigeria/job/ibadan\", name: \"landing.search.jobs_in_ibadan\" }\n];\n\nexport const searchKenyaCities = [\n { slug: \"/kenya/job/nairobi\", name: \"landing.search.jobs_in_nairobi\" },\n { slug: \"/kenya/job/mombasa\", name: \"landing.search.jobs_in_mombasa\" },\n { slug: \"/kenya/job/kisumu\", name: \"landing.search.jobs_in_kisumu\" }\n];\n\nexport const searchUgandaCities = [{ slug: \"/uganda/job/kampala\", name: \"landing.search.jobs_in_kampala\" }];\n\nexport const landing = {\n b2c: {\n heroSectionData: {\n title: \"Fuzu prepares/you for success\",\n text: \"Join millions of users and get personalised job recommendations, career guidance and new skills\",\n imageUrl: heroImageB2C\n },\n whatFuzuOffers: {\n slides: {\n fuzu: [\n {\n id: 1,\n title: \"5,000+\",\n subtitle: \"landing_fuzu.offers.sub-title_1\",\n items: [\n { icon: Glass, text: \"landing_fuzu.offers.description_1_point_1\" },\n { icon: Clock, text: \"landing_fuzu.offers.description_1_point_2\" },\n { icon: Letter, text: \"landing_fuzu.offers.description_1_point_3\" }\n ],\n action: { text: \"landing_fuzu.offers.button_1\", to: \"/job\" },\n imageUrl: howItWorks1,\n smImageHeight: 308,\n smImageWidth: 320,\n imageHeight: 486,\n imageWidth: 506,\n direction: \"\",\n alt: \"landing_fuzu.offers.image_alt_1\"\n },\n {\n id: 2,\n title: \"3,000+\",\n subtitle: \"landing_fuzu.offers.sub-title_2\",\n items: [\n { icon: Cup, text: \"landing_fuzu.offers.description_2_point_1\" },\n { icon: House, text: \"landing_fuzu.offers.description_2_point_2\" }\n ],\n action: { text: \"landing_fuzu.offers.button_2\", to: \"/learn\" },\n imageUrl: howItWorks3,\n smImageHeight: 265,\n smImageWidth: 320,\n imageHeight: 424,\n imageWidth: 513,\n direction: \"reverse\",\n alt: \"landing_fuzu.offers.image_alt_2\"\n },\n {\n id: 3,\n title: \"landing_fuzu.offers.title_3\",\n subtitle: \"landing_fuzu.offers.sub-title_3\",\n items: [\n { icon: Graph, text: \"landing_fuzu.offers.description_3_point_1\" },\n { icon: Comm, text: \"landing_fuzu.offers.description_3_point_2\" }\n ],\n action: { text: \"landing_fuzu.offers.button_3\", to: \"/forum\" },\n imageUrl: howItWorks2,\n smImageHeight: 308,\n smImageWidth: 320,\n imageHeight: 486,\n imageWidth: 506,\n direction: \"\",\n alt: \"landing_fuzu.offers.image_alt_3\"\n }\n ],\n barona: [\n {\n id: 1,\n title: \"landing.offers.title_1\",\n subtitle: \"landing.offers.sub-title_1\",\n items: [\n {\n text: \"landing.offers.description_1_point_1\"\n },\n {\n text: \"landing.offers.description_1_point_2\"\n }\n ],\n action: { text: \"landing.offers.button_1\", to: \"/login\" },\n imageUrl: howItWorksBarona1,\n smImageHeight: 308,\n smImageWidth: 320,\n imageHeight: 486,\n imageWidth: 506,\n direction: \"\",\n alt: \"landing.offersimage_alt_1\"\n },\n {\n id: 2,\n title: \"landing.offers.title_2\",\n subtitle: \"\",\n items: [\n {\n text: \"landing.offers.description_2_point_1\"\n },\n { text: \"landing.offers.description_2_point_2\" }\n ],\n action: {\n text: \"landing.offers.button_2\",\n to: \"https://www.koutsit.fi/en/products/how-to-land-a-job-in-the-nordics\",\n isAnchor: true\n },\n imageUrl: howItWorksBarona2,\n smImageHeight: 265,\n smImageWidth: 320,\n imageHeight: 424,\n imageWidth: 513,\n direction: \"reverse\",\n alt: \"landing.offers.image_alt_2\"\n },\n {\n id: 3,\n title: \"landing.offers.title_3\",\n subtitle: \"landing.offers.title_3\",\n items: [\n {\n text: \"landing.offers.description_3_point_1\"\n },\n {\n text: \"landing.offers.description_3_point_2\"\n }\n ],\n // action: { text: \"Learn about Barona\", to: \"/about\" },\n imageUrl: howItWorksBarona3,\n smImageHeight: 308,\n smImageWidth: 320,\n imageHeight: 486,\n imageWidth: 506,\n direction: \"\",\n alt: \"landing.offers.image_alt_3\"\n }\n ]\n },\n slidesNigeria: [\n {\n id: 1,\n title: \"Access 5,000+ new job opportunities every month\",\n subtitle: \"\",\n items: [\n {\n icon: Letter,\n text: \"Get job alerts about matching internships or management roles, remote work or online jobs\"\n },\n { icon: Clock, text: \"Apply for open vacancies in minutes using online CV\" },\n { icon: Rocket, text: \"Read tips and articles about interview questions and answers\" },\n { icon: Cool, text: \"Receive feedback on your applications\" }\n ],\n action: { text: \"Get a job now\", to: \"/job\" },\n imageUrl: howItWorks1,\n smImageHeight: 308,\n smImageWidth: 320,\n imageHeight: 486,\n imageWidth: 506,\n direction: \"\",\n alt: \"access thousands of jobs and vacancies and benefit from cv templates and interview support\"\n },\n {\n id: 2,\n title: \"Build skills demanded by the job market to improve your chances\",\n subtitle: \"\",\n items: [\n { icon: Lamp, text: \"Access hundreds of free and paid online courses\" },\n {\n icon: Cup,\n text: \"Get promoted, become an entrepreneur or start freelancing with Fuzu Career Advisors\"\n },\n {\n icon: Person,\n text: \"Build a resume based on CV templates or let a professional help you out with CV writing\"\n },\n { icon: House, text: \"Get inspired by thought-leaders and how they reach goals and recruit talent\" }\n ],\n action: { text: \"Start learning\", to: \"/learn\" },\n imageUrl: howItWorks3,\n smImageHeight: 265,\n smImageWidth: 320,\n imageHeight: 424,\n imageWidth: 513,\n direction: \"reverse\",\n alt: \"access hundreds of online courses, high quality CV samples and career advice to support lifelong learning\"\n },\n {\n id: 3,\n title: \"Join Africa’s fastest growing career network\",\n subtitle: \"\",\n items: [\n {\n icon: Star,\n text: \"For business leaders, experts, public servants, NGO specialists, recent graduates and skilled professionals\"\n },\n { icon: Comm, text: \"Network and grow together with likeminded professionals\" },\n { icon: Fire, text: \"Get advice and be inspired by senior experts\" },\n { icon: Glass, text: \"Learn about local and international career opportunities\" }\n ],\n action: { text: \"Join the community\", to: \"/forum\" },\n imageUrl: howItWorks2,\n smImageHeight: 308,\n smImageWidth: 320,\n imageHeight: 486,\n imageWidth: 506,\n direction: \"\",\n alt: \"get support and be inspired by Africa’s fastest growing career network for anyone from entry level to executives\"\n }\n ]\n }\n },\n b2b: {\n testimonialSliderData: {\n title: \"\",\n testimonials: [\n {\n id: 1,\n title: \"employers.testimonials.title_1\",\n text: \"employers.testimonials.description_1\",\n author: \"employers.testimonials.author_1\",\n imageUrl: testimonial1\n },\n {\n id: 2,\n title: \"employers.testimonials.title_2\",\n text: \"employers.testimonials.description_2\",\n author: \"employers.testimonials.author_2\",\n imageUrl: testimonial3\n },\n {\n id: 3,\n title: \"employers.testimonials.title_3\",\n text: \"employers.testimonials.description_3\",\n author: \"employers.testimonials.author_3\",\n imageUrl: testimonial4\n }\n ]\n },\n baronaPricing: {\n pricingPlans: [\n {\n selectedProductType: 0,\n type: \"free\",\n title: \"companies.pricing.price.title_1\",\n badge: \"companies.pricing.price.title_1\",\n tagline: \"companies.pricing.price.sub-title_1\",\n descr: [\n \"companies.pricing.price.description_1_point_1\",\n \"companies.pricing.price.description_1_point_2\",\n \"companies.pricing.price.description_1_point_3\",\n \"companies.pricing.price.description_1_point_4\",\n \"companies.pricing.price.description_1_point_5\"\n ],\n buttonText: \"companies.pricing.price.button_1\"\n },\n {\n selectedProductType: 1,\n type: \"starter\",\n title: \"companies.pricing.price.title_2\",\n badge: \"companies.pricing.price.title_2\",\n tagline: \"companies.pricing.price.sub-title_2\",\n descr: [\n \"companies.pricing.price.description_2_point_1\",\n \"companies.pricing.price.description_2_point_2\",\n \"companies.pricing.price.description_2_point_3\",\n \"companies.pricing.price.description_2_point_4\",\n \"companies.pricing.price.description_2_point_5\",\n \"companies.pricing.price.description_2_point_6\"\n ],\n buttonText: \"companies.pricing.price.button_2\"\n },\n {\n selectedProductType: 2,\n type: \"pro\",\n title: \"companies.pricing.price.title_3\",\n badge: \"companies.pricing.price.title_3\",\n tagline: \"companies.pricing.price.sub-title_3\",\n descr: [\n \"companies.pricing.price.description_3_point_1\",\n \"companies.pricing.price.description_3_point_2\",\n \"companies.pricing.price.description_3_point_3\",\n \"companies.pricing.price.description_3_point_4\",\n \"companies.pricing.price.description_3_point_5\"\n ],\n buttonText: \"companies.pricing.price.button_3\"\n }\n ]\n },\n pricing: {\n title: \"Fuzu features and plans\",\n subtitle:\n \"Small business, growth company, large enterprise or NGO - we have a solution for you Pay for 10 months and get 2 free with annual payment \",\n pricingPlans: [\n {\n type: \"starter\",\n title: \"pricing.price.starter.title\",\n badge: \"pricing.price.starter.badge\",\n tagline: \"pricing.price.starter.sub-title\",\n descr: [\n \"pricing.price.starter.description_1\",\n \"pricing.price.starter.description_2\",\n \"pricing.price.starter.description_3\",\n \"pricing.price.starter.description_4\",\n \"pricing.price.starter.description_5\"\n ],\n prices: {\n NG: {\n value: \"30,000 NGN\",\n per: \"pricing.per_job_post\"\n },\n KE: { value: \"6,000 KES\", per: \"pricing.per_job_post\" },\n UG: { value: \"150,000 UGX\", per: \"pricing.per_job_post\" },\n global: { value: \"60 USD\", per: \"pricing.per_job_post\" }\n },\n details: {\n title: \"pricing.price.starter.details_title\",\n tagline: \"pricing.fuzu_top_features\",\n NG: {\n descr: [\n \"pricing.details.talent_pool_description\",\n \"pricing.details.fuzu_analyses_description\",\n \"pricing.details.fuzu_exclusive_description\",\n \"pricing.details.filters_to_help_description\",\n \"pricing.details.link_fuzu_description\",\n \"pricing.details.world_class_description\",\n \"pricing.details.automatically_share_description\",\n \"pricing.details.automated_candidate_description\",\n \"pricing.details.aptitude_tests_description\",\n \"pricing.details.skill_tests_description\",\n \"pricing.details.based_personality_description\",\n \"pricing.details.automated_headhunting_description\",\n \"pricing.details.drive_traffic_description\",\n \"pricing.details.advanced_dedicated_account\",\n \"pricing.details.employer_brand_description\",\n \"pricing.details.advanced_headhunting_description\",\n \"pricing.details.advanced_collaboration_description\"\n ],\n pricings: [\n {\n title: \"pricing.price.starter.title\",\n name: \"Starter\",\n popular: false,\n tagline: \"pricing.price.starter.tag_line\",\n prices: { value: \"30,000 NGN\", per: \"pricing.job_post\", discount: \"\", removed: true },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.20_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false,\n false,\n false,\n false,\n false,\n false,\n false\n ]\n },\n {\n title: \"pricing.starter_gold\",\n name: \"Starter Gold\",\n popular: true,\n tagline: \"pricing.the_most_advanced\",\n prices: {\n value: \"60,000 NGN\",\n per: \"pricing.job_post\",\n removed: false\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.50_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false,\n false,\n false\n ]\n },\n {\n title: \"Starter Gold Unlimited\",\n name: \"Starter Gold Unlimited\",\n popular: true,\n tag: \"pricing.tag_new\",\n tagline: \"pricing.starter_gold_unlimited_tagline\",\n prices: { value: \"80,000 NGN\", per: \"pricing.job_post\" },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.50_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false,\n false\n ]\n },\n {\n title: \"Starter Gold Best Match\",\n name: \"Starter Gold Best Match\",\n popular: true,\n tag: \"pricing.tag_new\",\n tagline: \"pricing.starter_gold_best_match_tagline\",\n prices: { value: \"200,000 NGN\", per: \"pricing.per_role\" },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.50_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false\n ]\n }\n ]\n },\n KE: {\n descr: [\n \"pricing.details.talent_pool_description\",\n \"pricing.details.fuzu_analyses_description\",\n \"pricing.details.fuzu_exclusive_description\",\n \"pricing.details.filters_to_help_description\",\n \"pricing.details.link_fuzu_description\",\n \"pricing.details.world_class_description\",\n \"pricing.details.automatically_share_description\",\n \"pricing.details.automated_candidate_description\",\n \"pricing.details.aptitude_tests_description\",\n \"pricing.details.skill_tests_description\",\n \"pricing.details.based_personality_description\",\n \"pricing.details.automated_headhunting_description\",\n \"pricing.details.drive_traffic_description\",\n \"pricing.details.advanced_dedicated_account\",\n \"pricing.details.employer_brand_description\",\n \"pricing.details.advanced_headhunting_description\",\n \"pricing.details.advanced_collaboration_description\"\n ],\n pricings: [\n {\n title: \"pricing.price.starter.title\",\n name: \"Starter\",\n popular: false,\n tagline: \"pricing.price.starter.tag_line\",\n prices: { value: \"6,000 KES\", per: \"pricing.job_post\", discount: \"\", removed: true },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.20_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false,\n false,\n false,\n false,\n false,\n false,\n false\n ]\n },\n {\n title: \"pricing.starter_gold\",\n name: \"Starter Gold\",\n popular: true,\n gap: \"Popular\",\n tagline: \"pricing.the_most_advanced\",\n prices: { value: \"13,000 KES\", per: \"pricing.job_post\" },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.50_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false,\n false,\n false\n ]\n },\n {\n title: \"Starter Gold Unlimited\",\n name: \"Starter Gold Unlimited\",\n popular: true,\n tag: \"pricing.tag_new\",\n tagline: \"pricing.starter_gold_unlimited_tagline\",\n prices: { value: \"15,000 KES\", per: \"pricing.job_post\" },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.50_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false,\n false\n ]\n },\n {\n title: \"Starter Gold Best Match\",\n name: \"Starter Gold Best Match\",\n popular: true,\n tag: \"pricing.tag_new\",\n tagline: \"pricing.starter_gold_best_match_tagline\",\n prices: { value: \"30,000 KES\", per: \"pricing.job_post\" },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.50_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false\n ]\n }\n ]\n },\n UG: {\n descr: [\n \"pricing.details.talent_pool_description\",\n \"pricing.details.fuzu_analyses_description\",\n \"pricing.details.fuzu_exclusive_description\",\n \"pricing.details.filters_to_help_description\",\n \"pricing.details.link_fuzu_description\",\n \"pricing.details.world_class_description\",\n \"pricing.details.automatically_share_description\",\n \"pricing.details.automated_candidate_description\",\n \"pricing.details.aptitude_tests_description\",\n \"pricing.details.skill_tests_description\",\n \"pricing.details.based_personality_description\",\n \"pricing.details.automated_headhunting_description\",\n \"pricing.details.drive_traffic_description\",\n \"pricing.details.advanced_dedicated_account\",\n \"pricing.details.employer_brand_description\",\n \"pricing.details.advanced_headhunting_description\",\n \"pricing.details.advanced_collaboration_description\"\n ],\n pricings: [\n {\n title: \"pricing.price.starter.title\",\n name: \"Starter\",\n popular: false,\n tagline: \"pricing.price.starter.tag_line\",\n prices: { value: \"150,000 UGX\", per: \"pricing.job_post\", discount: \"\", removed: true },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.20_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false,\n false,\n false,\n false,\n false,\n false,\n false\n ]\n },\n {\n title: \"pricing.starter_gold\",\n name: \"Starter Gold\",\n popular: true,\n tagline: \"pricing.the_most_advanced\",\n prices: {\n value: \"300,000 UGX\",\n per: \"pricing.per_job_post\",\n discount: \"\"\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.50_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false,\n false,\n false\n ]\n },\n {\n title: \"Starter Gold Unlimited\",\n name: \"Starter Gold Unlimited\",\n popular: true,\n tag: \"pricing.tag_new\",\n tagline: \"pricing.starter_gold_unlimited_tagline\",\n prices: { value: \"350,000 UGX\", per: \"pricing.job_post\" },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.50_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false,\n false\n ]\n },\n {\n title: \"Starter Gold Best Match\",\n name: \"Starter Gold Best Match\",\n popular: true,\n tag: \"pricing.tag_new\",\n tagline: \"pricing.starter_gold_best_match_tagline\",\n prices: { value: \"750,000 UGX\", per: \"pricing.job_post\" },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.50_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false\n ]\n }\n ]\n },\n global: {\n descr: [\n \"pricing.details.talent_pool_description\",\n \"pricing.details.fuzu_analyses_description\",\n \"pricing.details.fuzu_exclusive_description\",\n \"pricing.details.filters_to_help_description\",\n \"pricing.details.link_fuzu_description\",\n \"pricing.details.world_class_description\",\n \"pricing.details.automatically_share_description\",\n \"pricing.details.automated_candidate_description\",\n \"pricing.details.aptitude_tests_description\",\n \"pricing.details.skill_tests_description\",\n \"pricing.details.based_personality_description\",\n \"pricing.details.automated_headhunting_description\",\n \"pricing.details.drive_traffic_description\",\n \"pricing.details.advanced_dedicated_account\",\n \"pricing.details.employer_brand_description\",\n \"pricing.details.advanced_headhunting_description\",\n \"pricing.details.advanced_collaboration_description\"\n ],\n pricings: [\n {\n title: \"pricing.price.starter.title\",\n name: \"Starter\",\n popular: false,\n tagline: \"pricing.price.starter.tag_line\",\n prices: { value: \"60 USD\", per: \"pricing.job_post\" },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.20_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false,\n false,\n false,\n false,\n false,\n false\n ]\n },\n {\n title: \"pricing.starter_gold\",\n name: \"Starter Gold\",\n tag: \"Popular\",\n popular: true,\n tagline: \"pricing.the_most_advanced\",\n prices: { value: \"130 USD\", per: \"pricing.job_post\" },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.50_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false,\n false,\n false\n ]\n },\n {\n title: \"Starter Gold Unlimited\",\n name: \"Starter Gold Unlimited\",\n popular: true,\n tag: \"pricing.tag_new\",\n tagline: \"pricing.starter_gold_unlimited_tagline\",\n prices: { value: \"150 USD\", per: \"pricing.job_post\" },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.50_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false,\n false\n ]\n },\n {\n title: \"Starter Gold Best Match\",\n name: \"Starter Gold Best Match\",\n popular: true,\n tag: \"pricing.tag_new\",\n tagline: \"pricing.starter_gold_best_match_tagline\",\n prices: { value: \"300 USD\", per: \"pricing.job_post\" },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.1_active_job\",\n ordinary: \"pricing.post\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.50_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n false,\n false\n ]\n }\n ]\n }\n },\n terms: []\n },\n {\n type: \"pro\",\n title: \"pricing.price.pro.title\",\n badge: \"pricing.price.pro.badge\",\n tagline: \"pricing.price.pro.sub-title\",\n descr: [\n \"pricing.price.pro.description_1\",\n \"pricing.price.pro.description_2\",\n \"pricing.price.pro.description_3\",\n \"pricing.price.pro.description_4\",\n \"pricing.price.pro.description_5\"\n ],\n prices: {\n NG: {\n value: \"110,000 NGN\",\n per: \"pricing.per_month\"\n },\n KE: { value: \"35,000 KES\", per: \"pricing.per_month\" },\n UG: { value: \"800,000 UGX\", per: \"pricing.per_month\" },\n global: { value: \"300 USD\", per: \"pricing.per_month\" }\n },\n details: {\n title: \"pricing.price.pro.details_title\",\n tagline: \"pricing.price.pro.tag_line\",\n NG: {\n descr: [\n \"pricing.details.talent_pool_description\",\n \"pricing.details.fuzu_analyses_description\",\n \"pricing.details.fuzu_exclusive_description\",\n \"pricing.details.filters_to_help_description\",\n \"pricing.details.link_fuzu_description\",\n \"pricing.details.world_class_description\",\n \"pricing.details.automatically_share_description\",\n \"pricing.details.automated_candidate_description\",\n \"pricing.details.aptitude_tests_description\",\n \"pricing.details.skill_tests_description\",\n \"pricing.details.based_personality_description\",\n \"pricing.details.automated_headhunting_description\",\n \"pricing.details.employer_brand_description\",\n \"pricing.details.advanced_headhunting_description\",\n \"pricing.details.drive_traffic_description\",\n \"pricing.details.hire_across_description\",\n \"pricing.details.multi_country_description\",\n \"pricing.details.help_with_job_description\"\n ],\n pricings: [\n {\n title: \"pricing.growth\",\n name: \"Growth\",\n popular: true,\n tagline: \"pricing.tech_solutions\",\n prices: {\n value: \"110,000 NGN\",\n per: \"pricing.month\",\n removed: false\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.5_active_job\",\n ordinary: \"pricing.posts\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.300_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\"\n ]\n },\n {\n title: \"pricing.premium\",\n name: \"Premium\",\n popular: true,\n tag: \"Best value\",\n tagline: \"pricing.build_for_africa\",\n prices: {\n value: \"260,000 NGN\",\n per: \"pricing.month\",\n discount: \"\",\n removed: false\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.active_job_posts\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.1000_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\"\n ]\n },\n {\n title: \"Premium Unlimited\",\n name: \"Premium Unlimited\",\n popular: true,\n isNotShowPopularText: true,\n tagline: \"pricing.premium_unlimited_tagline\",\n prices: {\n value: \"350,000 NGN\",\n per: \"pricing.per_month\",\n discount: \"\",\n removed: false\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.active_job_posts\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.1000_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\"\n ]\n }\n ]\n },\n KE: {\n descr: [\n \"pricing.details.talent_pool_description\",\n \"pricing.details.fuzu_analyses_description\",\n \"pricing.details.fuzu_exclusive_description\",\n \"pricing.details.filters_to_help_description\",\n \"pricing.details.link_fuzu_description\",\n \"pricing.details.world_class_description\",\n \"pricing.details.automatically_share_description\",\n \"pricing.details.automated_candidate_description\",\n \"pricing.details.aptitude_tests_description\",\n \"pricing.details.skill_tests_description\",\n \"pricing.details.based_personality_description\",\n \"pricing.details.automated_headhunting_description\",\n \"pricing.details.employer_brand_description\",\n \"pricing.details.advanced_headhunting_description\",\n \"pricing.details.advanced_collaboration_description\",\n \"pricing.details.drive_traffic_description\",\n \"pricing.details.hire_across_description\",\n \"pricing.details.multi_country_description\",\n \"pricing.details.help_with_job_description\"\n ],\n pricings: [\n {\n title: \"pricing.growth\",\n name: \"Growth\",\n popular: true,\n tagline: \"pricing.tech_solutions\",\n prices: {\n value: \"35,000 KES\",\n per: \"pricing.month\",\n discount: \"\",\n helperText: \"pricing.pay_for_9_months\"\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.5_active_job\",\n ordinary: \"pricing.posts\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.300_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\"\n ]\n },\n {\n title: \"pricing.premium\",\n name: \"Premium\",\n popular: true,\n tag: \"Best value\",\n tagline: \"pricing.build_for_africa\",\n prices: {\n value: \"60,000 KES\",\n per: \"pricing.month\",\n helperText: \"pricing.pay_for_9_months\",\n discount: \"\"\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.active_job_posts\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.1000_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\"\n ]\n },\n {\n title: \"Premium Unlimited\",\n name: \"Premium Unlimited\",\n popular: true,\n isNotShowPopularText: true,\n tagline: \"pricing.premium_unlimited_tagline\",\n prices: {\n value: \"70,000 KES\",\n per: \"pricing.per_month\",\n discount: \"\",\n removed: false,\n helperText: \"pricing.pay_for_9_months\"\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.active_job_posts\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.1000_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\"\n ]\n }\n ]\n },\n UG: {\n descr: [\n \"pricing.details.talent_pool_description\",\n \"pricing.details.fuzu_analyses_description\",\n \"pricing.details.fuzu_exclusive_description\",\n \"pricing.details.filters_to_help_description\",\n \"pricing.details.link_fuzu_description\",\n \"pricing.details.world_class_description\",\n \"pricing.details.automatically_share_description\",\n \"pricing.details.automated_candidate_description\",\n \"pricing.details.aptitude_tests_description\",\n \"pricing.details.skill_tests_description\",\n \"pricing.details.based_personality_description\",\n \"pricing.details.automated_headhunting_description\",\n \"pricing.details.employer_brand_description\",\n \"pricing.details.advanced_headhunting_description\",\n \"pricing.details.advanced_collaboration_description\",\n \"pricing.details.drive_traffic_description\",\n \"pricing.details.hire_across_description\",\n \"pricing.details.multi_country_description\",\n \"pricing.details.help_with_job_description\"\n ],\n pricings: [\n {\n title: \"pricing.growth\",\n name: \"Growth\",\n popular: true,\n tagline: \"pricing.tech_solutions\",\n prices: {\n value: \"800,000 UGX\",\n per: \"pricing.per_month\",\n discount: \"\",\n helperText: \"pricing.pay_for_9_months_and_get_free_1\"\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.5_active_job\",\n ordinary: \"pricing.posts\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.300_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\"\n ]\n },\n {\n title: \"pricing.premium\",\n name: \"Premium\",\n popular: true,\n tag: \"Best value\",\n tagline: \"pricing.build_for_africa\",\n prices: {\n value: \"1.25M UGX\",\n per: \"pricing.per_month\",\n discount: \"\",\n helperText: \"pricing.contact_us_and_get_3_free\"\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.active_job_posts\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.1000_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\"\n ]\n },\n {\n title: \"Premium Unlimited\",\n name: \"Premium Unlimited\",\n popular: true,\n isNotShowPopularText: true,\n tagline: \"pricing.premium_unlimited_tagline\",\n prices: {\n value: \"1.4M UGX\",\n per: \"pricing.per_month\",\n discount: \"\",\n helperText: \"pricing.contact_us_and_get_3_free\",\n removed: false\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.active_job_posts\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.1000_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\"\n ]\n }\n ]\n },\n global: {\n descr: [\n \"pricing.details.talent_pool_description\",\n \"pricing.details.fuzu_analyses_description\",\n \"pricing.details.fuzu_exclusive_description\",\n \"pricing.details.filters_to_help_description\",\n \"pricing.details.link_fuzu_description\",\n \"pricing.details.world_class_description\",\n \"pricing.details.automatically_share_description\",\n \"pricing.details.automated_candidate_description\",\n \"pricing.details.aptitude_tests_description\",\n \"pricing.details.skill_tests_description\",\n \"pricing.details.based_personality_description\",\n \"pricing.details.automated_headhunting_description\",\n \"pricing.details.employer_brand_description\",\n \"pricing.details.advanced_headhunting_description\",\n \"pricing.details.advanced_collaboration_description\",\n \"pricing.details.drive_traffic_description\",\n \"pricing.details.hire_across_description\",\n \"pricing.details.multi_country_description\",\n \"pricing.details.help_with_job_description\"\n ],\n pricings: [\n {\n title: \"pricing.growth\",\n name: \"Growth\",\n popular: true,\n tagline: \"pricing.tech_solutions\",\n prices: {\n value: \"300 USD\",\n per: \"pricing.month\",\n discount: \"\",\n helperText: \"pricing.pay_for_9_months\"\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.5_active_job\",\n ordinary: \"pricing.posts\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.300_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\"\n ]\n },\n {\n title: \"pricing.premium\",\n name: \"Premium\",\n popular: true,\n tag: \"Best value\",\n tagline: \"pricing.build_for_africa\",\n prices: {\n value: \"500 USD\",\n per: \"pricing.month\",\n discount: \"\",\n helperText: \"pricing.pay_for_9_months\"\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.active_job_posts\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.1000_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n false,\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\"\n ]\n },\n {\n title: \"Premium Unlimited\",\n name: \"Premium Unlimited\",\n popular: true,\n isNotShowPopularText: true,\n tagline: \"pricing.premium_unlimited_tagline\",\n prices: {\n value: \"600 USD\",\n per: \"pricing.per_month\",\n helperText: \"pricing.pay_for_9_months\",\n discount: \"\",\n removed: false\n },\n terms: [\n {\n name: \"job\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.active_job_posts\"\n }\n },\n {\n name: \"cv\",\n label: {\n bold: \"pricing.unlimited\",\n ordinary: \"pricing.cv_views\"\n }\n },\n {\n name: \"contact\",\n label: {\n bold: \"pricing.1000_contact_details\",\n ordinary: \"pricing.month\"\n }\n }\n ],\n actives: [\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n true,\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\",\n \"pricing.at_an_additional_cost\"\n ]\n }\n ]\n }\n },\n terms: []\n },\n {\n type: \"elite\",\n title: \"pricing.price.elite.title\",\n badge: \"pricing.price.elite.badge\",\n tagline: \"pricing.price.elite.sub-title\",\n descr: [\n \"pricing.price.elite.description_1\",\n \"pricing.price.elite.description_2\",\n \"pricing.price.elite.description_3\",\n \"pricing.price.elite.description_4\",\n \"pricing.price.elite.description_5\"\n ],\n prices: {\n NG: { value: \"540,000 NGN\", per: \"pricing.per_hire\" },\n KE: { value: \"70,000 KES\", per: \"pricing.per_hire\" },\n UG: { value: \"1.6 million UGX\", per: \"pricing.per_hire\" },\n global: { value: \"600 USD\", per: \"pricing.per_hire\" }\n },\n details: {\n NG: {\n descr: {\n title: \"pricing.elite_details.title\",\n tagline: \"pricing.elite_details.tagline\",\n disclaimer: \"First deal discounts apply!\",\n section: [\n {\n title: \"pricing.elite_details.fastest_growing\",\n taglines: [\"pricing.elite_details.instant_access\", \"pricing.elite_details.over_candidates\"]\n },\n {\n title: \"pricing.elite_details.leading_recruitment\",\n taglines: [\n \"pricing.elite_details.embedded_psychometric\",\n \"pricing.elite_details.seamless_collaboration\"\n ]\n },\n {\n title: \"pricing.elite_details.internationally_experienced\",\n taglines: [\"pricing.elite_details.ground_experts\", \"pricing.elite_details.experience_recruiting\"]\n }\n ],\n eliteSection: {\n title: \"pricing.elite_details.elite\",\n tagline: \"pricing.elite_details.section.tagline\",\n descr: [\n \"pricing.elite_details.section.vetted_and_interviewed\",\n \"pricing.elite_details.section.visibility_at_each\",\n \"pricing.elite_details.section.africa_leading\",\n \"pricing.elite_details.section.all_the_power\",\n \"pricing.elite_details.section.results_guaranteed\"\n ]\n },\n levelSection: [\n {\n title: \"pricing.elite_details.level.hire_lead\",\n tagline: \"pricing.elite_details.level.hire_lead_tagline_nigeria\",\n value: \"75,000 NGN + Success Fee\",\n additional: \"pricing.elite_details.commitment_10_percent\",\n buttonText: \"pricing.elite_details.level.hire_lead_button\"\n },\n {\n title: \"pricing.elite_details.level.tech_hires\",\n tagline: \"pricing.elite_details.level.tech_hires_tagline_nigeria\",\n value: \"75,000 NGN + Success Fee\",\n additional: \"pricing.elite_details.commitment_10_percent\",\n buttonText: \"pricing.elite_details.level.tech_hires_button\"\n },\n {\n title: \"pricing.elite_details.level.executive_search\",\n tagline: \"pricing.elite_details.level.executive_search_tagline_nigeria\",\n value: \"100,000 NGN + Success Fee\",\n additional: \"pricing.elite_details.commitment_13_percent\",\n buttonText: \"pricing.elite_details.level.executive_search_button\"\n }\n ]\n },\n pricings: [\n { name: \"pricing.elite_details.level.hire_junior_button\", value: \"169,900 NGN\", additional: \"\" },\n { name: \"pricing.elite_details.level.hire_mid_level_button\", value: \"269,900 NGN\", additional: \"\" },\n {\n name: \"pricing.elite_details.level.hire_lead_button\",\n value: \"pricing.elite_details.level.tech_hires_value_3\"\n // additional: \"+NGN 59K\"\n },\n {\n name: \"pricing.elite_details.level.executive_search_button\",\n value: \"pricing.elite_details.level.executive_search_value_3\"\n // additional: \"+NGN 99K\"\n }\n ]\n },\n KE: {\n descr: {\n title: \"pricing.elite_details.title\",\n tagline: \"pricing.elite_details.tagline\",\n section: [\n {\n title: \"pricing.elite_details.fastest_growing\",\n taglines: [\"pricing.elite_details.instant_access\", \"pricing.elite_details.over_candidates\"]\n },\n {\n title: \"pricing.elite_details.leading_recruitment\",\n taglines: [\n \"pricing.elite_details.embedded_psychometric\",\n \"pricing.elite_details.seamless_collaboration\"\n ]\n },\n {\n title: \"pricing.elite_details.internationally_experienced\",\n taglines: [\"pricing.elite_details.ground_experts\", \"pricing.elite_details.experience_recruiting\"]\n }\n ],\n eliteSection: {\n title: \"pricing.elite_details.elite\",\n tagline: \"pricing.elite_details.section.tagline\",\n descr: [\n \"pricing.elite_details.section.vetted_and_interviewed\",\n \"pricing.elite_details.section.visibility_at_each\",\n \"pricing.elite_details.section.africa_leading\",\n \"pricing.elite_details.section.all_the_power\",\n \"pricing.elite_details.section.results_guaranteed\"\n ]\n },\n levelSection: [\n {\n title: \"pricing.elite_details.level.junior_professional\",\n tagline: \"pricing.elite_details.level.junior_professional_tagline_kenya\",\n value: \"KES 70,000\",\n additional: \"pricing.elite_details.service_fee\",\n buttonText: \"pricing.elite_details.level.hire_junior_button\"\n },\n {\n title: \"pricing.elite_details.level.hire_lead\",\n tagline: \"pricing.elite_details.level.hire_lead_tagline_kenya\",\n value: \"30,000 KES + Success Fee\",\n additional: \"pricing.elite_details.community_fee_1_month\",\n buttonText: \"pricing.elite_details.level.hire_lead_button\"\n },\n {\n title: \"pricing.elite_details.level.tech_hires\",\n tagline: \"pricing.elite_details.level.tech_hires_tagline_kenya\",\n value: \"40,000 KES + Success Fee\",\n additional: \"pricing.elite_details.community_fee_1_25_month\",\n buttonText: \"pricing.elite_details.level.tech_hires_button\"\n },\n {\n title: \"pricing.elite_details.level.executive_search\",\n tagline: \"pricing.elite_details.level.executive_search_tagline_kenya\",\n value: \"60,000 KES + Success Fee\",\n additional: \"pricing.elite_details.community_fee_1_5_month\",\n buttonText: \"pricing.elite_details.level.executive_search_button\"\n }\n ]\n },\n pricings: [\n { name: \"pricing.elite_details.level.hire_junior_button\", value: \"39,900 KES\", additional: \"\" },\n { name: \"pricing.elite_details.level.hire_mid_level_button\", value: \"54,900 KES\", additional: \"\" },\n {\n name: \"pricing.elite_details.level.hire_lead_button\",\n value: \"pricing.elite_details.level.hire_lead_value\"\n // additional: \"+KES 15K\"\n },\n {\n name: \"pricing.elite_details.level.executive_search_button\",\n value: \"pricing.elite_details.level.executive_search_value\"\n // additional: \"+KES 20K\"\n }\n ]\n },\n UG: {\n descr: {\n title: \"pricing.elite_details.title\",\n tagline: \"pricing.elite_details.tagline\",\n section: [\n {\n title: \"pricing.elite_details.fastest_growing\",\n taglines: [\"pricing.elite_details.instant_access\", \"pricing.elite_details.over_candidates\"]\n },\n {\n title: \"pricing.elite_details.leading_recruitment\",\n taglines: [\n \"pricing.elite_details.embedded_psychometric\",\n \"pricing.elite_details.seamless_collaboration\"\n ]\n },\n {\n title: \"pricing.elite_details.internationally_experienced\",\n taglines: [\"pricing.elite_details.ground_experts\", \"pricing.elite_details.experience_recruiting\"]\n }\n ],\n eliteSection: {\n title: \"pricing.elite_details.elite\",\n tagline: \"pricing.elite_details.section.tagline\",\n descr: [\n \"pricing.elite_details.section.vetted_and_interviewed\",\n \"pricing.elite_details.section.visibility_at_each\",\n \"pricing.elite_details.section.africa_leading\",\n \"pricing.elite_details.section.all_the_power\",\n \"pricing.elite_details.section.results_guaranteed\"\n ]\n },\n levelSection: [\n {\n title: \"pricing.elite_details.level.junior_professional\",\n tagline: \"pricing.elite_details.level.junior_professional_tagline_uganda\",\n value: \"1.6 million UGX\",\n additional: \"pricing.elite_details.service_fee\",\n buttonText: \"pricing.elite_details.level.hire_junior_button\"\n },\n {\n title: \"pricing.elite_details.level.hire_lead\",\n tagline: \"pricing.elite_details.level.hire_lead_tagline_uganda\",\n value: \"700,000 UGX + Success Fee\",\n additional: \"pricing.elite_details.community_fee_1_month\",\n buttonText: \"pricing.elite_details.level.hire_lead_button\"\n },\n {\n title: \"pricing.elite_details.level.tech_hires\",\n tagline: \"pricing.elite_details.level.tech_hires_tagline_uganda\",\n value: \"800,000 UGX + Success Fee\",\n additional: \"pricing.elite_details.community_fee_1_25_month\",\n buttonText: \"pricing.elite_details.level.tech_hires_button\"\n },\n {\n title: \"pricing.elite_details.level.executive_search\",\n tagline: \"pricing.elite_details.level.executive_search_tagline_uganda\",\n value: \"1 million UGX + Success Fee\",\n additional: \"pricing.elite_details.community_fee_1_5_month\",\n buttonText: \"pricing.elite_details.level.executive_search_button\"\n }\n ]\n },\n pricings: [\n { name: \"pricing.elite_details.level.hire_junior_button\", value: \"1,200,000 UGX\", additional: \"\" },\n { name: \"pricing.elite_details.level.hire_mid_level_button\", value: \"1,850,000 UGX\", additional: \"\" },\n {\n name: \"pricing.elite_details.level.hire_lead_button\",\n value: \"pricing.elite_details.level.hire_lead_value\"\n // additional: \"+ UGX 350K\"\n },\n {\n name: \"pricing.elite_details.level.executive_search_button\",\n value: \"pricing.elite_details.level.executive_search_value\"\n // additional: \"+ UGX 500K\"\n }\n ]\n },\n global: {\n descr: {\n title: \"pricing.elite_details.title\",\n tagline: \"pricing.elite_details.tagline\",\n section: [\n {\n title: \"pricing.elite_details.fastest_growing\",\n taglines: [\"pricing.elite_details.instant_access\", \"pricing.elite_details.over_candidates\"]\n },\n {\n title: \"pricing.elite_details.leading_recruitment\",\n taglines: [\n \"pricing.elite_details.embedded_psychometric\",\n \"pricing.elite_details.seamless_collaboration\"\n ]\n },\n {\n title: \"pricing.elite_details.internationally_experienced\",\n taglines: [\"pricing.elite_details.ground_experts\", \"pricing.elite_details.experience_recruiting\"]\n }\n ],\n eliteSection: {\n title: \"pricing.elite_details.elite\",\n tagline: \"pricing.elite_details.section.tagline\",\n descr: [\n \"pricing.elite_details.section.vetted_and_interviewed\",\n \"pricing.elite_details.section.visibility_at_each\",\n \"pricing.elite_details.section.africa_leading\",\n \"pricing.elite_details.section.all_the_power\",\n \"pricing.elite_details.section.results_guaranteed\"\n ]\n },\n levelSection: [\n {\n title: \"pricing.elite_details.level.junior_professional\",\n tagline: \"pricing.elite_details.level.junior_professional_tagline_global\",\n value: \"600 USD\",\n additional: \"pricing.elite_details.service_fee\",\n buttonText: \"pricing.elite_details.level.hire_junior_button\"\n },\n {\n title: \"pricing.elite_details.level.hire_lead\",\n tagline: \"pricing.elite_details.level.hire_lead_tagline_global\",\n value: \"250 USD + Success Fee\",\n additional: \"pricing.elite_details.community_fee_1_month\",\n buttonText: \"pricing.elite_details.level.hire_lead_button\"\n },\n {\n title: \"pricing.elite_details.level.tech_hires\",\n tagline: \"pricing.elite_details.level.tech_hires_tagline_global\",\n value: \"350 USD + Success Fee\",\n additional: \"pricing.elite_details.community_fee_1_25_month\",\n buttonText: \"pricing.elite_details.level.tech_hires_button\"\n },\n {\n title: \"pricing.elite_details.level.executive_search\",\n tagline: \"pricing.elite_details.level.executive_search_tagline_global\",\n value: \"500 USD + Success Fee\",\n additional: \"pricing.elite_details.community_fee_1_5_month\",\n buttonText: \"pricing.elite_details.level.executive_search_button\"\n }\n ]\n },\n pricings: [\n { name: \"pricing.elite_details.level.hire_junior_button\", value: \"400 USD\", additional: \"\" },\n { name: \"pricing.elite_details.level.hire_mid_level_button\", value: \"550 USD\", additional: \"\" },\n {\n name: \"pricing.elite_details.level.hire_lead_button\",\n value: \"pricing.elite_details.level.hire_lead_value\"\n // additional: \"+USD 150\"\n },\n {\n name: \"pricing.elite_details.level.executive_search_button\",\n value: \"pricing.elite_details.level.executive_search_value\"\n // additional: \"+USD 200\"\n }\n ]\n }\n },\n terms: []\n }\n ]\n },\n howItWorks: {\n title: \"employers.how_it_works.title\",\n slides: [\n {\n id: 1,\n title: \"employers.how_it_works.sub-title_1\",\n text: \"employers.how_it_works.description_1\",\n videoUrl: infoSlideImage1\n },\n {\n id: 2,\n title: \"employers.how_it_works.sub-title_2\",\n text: \"employers.how_it_works.description_2\",\n videoUrl: infoSlideImage3\n },\n {\n id: 3,\n title: \"employers.how_it_works.sub-title_3\",\n text: \"employers.how_it_works.description_3\",\n videoUrl: infoSlideImage2\n }\n ]\n },\n whatFuzuOffers: {\n title: \"employers.offers.title\",\n slides: {\n fuzu: [\n {\n id: 1,\n title: \"employers.offers.sub-title_1\",\n text: \"employers.offers.description_1\",\n imageUrl: howItWorksB2B_1,\n smImageHeight: 308,\n smImageWidth: 320,\n imageHeight: 486,\n imageWidth: 506,\n direction: \"\"\n },\n {\n id: 2,\n title: \"employers.offers.sub-title_2\",\n text: \"employers.offers.description_2\",\n imageUrl: howItWorksB2B_2,\n smImageHeight: 265,\n smImageWidth: 320,\n imageHeight: 424,\n imageWidth: 513,\n direction: \"reverse\"\n },\n {\n id: 3,\n title: \"employers.offers.sub-title_3\",\n text: \"employers.offers.description_3\",\n imageUrl: howItWorksB2B_3,\n smImageHeight: 308,\n smImageWidth: 320,\n imageHeight: 486,\n imageWidth: 506,\n direction: \"\"\n },\n {\n id: 4,\n title: \"employers.offers.sub-title_4\",\n text: \"employers.offers.description_4\",\n imageUrl: howItWorksB2B_4,\n smImageHeight: 296,\n smImageWidth: 320,\n imageHeight: 400,\n imageWidth: 430,\n direction: \"reverse\"\n }\n ]\n }\n }\n }\n};\n","export const languages = {\n en: \"en\",\n fi: \"fi\"\n};\n","export const mainTabs = [\n {\n name: \"learn.tabs.tab_1\",\n tab: \"\"\n },\n {\n name: \"learn.tabs.tab_2\",\n tab: \"search\"\n }\n];\n\nexport const authorizedTabs = [\n {\n name: \"learn.tabs.tab_3\",\n tab: \"saved\"\n },\n {\n name: \"learn.tabs.tab_4\",\n tab: \"in-progress\"\n },\n {\n name: \"learn.tabs.tab_5\",\n tab: \"completed\"\n }\n];\n\nexport const tabNames = {\n search: \"search\"\n};\n","import opera from \"images/b2c/opera.png\";\nimport chrome from \"images/b2c/chrome.png\";\nimport firefox from \"images/b2c/firefox.png\";\n\nexport const browserList = [\n { imageUrl: chrome, name: \"Chrome\", url: \"https://www.google.com/chrome\" },\n { imageUrl: firefox, name: \"Firefox\", url: \"https://www.mozilla.org/en-US/firefox/new\" },\n { imageUrl: opera, name: \"Opera\", url: \"https://www.opera.com/download\" }\n];\n","export const jobTypes = {\n expert: \"expert\",\n skilled: \"skilled\"\n};\n","function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgVisaLogo = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlSpace: \"preserve\",\n width: 1000.046,\n height: 323.653\n}, props), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M116.145 95.719H97.858l11.438-70.724h18.286zM182.437 26.724c-3.607-1.431-9.328-3.011-16.402-3.011-18.059 0-30.776 9.63-30.854 23.398-.15 10.158 9.105 15.8 16.027 19.187 7.075 3.461 9.48 5.72 9.48 8.805-.072 4.738-5.717 6.922-10.982 6.922-7.301 0-11.213-1.126-17.158-3.762l-2.408-1.13-2.559 15.876c4.289 1.954 12.191 3.688 20.395 3.764 19.188 0 31.68-9.481 31.828-24.153.073-8.051-4.814-14.22-15.35-19.261-6.396-3.236-10.313-5.418-10.313-8.729.075-3.01 3.313-6.093 10.533-6.093 5.945-.151 10.313 1.278 13.622 2.708l1.654.751zM206.742 70.664c1.506-4.063 7.301-19.788 7.301-19.788-.076.151 1.503-4.138 2.406-6.771l1.278 6.094s3.463 16.929 4.215 20.465zm22.573-45.669H215.17c-4.362 0-7.676 1.278-9.558 5.868l-27.163 64.855h19.188s3.159-8.729 3.838-10.609h23.479c.525 2.483 2.182 10.609 2.182 10.609h16.932zM82.584 24.995 64.675 73.222l-1.957-9.781c-3.311-11.286-13.695-23.548-25.283-29.645l16.404 61.848h19.338l28.744-70.649z\",\n style: {\n fill: \"#00579f\"\n },\n transform: \"matrix(4.42996 0 0 4.42996 -81.166 -105.048)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M48.045 24.995H18.623l-.301 1.429c22.951 5.869 38.151 20.016 44.396 37.02L56.322 30.94c-1.053-4.517-4.289-5.796-8.277-5.945\",\n style: {\n fill: \"#faa61a\"\n },\n transform: \"matrix(4.42996 0 0 4.42996 -81.166 -105.048)\"\n}));\nexport default SvgVisaLogo;","function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgMcLogo = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlSpace: \"preserve\",\n width: 300,\n height: 180\n}, props), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M298.032 90.5c.014 48.936-39.646 88.614-88.582 88.627-48.937.012-88.614-39.646-88.627-88.582V90.5c-.013-48.935 39.647-88.615 88.581-88.628 48.937-.013 88.615 39.647 88.628 88.583z\",\n style: {\n fill: \"#f90\"\n }\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M90.001 1.895C41.355 2.204 1.967 41.781 1.967 90.5c0 48.909 39.695 88.604 88.605 88.604 22.955 0 43.879-8.748 59.624-23.086l-.007-.004h.019a89.4 89.4 0 0 0 8.995-9.488H141.05a87 87 0 0 1-6.606-9.127h31.308a89 89 0 0 0 5.158-9.488h-41.635a87 87 0 0 1-3.703-9.309h49.045a88.4 88.4 0 0 0 4.56-28.103c0-6.512-.706-12.861-2.042-18.974h-54.164a88 88 0 0 1 2.528-9.308h49.063a89 89 0 0 0-3.82-9.487H129.27a85 85 0 0 1 5.084-9.307h31.285a89 89 0 0 0-6.877-9.488h-17.443a82 82 0 0 1 8.889-8.95c-15.746-14.34-36.676-23.09-59.636-23.09z\",\n style: {\n fill: \"#c00\"\n }\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.143 136.82q.723.001 1.409.371.688.37 1.07 1.062c.256.456.384.937.384 1.435q0 .739-.379 1.424-.377.683-1.061 1.063-.678.374-1.424.375c-.746.001-.972-.126-1.426-.375a2.7 2.7 0 0 1-1.063-1.063 2.9 2.9 0 0 1-.377-1.424c0-.498.127-.979.384-1.435a2.66 2.66 0 0 1 1.071-1.062 3 3 0 0 1 1.412-.371m0 .475q-.602 0-1.176.311c-.38.207-.677.5-.891.888a2.4 2.4 0 0 0-.325 1.194q0 .62.315 1.188.321.566.888.885.57.316 1.188.315.62 0 1.189-.315.567-.319.884-.885.313-.568.313-1.188 0-.623-.321-1.194a2.2 2.2 0 0 0-.894-.888 2.4 2.4 0 0 0-1.17-.311m-1.256 3.975v-3.082h1.062q.54-.001.784.088a.76.76 0 0 1 .388.297.813.813 0 0 1-.098 1.039.95.95 0 0 1-.639.281.9.9 0 0 1 .264.164q.186.18.455.61l.375.603h-.606l-.272-.485q-.322-.572-.521-.718-.137-.104-.397-.105h-.293v1.311h-.5m.496-1.738h.604q.431 0 .588-.129a.42.42 0 0 0 .159-.342.4.4 0 0 0-.075-.244.47.47 0 0 0-.213-.162q-.134-.054-.497-.055h-.564v.932\",\n style: {\n fill: \"#fcb340\"\n }\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"m133.719 99.926 1.18-8.02c-.645 0-1.593.279-2.431.279-3.284 0-3.694-1.755-3.436-3.037l3.236-16.13h4.992l1.029-9.103h-4.705l.958-5.516H124.7c-.208.208-5.568 31.022-5.568 34.776 0 5.555 3.118 8.027 7.516 7.988 3.442-.029 6.125-.982 7.071-1.237M136.706 84.638c0 13.332 8.799 16.499 16.297 16.499 6.921 0 10.55-1.604 10.55-1.604l1.662-9.1s-5.848 2.378-10.601 2.378c-10.131 0-8.355-7.554-8.355-7.554l19.463.059s1.239-6.111 1.239-8.602c0-6.217-3.387-13.849-13.745-13.849-9.486.002-16.51 10.223-16.51 21.773m16.546-13.325c5.324 0 4.342 5.984 4.342 6.469H147.12c0-.62.989-6.469 6.132-6.469M212.99 99.923l1.689-10.284s-4.632 2.321-7.807 2.321c-6.693 0-9.378-5.11-9.378-10.601 0-11.137 5.758-17.265 12.168-17.265 4.808 0 8.665 2.699 8.665 2.699l1.54-9.993s-4.554-3.289-9.456-3.308c-14.745-.058-23.182 10.208-23.182 27.955 0 11.763 6.248 19.768 17.506 19.768 3.183 0 8.255-1.292 8.255-1.292M81.83 63.012c-6.469 0-11.427 2.079-11.427 2.079l-1.37 8.127s4.093-1.663 10.281-1.663c3.513 0 6.083.395 6.083 3.25 0 1.734-.314 2.374-.314 2.374s-2.772-.231-4.056-.231c-9.21 0-16.729 3.482-16.729 13.98 0 8.273 5.623 10.17 9.108 10.17 6.657 0 9.292-4.203 9.444-4.215l-.077 3.488h8.307l3.706-25.98c0-11.025-9.616-11.379-12.956-11.379m1.438 21.096c.181 1.586-.41 9.086-6.092 9.086-2.93 0-3.691-2.24-3.691-3.562 0-2.584 1.403-5.683 8.315-5.683 1.61 0 1.197.116 1.468.159M103.615 100.906c2.125 0 14.272.541 14.272-11.994 0-11.721-11.244-9.404-11.244-14.114 0-2.342 1.833-3.08 5.184-3.08 1.329 0 6.447.423 6.447.423l1.189-8.33c0 .001-3.312-.741-8.704-.741-6.979 0-14.063 2.786-14.063 12.318 0 10.802 11.812 9.717 11.812 14.267 0 3.037-3.3 3.287-5.844 3.287-4.401 0-8.363-1.511-8.377-1.438l-1.259 8.245c.229.07 2.674 1.157 10.587 1.157M290.807 55.455l-1.705 12.709s-3.553-4.905-9.112-4.905c-10.459 0-15.849 10.423-15.849 22.396 0 7.73 3.844 15.307 11.699 15.307 5.651 0 8.784-3.941 8.784-3.941l-.415 3.365h9.178l7.207-44.862zm-4.052 24.701c0 4.983-2.468 11.64-7.581 11.64-3.396 0-4.988-2.851-4.988-7.324 0-7.315 3.285-12.14 7.432-12.14 3.394 0 5.137 2.33 5.137 7.824M30.749 100.423l5.743-33.87.844 33.87h6.499l12.125-33.87-5.371 33.87h9.658l7.437-44.922-15.342-.117-9.126 27.504-.25-27.387h-14.06l-7.544 44.922z\",\n style: {\n fill: \"#006\"\n },\n transform: \"translate(-13.744 15.994)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M176.101 100.487c2.746-15.615 3.724-27.947 11.732-25.393 1.15-6.044 3.891-11.3 5.143-13.858 0 0-.396-.589-2.871-.589-4.225 0-9.866 8.574-9.866 8.574l.843-5.301h-8.786l-5.884 36.566h9.689z\",\n style: {\n fill: \"#006\"\n },\n transform: \"translate(-13.744 15.994)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M-612.55 63.012c-6.472 0-11.43 2.079-11.43 2.079l-1.369 8.127s4.095-1.663 10.28-1.663c3.514 0 6.083.395 6.083 3.25 0 1.734-.313 2.374-.313 2.374s-2.771-.231-4.055-.231c-9.211 0-16.729 3.482-16.729 13.98 0 8.273 5.622 10.17 9.107 10.17 6.655 0 9.292-4.203 9.443-4.215l-.078 3.488h8.309l3.705-25.98c.001-11.025-9.615-11.379-12.953-11.379m1.436 21.096c.18 1.586-.411 9.086-6.092 9.086-2.932 0-3.692-2.24-3.692-3.562 0-2.584 1.402-5.683 8.315-5.683 1.611 0 1.199.116 1.469.159\",\n style: {\n fill: \"#006\"\n },\n transform: \"translate(831.556 15.994)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M255.266 100.487c1.508-11.488 4.299-27.616 11.731-25.393 1.149-6.044.041-6.028-2.433-6.028-4.228 0-5.164.154-5.164.154l.844-5.301h-8.785l-5.884 36.567h9.691z\",\n style: {\n fill: \"#006\"\n },\n transform: \"translate(-13.744 15.994)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"m122.434 113.059 1.181-8.019c-.645 0-1.594.276-2.431.276-3.284 0-3.646-1.746-3.437-3.037l2.653-16.362h4.991l1.205-8.87h-4.706l.958-5.516h-9.434c-.208.208-5.569 31.023-5.569 34.775 0 5.555 3.119 8.029 7.517 7.989 3.444-.029 6.126-.982 7.072-1.236M125.423 97.77c0 13.332 8.8 16.5 16.297 16.5 6.92 0 9.965-1.547 9.965-1.547l1.662-9.099s-5.264 2.319-10.018 2.319c-10.13 0-8.356-7.553-8.356-7.553h19.172s1.238-6.113 1.238-8.604c0-6.216-3.094-13.79-13.452-13.79-9.486.002-16.508 10.223-16.508 21.774m16.544-13.325c5.324 0 4.342 5.983 4.342 6.467h-10.474c0-.618.99-6.467 6.132-6.467M201.707 113.055l1.688-10.285s-4.629 2.321-7.806 2.321c-6.692 0-9.376-5.11-9.376-10.6 0-11.137 5.758-17.264 12.168-17.264 4.807 0 8.665 2.699 8.665 2.699l1.54-9.993s-5.721-2.315-10.625-2.315c-10.891 0-21.486 9.448-21.486 27.192 0 11.766 5.721 19.537 16.979 19.537 3.183.001 8.253-1.292 8.253-1.292M70.547 76.143c-6.469 0-11.428 2.079-11.428 2.079l-1.369 8.127s4.093-1.663 10.28-1.663c3.513 0 6.083.395 6.083 3.25 0 1.734-.315 2.374-.315 2.374s-2.771-.232-4.054-.232c-8.159 0-16.73 3.482-16.73 13.98 0 8.272 5.623 10.17 9.108 10.17 6.656 0 9.525-4.319 9.678-4.332l-.311 3.605h8.307l3.706-25.981c0-11.022-9.615-11.377-12.955-11.377m2.021 21.154c.18 1.587-.995 9.026-6.675 9.026-2.93 0-3.692-2.238-3.692-3.562 0-2.582 1.403-5.682 8.316-5.682 1.608.002 1.78.174 2.051.218M92.331 114.038c2.125 0 14.273.54 14.273-11.995 0-11.719-11.245-9.404-11.245-14.112 0-2.344 1.833-3.082 5.183-3.082 1.33 0 6.447.423 6.447.423l1.19-8.33c0 .001-3.312-.741-8.704-.741-6.979 0-14.063 2.786-14.063 12.318 0 10.801 11.812 9.717 11.812 14.267 0 3.037-3.3 3.284-5.843 3.284-4.401 0-8.364-1.51-8.378-1.438l-1.258 8.246c.228.07 2.672 1.16 10.586 1.16M279.852 68.668l-2.035 12.627s-3.551-4.905-9.11-4.905c-8.644 0-15.849 10.422-15.849 22.397 0 7.73 3.843 15.304 11.699 15.304 5.651 0 8.784-3.94 8.784-3.94l-.415 3.365h9.176l7.207-44.863zm-4.381 24.62c0 4.983-2.467 11.639-7.582 11.639-3.395 0-4.986-2.85-4.986-7.323 0-7.314 3.285-12.14 7.43-12.14 3.396-.001 5.138 2.332 5.138 7.824M19.466 113.555l5.743-33.87.843 33.87h6.5l12.125-33.87-5.371 33.87h9.658l7.438-44.923H41.467l-9.301 27.563-.484-27.563H17.915l-7.545 44.923zM164.818 113.617c2.746-15.616 3.255-28.296 9.808-25.975 1.147-6.044 2.254-8.382 3.506-10.94 0 0-.587-.123-1.819-.123-4.225 0-7.355 5.772-7.355 5.772l.841-5.301h-8.784l-5.885 36.567z\",\n style: {\n fill: \"#fff\"\n }\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M-623.531 76.143c-6.469 0-11.428 2.079-11.428 2.079l-1.368 8.127s4.093-1.663 10.28-1.663c3.513 0 6.081.395 6.081 3.25 0 1.734-.313 2.374-.313 2.374s-2.771-.232-4.055-.232c-8.158 0-16.729 3.482-16.729 13.98 0 8.272 5.622 10.17 9.107 10.17 6.656 0 9.525-4.319 9.677-4.332l-.309 3.605h8.307l3.705-25.981c.001-11.022-9.615-11.377-12.955-11.377m2.024 21.154c.18 1.587-.996 9.026-6.678 9.026-2.93 0-3.69-2.238-3.69-3.562 0-2.582 1.403-5.682 8.315-5.682 1.608.002 1.779.174 2.053.218\",\n style: {\n fill: \"#fff\"\n },\n transform: \"translate(847.006)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M-198.263 113.617c2.747-15.616 3.256-28.296 9.807-25.975 1.149-6.044 2.257-8.382 3.508-10.94 0 0-.587-.123-1.819-.123-4.225 0-7.355 5.772-7.355 5.772l.841-5.301h-8.784l-5.885 36.567z\",\n style: {\n fill: \"#fff\"\n },\n transform: \"translate(442.286)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.105 107.975c.479 0 .951.123 1.406.373.459.242.816.598 1.072 1.059q.384.686.383 1.434 0 .74-.379 1.424a2.66 2.66 0 0 1-1.059 1.063q-.682.376-1.424.376-.747 0-1.429-.376a2.7 2.7 0 0 1-1.058-1.063 2.87 2.87 0 0 1-.381-1.424q0-.748.384-1.434a2.63 2.63 0 0 1 1.073-1.059q.693-.374 1.412-.373m0 .472q-.601 0-1.176.313a2.2 2.2 0 0 0-.894.885q-.321.572-.322 1.194c-.001.622.104.81.313 1.188q.319.566.891.886.566.313 1.188.313.62 0 1.188-.313.568-.32.884-.886c.211-.381.314-.774.314-1.188s-.107-.813-.321-1.194a2.16 2.16 0 0 0-.894-.885 2.4 2.4 0 0 0-1.171-.313m-1.255 3.976v-3.083h1.061q.543 0 .785.088a.76.76 0 0 1 .388.297.8.8 0 0 1 .146.451.82.82 0 0 1-.244.588.93.93 0 0 1-.637.28 1 1 0 0 1 .262.163q.185.183.455.611l.377.604h-.609l-.271-.485q-.323-.573-.521-.718-.137-.106-.399-.106h-.291v1.311zm.498-1.735h.604q.433 0 .588-.129a.42.42 0 0 0 .16-.342.4.4 0 0 0-.075-.242.46.46 0 0 0-.213-.164c-.091-.035-.254-.053-.498-.053h-.565v.93\",\n style: {\n fill: \"#fff\"\n }\n}));\nexport default SvgMcLogo;","function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgAmexLogo = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlSpace: \"preserve\",\n viewBox: \"0 0 291.764 291.764\"\n}, props), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M18.235 41.025h255.294c10.066 0 18.235 8.169 18.235 18.244v173.235c0 10.066-8.169 18.235-18.235 18.235H18.235C8.16 250.74 0 242.57 0 232.505V59.269c0-10.075 8.169-18.244 18.235-18.244\",\n style: {\n fill: \"#26a6d1\"\n }\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"m47.047 113.966-28.812 63.76h34.492l4.276-10.166h9.774l4.276 10.166h37.966v-7.759l3.383 7.759h19.639l3.383-7.923v7.923h78.959l9.601-9.902 8.99 9.902 40.555.082-28.903-31.784 28.903-32.058h-39.926l-9.346 9.719-8.707-9.719h-85.897l-7.376 16.457-7.549-16.457h-34.42v7.495l-3.829-7.495zm6.674 9.054h16.813l19.111 43.236V123.02h18.418l14.761 31 13.604-31h18.326v45.752h-11.151l-.091-35.851-16.257 35.851h-9.975l-16.348-35.851v35.851h-22.94l-4.349-10.257H50.147l-4.34 10.248H33.516zm111.235 0h45.342L224.166 138l14.315-14.98h13.868l-21.071 22.995 21.071 22.73h-14.497l-13.868-15.154-14.388 15.154h-44.64zM61.9 130.761l-7.741 18.272h15.473zm114.253 1.732v8.352h24.736v9.309h-24.736v9.118h27.745l12.892-13.43-12.345-13.357h-28.292z\",\n style: {\n fill: \"#fff\"\n }\n}));\nexport default SvgAmexLogo;","function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgJcbLogo = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlSpace: \"preserve\",\n width: 300,\n height: 231.511\n}, props), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"matrix(1.82152 0 0 1.82152 -17.944 -13.026)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M174 108.3c0 14-11.4 25.4-25.4 25.4H10.4V33.1c0-14 11.4-25.4 25.4-25.4H174z\",\n style: {\n fill: \"#fff\"\n }\n}), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"jcb_logo_svg__a\",\n x1: 117.386,\n x2: 157.33,\n y1: 81.399,\n y2: 81.399,\n gradientTransform: \"translate(-11.976 -13.861)scale(1.125)\",\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n style: {\n stopColor: \"#007940\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.229,\n style: {\n stopColor: \"#00873f\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.743,\n style: {\n stopColor: \"#40a737\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n style: {\n stopColor: \"#5cb531\"\n }\n})), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M129 82.5h10.5c.3 0 1-.1 1.3-.1 2-.4 3.7-2.2 3.7-4.7 0-2.4-1.7-4.2-3.7-4.7-.3-.1-.9-.1-1.3-.1H129z\",\n style: {\n fill: \"url(#jcb_logo_svg__a)\"\n }\n}), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"jcb_logo_svg__b\",\n x1: 117.384,\n x2: 157.332,\n y1: 75.171,\n y2: 75.171,\n gradientTransform: \"translate(-11.976 -13.861)scale(1.125)\",\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n style: {\n stopColor: \"#007940\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.229,\n style: {\n stopColor: \"#00873f\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.743,\n style: {\n stopColor: \"#40a737\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n style: {\n stopColor: \"#5cb531\"\n }\n})), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M138.3 16.2c-10 0-18.2 8.1-18.2 18.2v18.9h25.7c.6 0 1.3 0 1.8.1 5.8.3 10.1 3.3 10.1 8.5 0 4.1-2.9 7.6-8.3 8.3v.2c5.9.4 10.4 3.7 10.4 8.8 0 5.5-5 9.1-11.6 9.1H120v37h26.7c10 0 18.2-8.1 18.2-18.2V16.2z\",\n style: {\n fill: \"url(#jcb_logo_svg__b)\"\n }\n}), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"jcb_logo_svg__c\",\n x1: 117.385,\n x2: 157.331,\n y1: 68.399,\n y2: 68.399,\n gradientTransform: \"translate(-11.976 -13.861)scale(1.125)\",\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n style: {\n stopColor: \"#007940\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.229,\n style: {\n stopColor: \"#00873f\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.743,\n style: {\n stopColor: \"#40a737\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n style: {\n stopColor: \"#5cb531\"\n }\n})), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M143.2 63.1c0-2.4-1.7-4-3.7-4.3-.2 0-.7-.1-1-.1H129v8.8h9.5c.3 0 .9 0 1-.1 2-.3 3.7-1.9 3.7-4.3\",\n style: {\n fill: \"url(#jcb_logo_svg__c)\"\n }\n}), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"jcb_logo_svg__d\",\n x1: 27.959,\n x2: 68.522,\n y1: 75.171,\n y2: 75.171,\n gradientTransform: \"translate(-11.976 -13.861)scale(1.125)\",\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n style: {\n stopColor: \"#1f286f\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.475,\n style: {\n stopColor: \"#004e94\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.826,\n style: {\n stopColor: \"#0066b1\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n style: {\n stopColor: \"#006fbc\"\n }\n})), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M37.7 16.2c-10 0-18.2 8.1-18.2 18.2v44.9c5.1 2.5 10.4 4.1 15.7 4.1 6.3 0 9.7-3.8 9.7-9V53.2h15.6v21.1c0 8.2-5.1 14.9-22.4 14.9-10.5 0-18.7-2.3-18.7-2.3v38.3h26.7c10 0 18.2-8.1 18.2-18.2V16.2z\",\n style: {\n fill: \"url(#jcb_logo_svg__d)\"\n }\n}), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"jcb_logo_svg__e\",\n x1: 72.46,\n x2: 111.855,\n y1: 75.171,\n y2: 75.171,\n gradientTransform: \"translate(-11.976 -13.861)scale(1.125)\",\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n style: {\n stopColor: \"#6c2c2f\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.173,\n style: {\n stopColor: \"#882730\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.573,\n style: {\n stopColor: \"#be1833\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.859,\n style: {\n stopColor: \"#dc0436\"\n }\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n style: {\n stopColor: \"#e60039\"\n }\n})), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M88 16.2c-10 0-18.2 8.1-18.2 18.2v23.8c4.6-3.9 12.6-6.4 25.5-5.8 6.9.3 14.3 2.2 14.3 2.2v7.7c-3.7-1.9-8.1-3.6-13.8-4-9.8-.7-15.7 4.1-15.7 12.5 0 8.5 5.9 13.3 15.7 12.5 5.7-.4 10.1-2.2 13.8-4V87s-7.3 1.9-14.3 2.2c-12.9.6-20.9-1.9-25.5-5.8v42h26.7c10 0 18.2-8.1 18.2-18.2v-91z\",\n style: {\n fill: \"url(#jcb_logo_svg__e)\"\n }\n})));\nexport default SvgJcbLogo;","var _g, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgMobile = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 26,\n height: 40,\n fill: \"currentColor\"\n}, props), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#mobile_svg__a)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M21.273 0H4.728C2.12 0 0 2.11 0 4.706v30.588C0 37.89 2.12 40 4.728 40h16.545c2.606 0 4.728-2.11 4.728-4.706V4.706C26 2.111 23.879 0 21.273 0m-4.276 2.353-1.181 2.353h-5.63L9.002 2.353zm-12.27 0h1.634L8.725 7.06h8.552l2.364-4.706h1.633a2.36 2.36 0 0 1 2.364 2.353v25.882H2.364V4.706a2.36 2.36 0 0 1 2.364-2.353m16.546 35.294H4.728a2.36 2.36 0 0 1-2.364-2.353V32.94h21.273v2.353a2.36 2.36 0 0 1-2.364 2.353\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11.819 20h2.364a1.18 1.18 0 0 1 1.181 1.177c0 .649-.53 1.176-1.181 1.176H9.455v2.353h2.364v2.353h2.364v-2.353c1.954 0 3.545-1.583 3.545-3.53 0-1.945-1.59-3.53-3.545-3.53h-2.364a1.18 1.18 0 0 1-1.182-1.176c0-.648.53-1.176 1.182-1.176h4.727V12.94h-2.363v-2.354h-2.364v2.354c-1.955 0-3.546 1.583-3.546 3.53 0 1.945 1.59 3.529 3.546 3.529\"\n}))), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"mobile_svg__a\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n d: \"M0 0h26v40H0z\"\n})))));\nexport default SvgMobile;","var _g, _defs;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgBankTransfer = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 36,\n height: 42,\n fill: \"currentColor\"\n}, props), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#bank_transfer_svg__a)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M18 9c6.617 0 12 5.383 12 12s-5.383 12-12 12S6 27.616 6 21 11.383 9 18 9M9 21c0 4.963 4.037 9 9 9s9-4.037 9-9-4.037-9-9-9-9 4.036-9 9m7.695 14.945C9.015 35.283 3 28.719 3 21 3 14.237 7.554 8.282 14.075 6.52a1.5 1.5 0 0 0 1.057-1.84 1.507 1.507 0 0 0-1.84-1.057C5.466 5.738 0 12.883 0 21c0 8.237 5.71 15.378 13.457 17.417l-1.025 1.02A1.498 1.498 0 0 0 13.49 42a1.5 1.5 0 0 0 1.057-.437l3.077-3.062c.414-.41.552-1.027.35-1.576a1.5 1.5 0 0 0-1.279-.98m5.907-32.348 1.078-.995A1.5 1.5 0 0 0 21.645.398l-3.308 3.055a1.503 1.503 0 0 0 .896 2.599C26.953 6.676 33 13.242 33 21c0 6.767-4.555 12.72-11.08 14.48a1.5 1.5 0 1 0 .783 2.898C30.53 36.266 36 29.119 36 21c0-8.232-5.676-15.347-13.398-17.403\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M17 22h2a1.001 1.001 0 0 1 0 2h-4v2h2v2h2v-2c1.654 0 3-1.346 3-3s-1.346-3-3-3h-2c-.551 0-1-.449-1-1s.449-1 1-1h4v-2h-2v-2h-2v2c-1.654 0-3 1.346-3 3s1.346 3 3 3\"\n}))), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"bank_transfer_svg__a\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n d: \"M0 0h36v42H0z\"\n})))));\nexport default SvgBankTransfer;","import Visa from \"images/b2c/payment/visa_logo.svg\";\nimport MasterCard from \"images/b2c/payment/mc_logo.svg\";\nimport AmEx from \"images/b2c/payment/amex_logo.svg\";\nimport Jcb from \"images/b2c/payment/jcb_logo.svg\";\nimport MobileIcon from \"images/b2c/icons/mobile.svg\";\nimport BankTransferIcon from \"images/b2c/icons/bank_transfer.svg\";\n\nexport const cardNetworks = [\n { name: \"Visa\", Logo: Visa },\n { name: \"MasterCard\", Logo: MasterCard },\n { name: \"AmEx\", Logo: AmEx },\n { name: \"JCB\", Logo: Jcb }\n];\n\nexport const methods = {\n mobile: { Icon: MobileIcon, name: \"Mobile payment\" },\n bank_transfer: { Icon: BankTransferIcon, name: \"Bank Transfer\" }\n};\n","export const sortingOptions = [\n { name: \"Newest first\", value: \"newest\" },\n { name: \"Oldest first\", value: \"oldest\" }\n];\n","import Ico3 from \"images/b2b/ico_3.png\";\nimport Ico4 from \"images/b2b/ico_4.png\";\nimport Ico5 from \"images/b2b/ico_5.png\";\nimport { Alarm, BriefcaseAlt, Envelope, IdCard, Show } from \"@styled-icons/boxicons-regular\";\n\nexport const global = {\n id: \"global\",\n country_code: \"global\",\n name: \"Global\",\n slug: \"global\"\n};\n\nexport const deliverablesListNames = [\n \"pricing.elite_details.delivers.list.description_1\",\n \"pricing.elite_details.delivers.list.description_2\",\n \"pricing.elite_details.delivers.list.description_3\",\n \"pricing.elite_details.delivers.list.description_4\",\n \"pricing.elite_details.delivers.list.description_5\",\n \"pricing.elite_details.delivers.list.description_6\",\n \"pricing.elite_details.delivers.list.description_7\",\n \"pricing.elite_details.delivers.list.description_8\",\n \"pricing.elite_details.delivers.list.description_9\",\n \"pricing.elite_details.delivers.list.description_10\",\n \"pricing.elite_details.delivers.list.description_11\",\n \"pricing.elite_details.delivers.list.description_12\",\n \"pricing.elite_details.delivers.list.description_13\"\n];\n\nexport const deliverablesList = [\n {\n title: \"pricing.elite_details.delivers.column-title_2\",\n popular: false,\n actives: [true, true, true, false, false, false, false, false, false, false, false, false, false]\n },\n {\n title: \"pricing.elite_details.delivers.column-title_3\",\n popular: true,\n actives: [true, true, true, true, true, true, true, true, true, true, true, false, false]\n },\n {\n title: \"pricing.elite_details.delivers.column-title_4\",\n popular: true,\n actives: [true, true, true, true, true, true, true, true, true, true, true, true, true]\n }\n];\n\nexport const faqList = [\n {\n title: \"pricing.elite_details.faq.list.title_1\",\n description: \"pricing.elite_details.faq.list.description_1\"\n },\n {\n title: \"pricing.elite_details.faq.list.title_2\",\n description: \"pricing.elite_details.faq.list.description_2\"\n },\n {\n title: \"pricing.elite_details.faq.list.title_3\",\n description: \"pricing.elite_details.faq.list.description_3\"\n },\n {\n title: \"pricing.elite_details.faq.list.title_4\",\n description: \"pricing.elite_details.faq.list.description_4\"\n },\n {\n title: \"pricing.elite_details.faq.list.title_5\",\n description: \"pricing.elite_details.faq.list.description_5\"\n },\n {\n title: \"pricing.elite_details.faq.list.title_6\",\n description: \"pricing.elite_details.faq.list.description_6\"\n },\n {\n title: \"pricing.elite_details.faq.list.title_7\",\n description: \"pricing.elite_details.faq.list.description_7\"\n }\n];\n\nexport const icons = [Ico5, Ico3, Ico4];\n\nexport const supports = [\n {\n number: 1,\n title: \"pricing.elite_details.support.list.title_1\",\n list: [\n \"pricing.elite_details.support.list.description_1_1\",\n \"pricing.elite_details.support.list.description_1_2\",\n \"pricing.elite_details.support.list.description_1_3\"\n ]\n },\n {\n number: 2,\n title: \"pricing.elite_details.support.list.title_2\",\n list: [\n \"pricing.elite_details.support.list.description_2_1\",\n \"pricing.elite_details.support.list.description_2_2\",\n \"pricing.elite_details.support.list.description_2_3\",\n \"pricing.elite_details.support.list.description_2_4\"\n ]\n },\n {\n number: 3,\n title: \"pricing.elite_details.support.list.title_3\",\n list: [\n \"pricing.elite_details.support.list.description_3_1\",\n \"pricing.elite_details.support.list.description_3_2\",\n \"pricing.elite_details.support.list.description_3_3\"\n ]\n }\n];\n\nexport const carouselPoints = [\n { point: 520, padding: \"100px\" },\n { point: 510, padding: \"95px\" },\n { point: 500, padding: \"90px\" },\n { point: 490, padding: \"85px\" },\n { point: 480, padding: \"80px\" },\n { point: 470, padding: \"75px\" },\n { point: 460, padding: \"70px\" },\n { point: 450, padding: \"65px\" },\n { point: 440, padding: \"60px\" },\n { point: 430, padding: \"55px\" },\n { point: 420, padding: \"50px\" },\n { point: 410, padding: \"45px\" },\n { point: 400, padding: \"40px\" },\n { point: 390, padding: \"35px\" },\n { point: 380, padding: \"30px\" },\n { point: 370, padding: \"25px\" },\n { point: 360, padding: \"20px\" },\n { point: 350, padding: \"15px\" },\n { point: 340, padding: \"10px\" },\n { point: 330, padding: \"5px\" },\n { point: 320, padding: \"0px\" }\n];\n\nexport const TermIcons = {\n job: BriefcaseAlt,\n cv: Show,\n contact: Envelope,\n idCard: IdCard,\n alarm: Alarm\n};\n","export const typeMap = {\n option: \"test_option_id\",\n checkbox: \"test_option_ids\",\n text: \"text\"\n};\n","export const countriesList = [\n \"Poland\",\n \"Portugal\",\n \"Romania\",\n \"Slovakia\",\n \"Greece\",\n \"Hungary\",\n \"Ireland\",\n \"Italy\",\n \"Latvia\",\n \"Lithuania\",\n \"Luxembourg\",\n \"Malta\",\n \"Netherlands\",\n \"Austria\",\n \"Belgium\",\n \"Bulgaria\",\n \"Croatia\",\n \"Republic of Cyprus\",\n \"Czech Republic\",\n \"Denmark\",\n \"Estonia\",\n \"Finland\",\n \"France\",\n \"Slovenia\",\n \"Spain\",\n \"Sweden\",\n \"Iceland\",\n \"Iceland\",\n \"Liechtenstein\",\n \"Norway\",\n \"Switzerland\",\n \"England\",\n \"Scotland\",\n \"Scotland\",\n \"Wales\",\n \"Northern Ireland\",\n \"United States\"\n];\n","import React, { Component, useEffect } from \"react\";\nimport { observer } from \"mobx-react\";\nimport { toJS } from \"mobx\";\nimport useStore from \"./store\";\n\nclass ErrorBoundaries extends Component {\n constructor(props) {\n super(props);\n this.state = {\n hasError: false\n };\n }\n\n static getDerivedStateFromError() {\n // Update state so the next render will show the fallback UI\n return { hasError: true };\n }\n\n componentDidCatch() {\n // The error is logged automatically by New Relic; no need to log here\n }\n\n render() {\n if (this.state.hasError) {\n return Something went wrong. ;\n }\n\n return this.props.children;\n }\n}\n\nconst UserProvider = ({ children, initUser, ...props }) => {\n const { user, updateUser } = useStore(\"User\");\n\n useEffect(() => {\n if (initUser && !user) updateUser(initUser);\n }, [initUser, user, updateUser]); // Ensure all dependencies are listed\n\n return process.env.NODE_ENV !== \"development\" ? (\n \n {children}\n \n ) : (\n children\n );\n};\n\nexport default observer(UserProvider);\n","/* eslint-disable */\nimport { createContext } from \"react\";\n\n// remove\nconst branding = {\n faq: [\n {\n id: 1,\n title: \"About Fuzu\",\n sections: [\n {\n id: 1,\n title: \"What are the benefits of Fuzu?\",\n text:\n \"Fuzu is your one stop shop for planning and reaching your career related goals. The Fuzu service is designed to help career builders to accelerate their growth through personalised learning, career guidance and accurate job recommendations.\"\n },\n {\n id: 2,\n title: \"Is Fuzu a paid-for service?\",\n text:\n \"Using Fuzu is free of charge, outside of the data bundles needed to access the service. You can create your online CV, apply for jobs, read articles and access learning content on Fuzu absolutely free.\"\n },\n {\n id: 3,\n title: \"What do I need to do to start using Fuzu?\",\n text:\n \"There are no special requirements for joining Fuzu. Anyone above 18 years who wants to apply for jobs, learn new skills, stay up-to-date with industry news or who wants to plan ahead their career may register on Fuzu. Registration is fast and easy. However, to find relevant jobs and courses or to increase chances of finding employment, we encourage you to complete your Fuzu profile.\"\n },\n {\n id: 4,\n title: \"Can I use Fuzu even if I am a student and don’t have work experience?\",\n text:\n 'Yes, you can. We have internship positions on the platform as well. You should also check the learning library that is designed to help you out in finding your first job opportunity. You can also read articles on your industry to prepare you for the career ahead.' \n }\n ]\n },\n {\n id: 2,\n title: \"Jobs on Fuzu\",\n sections: [\n {\n id: 1,\n title: \"What kind of jobs are there on Fuzu\",\n text:\n \"Fuzu is open for jobs from all industries and seniority levels. We recommend that you check for new job content regularly. We have Fuzu Exclusive jobs that have been posted by our employer partners as well as jobs we have aggregated from other sources. It is important to note that the aggregated jobs take you to an external website to post the application or provide you with instructions for sending in your application package. We make sure that the jobs on the platform are free from scams. Under no circumstances should you ever pay for applying for a job!\"\n },\n {\n id: 2,\n title: \"Am I allowed to apply for jobs in a country where I am not living at the moment?\",\n text:\n \"Yes, you can. However, it is good to keep in mind that employers have the ultimate say on whether they are willing to deal with work permits and relocation costs. So make sure you check the requirements before submitting an application.\"\n },\n {\n id: 3,\n title: \"Are the jobs on Fuzu different from other job sites?\",\n text:\n \"Companies who post jobs on Fuzu go through a validation process by the Fuzu team. They may also post the same jobs across multiple job sites. However, many employers use Fuzu as their primary recruitment channel. Keep your Fuzu profile updated as employers are searching the talent database and the stronger your profile, the better chances you have for landing your next job opportunity.\"\n },\n {\n id: 4,\n title: \"Are jobs on Fuzu genuine?\",\n text:\n \"All jobs on Fuzu are verified by the Fuzu team. You may not necessarily find the jobs on the employers’ website as some employers prefer applications to come from external sources like Fuzu. If you do encounter anything suspicious, please contact us.\"\n },\n {\n id: 5,\n title: \"Why are you duplicating job postings?\",\n text:\n \"For some of the jobs on Fuzu, the employer is continuously looking for fresh talent and therefore there are multiple openings for the same position. In some cases, the employer is hiring for the same role in multiple locations.\"\n },\n {\n id: 6,\n title: \"Why don’t I get job recommendations from Fuzu?\",\n text:\n 'Make sure to check your spam folder and to mark Fuzu emails as safe. You can also check the email settings on the platform under Job Search Settings. ' \n }\n ]\n },\n {\n id: 3,\n title: \"Password and account\",\n sections: [\n {\n id: 1,\n title: \"How do I reset my password?\",\n text:\n \"Open your browser and go to www.fuzu.com/login. Click 'Forgot your password?' and follow the instructions to reset it. The system will send you a recovery email with a link to reset your password.\"\n },\n {\n id: 2,\n title: \"I am trying to log in but it says my email address is already taken?\",\n text:\n \"Most likely you are on the registration page, please go to the login page and click on this link www.fuzu.com/login.Type in your username and password. If you have forgotten your password, you can reset it by clicking on 'Forgot your password?'.\"\n },\n {\n id: 3,\n title: \"I don’t need Fuzu anymore. How do I delete my account?\",\n text:\n \"We will be sad to see you leave and recommend that you keep your account, as we are constantly updating the content on Fuzu to better serve our community’s needs. If you nevertheless wish to delete your Fuzu account, click on your image on the home page (header bar-top right) and select Account Settings. You will find the Delete account option from there.\"\n }\n ]\n },\n {\n id: 4,\n title: \"Managing and improving my Profile (CV)\",\n sections: [\n {\n id: 1,\n title: \"How do I get my CV to full completion?\",\n text:\n \"The stronger your Fuzu profile is, the better your chances are for finding interesting jobs, courses and articles on the platform. To push your Fuzu profile completion rate up, you need to fill in all the sections.\"\n },\n {\n id: 2,\n title: \"Why do I need to add skills and how do I do it?\",\n text:\n \"Your skills are very important as they show the employer what you can do. You can add skills to your profile under the Skill set section or by connecting individual skills to each of your work experience items on the Fuzu profile page. In total you can add a maximum of 50 skills to your profile.\"\n },\n {\n id: 3,\n title: \"Why do I need to create a profile and why does it take time?\",\n text:\n \"The profile creation is a process you need to complete only once. We also provide you with a tool to automatically analyse and build your profile based on an existing CV. A great Fuzu profile is needed to receive great recommendations and to get the best out of the Fuzu experience. You can also be headhunted by employers looking for talent on Fuzu.\"\n },\n {\n id: 4,\n title: \"How do I Write a CV?\",\n text:\n 'We have great insights on how to build a great CV. Kindly check out the articles we have listed under the Forum section as well as the free of charge courses we host on the platform. You also have the option of purchasing the CV Creator, which provides you with a great looking CV file generated from your Fuzu profile.' \n }\n ]\n },\n {\n id: 5,\n title: \"Applying for jobs\",\n sections: [\n {\n id: 1,\n title: \"How is the application process like on Fuzu?\",\n text:\n \"We have two kinds of job postings on the platform, that's Fuzu exclusive and external roles. For Fuzu exclusive roles one would have to complete all the application steps we've provided in order to submit the application successfully. As for external roles, step 1 of the application process on the platform is meant to give you a chance to download and review your Fuzu CV or original CV(self-prepared) before submitting it to the employer. Once you have the CV of your choice kindly scroll down to step 2 where we've provided either the employer's email address, physical address, or a link to their website for you to submit the application successfully.\"\n },\n {\n id: 2,\n title: \"How can I access my incomplete job application?\",\n text:\n \"You can save and finish your application any time before the application end date. To access your incomplete applications, log in to your profile, go to the Jobs page and click on the Applications tab or check out the My Updates section on My Fuzu page. Just remember that the employers may close the application process early and that early applicants always have the best chances of progressing to the next phase.\"\n },\n {\n id: 3,\n title: \"How do I get notified that my application has been submitted?\",\n text:\n \"For jobs that are submitted on Fuzu, your application is submitted as you click the Submit button. You will also get a confirmation email. For jobs that are applied outside of the Fuzu platform, it is your responsibility to make sure that you complete the application either on an external website or by sending the application via email. Please read the instructions carefully!\"\n },\n {\n id: 4,\n title: \"What next after I get shortlisted for a position?\",\n text:\n \"The employer will get back to you on the next steps. Sometimes the recruitment process takes a while (even up to 2 months) and this communication might not be immediate. Being shortlisted is also not yet a confirmation for being invited for interviews. Sometimes employers select several candidates to the shortlist and then invite only a smaller number of candidates for the interviews.\"\n },\n {\n id: 5,\n title: \"Why do I have to answer a long personality test when I apply for a job?\",\n text:\n \"Employers want to find people that match their corporate culture and therefore ask candidates to complete personality assessments. When it comes to personality, there are no right or wrong answers. After all, we are who we are! The Fuzu personality test is based on the Big 5 framework, which is a proven and popular psychometric framework for assessing people's character in a professional environment.\"\n },\n {\n id: 6,\n title: \"Can I get my test results for the Fuzu aptitude tests?\",\n text:\n \"No, however, employers use the questions that candidates failed on the aptitude test, to better understand your fit for their role.\\n\"\n },\n {\n id: 7,\n title: \"How do I cancel my application and reapply again?\",\n text:\n \"If you realise that you missed a key thing in your application and you already submitted it, you can always cancel your application and apply afresh. To do so, access the Jobs page and then enter the Applications tab. Find your application and click Cancel. Before canceling make sure that the job is still open for applications!\"\n },\n {\n id: 8,\n title: \"How do I write a Cover letter?\",\n text:\n 'For some great insights on how to write cover letters, please access the Forum page and search for articles discussing how to write a perfect cover letter.' \n }\n ]\n },\n {\n id: 6,\n title: \"Premium products and payments\",\n sections: [\n {\n id: 1,\n title: \"What is Instant Feedback?\",\n text:\n \"Instant Feedback is a premium feature that allows you to compare yourself to other top candidates by experience, skills, personality and education, providing you with valuable advice on how to improve your chances in the future. You can purchase Instant Feedback for a specific job or for an unlimited number of jobs for 30 days.\"\n },\n {\n id: 2,\n title: \"Where do I get Instant Feedback?\",\n text:\n \"To purchase Instant Feedback, go to a job description and click “Get Instant Feedback”. Then just follow the steps to purchase the product option you prefer. Once you have activated Instant Feedback, go to the job description and click “View Instant Feedback”.\"\n },\n {\n id: 3,\n title: \"Why am I not getting Feedback despite many applications sent?\",\n text:\n 'We understand the frustration of not getting feedback for your applications. Sometimes the recruitment process takes a long time and due to the high number of applicants, the employer is not able to provide personalised feedback to each and every candidate. It is also important to note that for applications that you submitted externally (by completing them on an external website or by sending the application via email or traditional mail), the employer will contact you directly, not via the Fuzu platform. To improve your chances we recommend that you make sure your profile is up to date. You are also welcome to book a session with one of the Fuzu Coaches to understand better what prevents you from finding the job of your dreams.' \n },\n {\n id: 4,\n title: \"I purchased Instant feedback but I have not gotten feedback for the role I applied to.\",\n text:\n \"Instant feedback gives you feedback on how you match a particular role, recommendations on enhancing your application and access to top candidates' profiles versus you. However, it does not give you specific feedback regarding your application from the employer, usually you get contacted if you made it to the shortlist which takes about two weeks after the job is closed.\"\n },\n {\n id: 5,\n title: \"Where can I find the Fuzu CV Creator I purchased?\",\n text:\n \"Login to your account and go to your Fuzu profile by clicking your photo and you will find the button for downloading your CV.\"\n },\n {\n id: 6,\n title: \"What if my Fuzu CV Creator is missing details?\",\n text:\n 'Your Fuzu Cv Creator is created from the information available on your Fuzu profile. First update your profile, then refresh your CV Creator page to download the updated document. If the CV still fails to update, please contact us. ' \n },\n {\n id: 7,\n title: \"What are Fuzu Points?\",\n text:\n \"Fuzu Points is Fuzu’s own reward program. You get Fuzu Points for being active on the platform and for being committed to constantly growing and pushing yourself for success. You can use them to get discounts from Fuzu Premium products. You can access your Fuzu Points page by clicking the coin icon on the header (on laptop/desktop) or your profile picture (on mobile).\"\n }\n ]\n }\n ],\n terms: [\n {\n title: \"What is FUZU?\",\n text:\n \"FUZU is your online career coach and employment service with a social twist. With FUZU, users can dream about the future, plan their careers ahead, learn new skills and competencies and to find jobs that match with their unique talent and profile. For employers, FUZU allows them to attract talent, find candidates that match with their requirements, conduct headhunting and continuously keep their staff skills up to date with the job market demands.
\"\n },\n {\n title: \"What are these Terms about?\",\n text: `These FUZU Service Terms together with the Privacy Policy and information that may be provided within the Service (collectively \"Terms\") govern Your (later on referred to as \"You\", \"Your\" or \"End User\") use of the service, site, content and software (collectively the \"Service\"). By registering for or using the Service or any portion of it You accept the Terms.\n \n The Terms constitute an agreement between You and FUZU Ltd (corporate ID 2546225-2) with its address at Lapinlahdenkatu 16, 00180 Helsinki, Finland including its affiliates and suppliers (collectively \"FUZU\"), defining Your (\"End User\") and FUZU’s rights and responsibilities with respect to the Service.\n \n You may use the Service only in compliance with these Terms and all applicable local, state, national, and international laws, rules and regulations.
`\n },\n {\n title: \"Who can use the Service?\",\n text:\n \"You can register for the Service as an individual user (Individual) under the Job Seeker-section of the Service or as a company, organization, government, or other legal entity user (collectively Organization) under the Employer section of the Service. To use the Service, You must be at least eighteen (18) years of age. If You are under eighteen (18) years of age, or at least eighteen (18) years of age but a minor where You live, You must have Your parent, legal guardian or legally competent representative of the Organization you represent accept Your registration on Your behalf and approve Your use of the Service. Anyone completing the registration must be legally competent. If you are accepting these Terms and using the Service on behalf of an Organization, you represent and warrant that you are authorized to do so.\"\n },\n {\n title: \"Registering or Terminating the use of the Service\",\n text: `To use a Service You may need to register and create a FUZU account with username and a password. You may need to provide us with certain personal information or information about the Organization you represent. FUZU may verify Your email address before account can be used or FUZU may use SMS based verification service to confirm Your identity. In case of Organizations, Fuzu may additionally validate the company identity (Company ID, Tax ID and alike) with the help of local authorities.\n \n The creation of a FUZU Account will require data transmission. Data transmission costs may apply and are borne by the End User.\n \n You agree to provide truthful and complete information when You register for the Service and to keep that information updated to Your best ability. Truthful information helps You to take full benefit of the Service. You must take due care to protect Your username and password against misuse by others and promptly notify FUZU about any misuse. You, and Your parent or legal guardian, if You are a minor, are personally responsible for any use of the Service.\n \n You may terminate Your registration if You no longer wish to use the Service by contacting Fuzu user support or by sending an email to support@fuzu.com Termination means that You will no longer have access to the Service. FUZU may terminate Your registration or restrict Your access to certain parts of the Service if FUZU reasonably believes that You have breached the Trms or with prior notice if You have not used the service over the past six (6) months.\n \n Except as set forth in the Privacy Policy, FUZU is not responsible for any removal or loss of the information or content You have submitted to the Service. When information or content is removed from the Service by either You or FUZU, traces or copies may still remain elsewhere.`\n },\n {\n title: \"Who owns and what?\",\n text: `FUZU grants You a non-exclusive, non-transferable license, revocable at any time at FUZU’s sole discretion, to access and use the Service strictly in accordance with the Terms. Use of the Service does not grant You any intellectual property rights in or to any information or content in the Service.\n \n As part of the Service, FUZU may provide You with content developed by FUZU or third parties that is owned by FUZU and accessed within the Service (\"FUZU Content\") or provide access to third party content (\"External Content\") provided by Organizations using the Service or third party platforms such as YouTube. Content covering both FUZU Content and External Content is referred to as \"Content\". FUZU grants You a non-exclusive and perpetual license to use FUZU Content for the purpose it is intended, unless otherwise defined in the applicable Terms or the purchase order. Some FUZU Content may have geographical restrictions. You are bound by any restrictions applicable to specific FUZU Content You obtain through the Service. Any license acquired to third-party FUZU Content is a binding agreement between You and the third-party FUZU Content provider. You have only the rights to the FUZU Content which are expressly granted here. With regards to External Content FUZU claims no ownership of content that is accessed through FUZU, but operated from a third party platform.\n \n As part of the Service, FUZU may provide You with a mobile application or client developed by FUZU (\"App\"). Your use of App may be subject to separate terms and conditions that You must accept before using the App. If there are no separate terms and conditions applicable to such App, the following terms apply: FUZU grants to You a limited, non-exclusive, non-transferable right to install and use the App on Your computer and/or mobile device. You may not distribute, transfer the right to use, modify, translate, reproduce, resell, sublicense, rent, lease, reverse engineer, or otherwise attempt to discover the source code of or make derivative works of the App. For open source licensed software, applicable open source license terms apply.\n \n You, as Individual or representative of an Organization, may be able to submit information or other types of digital content, such as photos, logos, other forms of trademarks, video, audio or text (\"Data\") relevant to You or Your Organization to the Service. FUZU does not claim ownership in Your Data, unless agreed upon through separate agreement. Your submission of Data does not transfer ownership of rights of the Data to FUZU. FUZU is only transmitting the Data and is not responsible for editorial control over it. By submitting Data to the Service You grant FUZU a world-wide, non-exclusive, sub-licensable, assignable, fully paid-up, royalty-free, perpetual and irrevocable license to use, copy, publicly perform, display, distribute in any media and modify the Data to incorporate the Data into other works, and to grant similar sublicenses to the extent necessary for FUZU to provide the Service. You may be able to adjust this grant in the privacy and other settings of the Service.\n \n You are solely responsible for taking backup copies of the data You store on the Service, including Content You upload. If the Service is discontinued or canceled, FUZU may permanently delete Your data. FUZU has no obligation to return data to You after the Service is discontinued or canceled.`\n },\n {\n title: \"What are the do's and don'ts?\",\n text: `You agree to:
\n \n Comply with applicable laws, the Terms and good manners; \n As Individual, use the Service only for Your personal, career development related purposes; \n As Organization, use the Service to identify, develop and foster professional talent or to promote your Organization; \n As Individual, keep only one user account, and keep its information up to date and truthful; \n As Organization, ensure that the account information is up to date and truthful; \n As Individual, not send job applications or conduct tests on behalf of somebody else or otherwise use somebody else’s user account or identity on FUZU Service; \n As Organization, not publish campaigns, news updates or other content that is meant to mislead or scam Individual users or other Organizations; \n Not submit unlawful, offensive, inaccurate, misleading, abusive, pornographic, harassing, libelous or otherwise inappropriate Data; \n Obtain any consents, permission or licenses that may be legally required for You to submit any Data; \n Respect the privacy of others; \n Not distribute or post spam, unreasonably large files, chain letters, pyramid schemes, viruses; or \n Not use any other technologies or initiate other activities that may harm the Service, or the interest or property of the Service users; \n Not to use any automated systems or means to access, acquire, copy or monitor any part of the service. \n \n \n FUZU may, but has no obligation to:
\n \n Monitor or moderate any Content or Data; \n Remove any Data from the Service; \n Restrict access to any part of the Service at any time in its sole discretion; and \n Block Users from accessing the Service in case violation of these Terms. \n \n `\n },\n {\n title: \"What about accessing and using the Content?\",\n text: `Before downloading or accessing any Content, please check whether the content which You wish to access is restricted by age or marked as potentially ‘offensive’ or ‘explicit’. FUZU shall not be responsible for any claims or offense caused or suffered by You accessing such Content.
\n \n You agree:
\n \n To use the Content only for Your personal, non-commercial purposes; \n To use the Content in accordance with the restrictions set out in the applicable laws, additional terms, guidelines and policies that apply to the specific content; \n Not to make copies, give, sell, resell, loan, rent, offer, broadcast, send, distribute, transfer, communicate to the public, reproduce, modify, display, perform, commercially exploit or make the Content available unless otherwise authorized in the applicable Terms and to advise FUZU promptly of any such unauthorized use; \n Not to remove, circumvent, reverse engineer, decrypt, or otherwise alter or interfere with any applicable usage rules or attempt to circumvent digital rights management or copy protection features associated with the Content or any other technologies used to control the access to or use of the Content or its identifying information; \n Not to use any automated systems or means, except for those provided by us, for the selection or downloading of the Content; \n Not to give out Your password or otherwise allow other people to access the Content. The restrictions on copying that apply to applicable media also apply to the Content accessed as part of this Service. \n \n \n The Content is owned and/or controlled by FUZU and/or its respective licensors and is protected by intellectual property laws. The third party Content provider is solely responsible for any Content it provides, any warranties to the extent that such warranties have not been disclaimed and for any claims You may have relating to that Content or Your use of that Content. However, FUZU may enforce the third party Content license terms against You as a third party beneficiary of those terms. The third party Content providers are third-party beneficiaries under these Terms and may enforce the provisions that directly concern the Content in which they have rights. FUZU may be acting as an agent for third party Content provider in providing the Content to You. FUZU is not a party to the transaction between You and the third party Content provider for such Content.
\n `\n },\n {\n title: \"Allegations of Copyright Infringement\",\n text: `You may notify FUZU of copyright infringement on the Service by providing notice (a) by email with \"Copyright Notification\" in the subject line to info@fuzu.com, (b) by a document titled \"Copyright Notification\" mailed to FUZU Oy, Lapinlahdenkatu 16, 00180 Helsinki, Finland or (c) via the online form, if available. Your notice must:
\n \n \n identify the original copyrighted work You claim has been infringed; \n identify the content on the Service that You claim is infringing the copyrighted work. Please provide enough detail for FUZU to locate the allegedly infringing content on the Service; \n provide Your contact information, including Your full name, mailing address, telephone number, and email address, if available; \n provide a statement that You have a good faith belief that the use of the content in the manner complained of is not authorized by the copyright owner, its agent, or the law; \n 5. provide this statement: \"I swear, under penalty of perjury, that the information in this notification and complaint is truthful and that I am the rightful owner of the copyright, or am authorized to act on behalf of the copyright owner of an exclusive right that is infringed.\"; and \n provide Your signature, as applicable. \n `\n },\n {\n title: \"How does Fuzu inform End-Users about the changes?\",\n text:\n \"FUZU may post notices within the Service. FUZU may also send You notices about new or changing Services to the email address or telephone number You have provided to us. You are deemed to have received such notices at the latest within seven (7) days from FUZU sending or posting those. Your continued use of the Services constitutes Your receipt of all notices regardless of delivery method.\"\n },\n {\n title: \"What fees am I subject to?\",\n text: `Your use of the Service may be or may become subject to charges. These charges may cover parts or the entire Service.\n \n Any fees charged by FUZU will be announced separately in connection with the Service.\n \n Use of the Service involves transmission of data through Your service provider’s network. Prices listed within the Service DO NOT include possible data transmission, text message, voice or other service provision charges by Your network service provider.\n \n FUZU assumes no responsibility for the payment of any charges of Your service providers.`\n },\n {\n title: \"What are the payment terms?\",\n text: `\"Order\" shall mean the selection of payable Content or Service and/or subscription to Content or Service offered by FUZU and available in the Service and submission of payment method, as well as submitting the order by selecting the \"buy\", \"ok\", \"I accept\", \"confirm\", \"pay\" or other similar confirmation of acceptance in the order flow or providing other indication of acceptance terms that are presented to You in the order flow.\n \n To place an Order within the Service, You must have reached the age of legal competence according to the applicable legislation. If You have not reached the age of legal competence, You may place Orders only with the prior consent of Your parent, legal guardian or the Organization you represent.\n \n You agree that all Orders shall be legally valid and binding. All Orders are subject to acceptance by FUZU.\n \n You may pay by credit or debit card, network service provider billing, mobile money, or other payment methods if available.\n \n Your credit or debit card must have a billing address in the country where the Content or Service is offered by the Service. FUZU will charge Your credit card or debit Your bank account within a reasonable time after You have made Your Order. All credit card payments are subject to validation checks and authorisation by the card issuer.\n \n If You choose network service provider billing, charges will appear on Your mobile phone bill or be deducted from Your prepaid account if it is a prepaid account. Some network service providers may subject Your usage of the Service to additional terms and conditions including placing limits on the amount of charges possible with network service provider billing. Charges in excess of network service provider limits or account balance may be rejected.\n \n You agree to pay the charges related to Your Order, to ensure that the instrument of payment is valid at the time of the Order, that You are the rightful holder of the instrument and that the instrument is used within its credit limits.\n \n The Content or Service that is delivered is licensed to You. You agree to use such Content or Service solely as permitted in these Terms and in any additional terms that You may be presented in the order flow.\n \n The Service may offer subscriptions. You authorise the Service to place a periodical charge during the period of the subscription. The Service may also offer a trial period. If Your Order involves a trial period (also known as try-and-buy), You may be charged when the trial period expires, unless You cancel in accordance with the subscription/trial terms.\n \n The prices in the Service may change from time to time. Prices include applicable taxes in effect at the time of Your transaction, unless otherwise stated, and need to be paid in full to FUZU. Depending on local tax laws and regulations, You may be required to pay additional taxes, such as the withholding tax. There may be instances where You incur additional charges from Your bank or credit card provider based on currency conversion rates used and/or additional fees assessed. FUZU assumes no responsibility for the payment of bank or any other third party service fees, charges or taxes.`\n },\n {\n title: \"What about service availability and technical requirements?\",\n text: `The availability of Content and the Service may vary and is subject to FUZU’s sole discretion. FUZU expressly disclaims any representation or warranty that any particular Content or Service will be available. The Service may not be available in all countries and may be provided only in selected languages. The Service, operations and some features may also be dependent on the network, compatibility of the devices used and the content formats supported.\n \n To access the Service, You may need to download a specific piece of App developed by FUZU or by another party.\n \n FUZU may, in its sole discretion, change, correct or discontinue the Service in whole or in part. The Service may not be available during maintenance breaks and other times. To ensure You have the latest FUZU device software and applications, Your device may automatically check for the availability of App updates from FUZU. If any are detected You will be prompted to approve the installation. You may disable automatic checking for updates through settings in Your device. You may also install App update through available software update channels. If FUZU considers a App update to be important or critical You may not continue using the previous version of the App. FUZU may prevent Your use of the previous version of the App or Service until You install the update.\n \n FUZU may disable any Content, Service or App contained in Your Service account for any reason and remove any Content or App and/or disable copies of any application on Your device in order to protect the Service, application providers, wireless carriers over whose network You access the service or any other affected or potentially affected parties.\n \n A particular service may be a pre-release version, for example a beta release, and may not work in the way a final version works. FUZU may significantly change any version of Service or App or decide not to release a final version.`\n },\n {\n title: \"Can I cancel my Order?\",\n text: `You agree to the electronic delivery of Content or Service being initiated concurrently with the placement of Your Order. You will not be able to cancel Your Order once it has been processed. The nature of the Content is such that it cannot be returned.\n \n In the event that after Your Order You discover and promptly inform FUZU within 48 hours that (a) the Content or Service You have ordered is faulty; (b) the Content or Service FUZU delivers to You does not match the description of the Content or Service You ordered via the Service; or (c) technical problems delayed or prevented delivery of Your Content or Service or accidental multiple orders caused by such technical problems, Your sole and exclusive remedy with respect to such Content or Service will be either replacement of such Content or Service, or refund of the price paid for such Content or Service, as determined solely by FUZU. Otherwise, no refunds are available. If You encounter any of the above issues, please contact FUZU.`\n },\n {\n title: \"What happens with my social and location data?\",\n text:\n \"You may use features in the Service to share Your location, status, content, Data or information about You as an Individual or representative of an Organization or to interact with other users, sites and services. By using these features You agree that FUZU may use and provide that information to other services and persons with whom You choose to interact or share this information with. Users of these services and persons, such as Your contacts or people or Organizations You Follow, may see or get to know Your location, status and/or personal information. In using these features You agree not to share information, Content or Data or to link to any service or site that: (a) contains content or other material that is illegal or inappropriate; or (b) exploits intellectual property rights without authorisation or encourages users to piracy. Any interaction does not involve FUZU and is solely between You and the other user(s).\"\n },\n {\n title: \"How to provide feedback to FUZU?\",\n text:\n 'By submitting any ideas, feedback and/or proposals (\"Feedback\") to FUZU through the Service or other means, You acknowledge and agree that: (1) FUZU may have similar development ideas to the Feedback; (2) Your Feedback does not contain confidential or proprietary information of You or any third party; (3) FUZU is not under any obligation of confidentiality with respect to the Feedback; (4) FUZU may freely use, distribute, exploit and further develop and modify Feedback for any purpose; and (5) You are not entitled to compensation of any kind from FUZU.' \n },\n {\n title: \"Links to third party sites and content\",\n text: `FUZU may include access to sites and services on the Internet or preloaded clients that enable You to interact with sites and services that are owned or operated by third parties and that are not part of the Service. You must review and agree to the terms and conditions of these sites or services before using these sites or services.\n \n FUZU has no control over the third party content, sites or services and assumes no responsibility for services provided or material created or published on these third-party sites or services. A link to a third-party site does not imply that FUZU endorses the site or the products or services referenced in the site.\n \n In addition, You and other users may create content and links to content within the Service that has not otherwise been submitted to the Service. FUZU is not responsible for this type of content or links.`\n },\n {\n title: \"FUZU and advertisements?\",\n text:\n \"Service may include advertisements. Advertisements may be targeted to the content or information stored on the Service, queries made through the Service, or other information.\"\n },\n {\n title: \"How does Fuzu take care of Your privacy?\",\n text:\n \"The Privacy Policy and any additional privacy information made available to You govern the use of data related to You as an Individual user or as a representative of an Organization.\"\n },\n {\n title: \"Indemnification\",\n text:\n \"You agree to defend and indemnify FUZU from and against all third party claims and all liabilities, assessments, losses, costs or damages resulting from or arising out of (i) Your breach of the Terms, (ii) Your infringement or violation of any intellectual property rights, other rights or privacy of a third party, or (iii) misuse of the Service by a third party where the misuse was made possible by Your failure to take reasonable measures to protect Your username and password against misuse.\"\n },\n {\n title: \"Limitation of liability\",\n text: `The Service is provided on \"AS IS\" and \"AS AVAILABLE\" basis. FUZU does not warrant that the Service will be uninterrupted or error or virus-free. No warranty of any kind, either express or implied, including but not limited to warranties of title, non-infringement, merchantability, or fitness for a particular purpose, is made in relation to the availability, accuracy, reliability, information or content of the Service. You expressly agree and acknowledge that the use of the Service is at Your sole risk and that You may be exposed to content from various sources.\n \n Except for liability for death or personal injury caused by its gross negligence or intentional misconduct, FUZU is not liable for any direct damages caused by Your use or inability to use the Service. In no case will FUZU be liable for any indirect, incidental, punitive or consequential damages resulting from Your use or inability to use the Service.`\n },\n {\n title: \"How long are these Terms valid?\",\n text:\n \"The Terms neither exclude nor limit any of Your mandatory rights in Your country of residence that cannot by law be waived. If a provision of the Terms is found to be invalid, the remaining provisions will not be affected and the invalid provision will be replaced with a valid provision that comes closest to the result and purpose of the Terms. In the event one or more provisions of these Terms are not relevant to Your use of the Service, it shall not impact the validity or enforceability of any other provision of the Terms or the Terms as a whole. If there is any conflict between these FUZU Service Terms and the Privacy Policy, the provisions of these FUZU Service Terms prevail. The provisions of the Terms that are intended to survive termination of Your registration remain valid after termination.\"\n },\n {\n title: \"Choice of law for these Terms\",\n text: \"The Terms are governed by the laws of Finland without regard to its conflicts of law provisions.\"\n },\n {\n title: \"Making changes to the Terms\",\n text: `FUZU may modify the Terms at any time without prior notice. If the Terms are changed in a material, adverse way, FUZU will provide a separate notice advising of the change.\n \n You are responsible for regularly reviewing the Terms. Your continued use of the Service constitutes Your consent to any changes and modification.`\n },\n {\n title: \"Intellectual property\",\n text:\n \"The Service, Content and App are protected under international copyright laws. FUZU claims copyrights in its Service, Content, and App to the maximum extent of the law. Subject to the Terms, FUZU retains all right, title and interest in the Service, its Content, the App and in all other FUZU products, software and other properties provided to You or used by You through the Service.\"\n },\n {\n title: \"Transferring rights and obligations\",\n text:\n \"FUZU may transfer its rights and obligations under these Terms to its corporate parent, its subsidiaries, or to any company under common control with FUZU. Additionally, FUZU may assign its rights and obligations under these Terms to a third party in connection with a merger, acquisition, sale of assets, by operation of law or otherwise.\"\n }\n ],\n privacyPolicyData: [\n {\n title: \"What information do we collect?\",\n text: `\n Your profile and activities:
\n We collect the content and other types of personal data you (“User”) provide when you use the Service. This includes personal data provided while registering to FUZU, building of your personal profile, sharing of updates, applying for jobs, taking courses and different types of tests and communicating with other users. This can include information in or about the content you provide, such as the location or the date the data was created. We also collect information about how you use our Service, such as the types of content you view or engage with or the frequency and duration of your activities. We may, in accordance with the applicable law, record your communication with our customer care or with other such contact points.
\n \n Your connections:
\n We collect information about the other users and groups you are connected to and how you interact with them, such as the people you communicate with the most or the groups you like to share updates with.
\n \n Your payment information:
\n When you purchase FUZU paid-for Premium features we collect information about the purchase or transaction. If credit or debit card is used for the transaction, we will only store the card data with your permission. General data we collect and store include billing and contact details, such as your phone number.
\n \n Your devices:
\n To continuously improve the Service we collect information about the computers, phones, or other devices where you install or access our Services, depending on the permissions you’ve granted.
\n `\n },\n {\n title: \"Why Do We Process Personal Data?\",\n text: `\n FUZU may process your personal data for the following purposes. One or more purposes may apply simultaneously.
\n \n \n Providing products and services
\n We may use your personal data to provide you with our Services and content, to process your requests or as otherwise may be necessary to perform the contract between you and FUZU, to ensure the functionality and security of our Services and content, to identify you as well as to prevent and investigate fraud and other misuses.
\n \n \n Accounts
\n Requires an account to help you manage your personal information, content and preferences.
\n \n \n Developing and managing services and content
\n We may use your personal data to develop and manage our Services, software, content, customer care, sales and marketing. We may combine personal data collected in connection with your use of a particular Service or content with other personal data we may have about you, unless such personal data was collected for a different purpose.
\n \n \n Communicating with you
\n We may use your personal data to communicate with you, for example to inform you that our Services have changed or to send you critical alerts and other such notices relating to our products and/or Services and to contact you for customer care related purposes.
\n \n \n Marketing, advertising and making recommendations
\n We may contact you to inform you of new services, content or promotions we may offer and to conduct market research when we have your consent or it is otherwise allowed. We may use your personal data to personalise our offering and to provide you with more relevant ads and services, for example, recommend jobs or training content. This may include displaying FUZU and third-party content and ads.
\n \n \n Promote safety and security
\n We use the information we have to help verify accounts and activity, and to promote safety and security on and off of our Services, such as by investigating suspicious activity or violations of our terms or policies. We work hard to protect your account using specialists, automated systems, and advanced technology such as encryption.
\n `\n },\n {\n title: \"Do we share personal data?\",\n text: `\n Users use our Services for their own personal development or for interacting with other Users. Your personal data is shared in the following ways:
\n \n \n Users you share and communicate with:
\n You will be able to determine what information other Users see of your personal data (profile, contact information and other data) when you take part in public activities on the Service (e.g. post a comment to an article). By default, only User photo, first name and summary profile will be visible to other users. The Service includes various ways for networking with other Users, where you can decide what information is visible and what not.
\n \n \n Applying for a job:
\n When you apply for a job you consent to sharing of your profile and personal data, including application data and test results, with the employer.
\n \n \n Headhunting:
\n You may also decide to share your profile with the employers for headhunting purposes, who can then view your personal data including your user profile, test results and contact information and to communicate with you on or off the Service. Visibility to headhunters can be managed under user settings.
\n \n \n Direct communication with other users:
\n Your private communication with other Users, both individuals and employers, FUZU customer support or team remain private to you and the other party.
\n \n \n Learning and career development:
\n All activities related to learning and career development conducted on the Service, including taking courses and tests are by default private and cannot be seen by other users. You may choose to take a skill test to verify and accredit a skill, which can then be published on your profile or shared proactively with other users, including employers. This does not apply to tests taken in connection with job applications, which are by default visible to employers.
\n \n \n User updates
\n Your updates and postings on FUZU are by default visible to all FUZU Users, unless targeted for a specific group of users.
\n Please consider carefully before disclosing any personal data or other information that might be accessible to other users.
\n \n `\n },\n {\n title: \"Sharing within FUZU companies or third parties:\",\n text: `\n We may share your personal data with FUZU companies or third parties who process personal data for FUZU for the purposes described in this Policy. This may include for example billing through your network service provider or otherwise, delivery of your purchases, providing services including customer service, managing and analysing consumer data, credit checks, conducting research and managing marketing and other such campaigns. When you purchase a FUZU service from us with a network service provider plan, we may need to exchange information with your network service provider to provide you with such service.
\n \n \n Sharing of information with third parties includes entities providing advertising, measurement and analytics services.
\n \n \n We want our advertising to be as relevant and interesting as the other information you find on our Services. With this in mind, we use all of the information we have about you to show you relevant ads. We do not share information that personally identifies you (personally identifiable information is information like name or email address that can by itself be used to contact you or identifies who you are) with advertising, measurement or analytics partners unless you give us permission. We may provide these partners with information about the reach and effectiveness of their advertising without providing information that personally identifies you, or if we have aggregated the information so that it does not personally identify you. For example, we may tell an advertiser how its ads performed, or how many people viewed their ads or installed an app after seeing an ad, or provide non-personally identifying demographic information (such as 18-year-old female, in Nairobi, who likes software engineering) to these partners to help them understand their audience or customers, but only after the advertiser has agreed to abide by our advertiser guidelines.
\n \n \n These authorised third parties are not permitted to use your personal data for any other purposes. We require them to act consistently with this Policy and to use appropriate security measures to protect your personal data.
\n \n \n International transfers of personal data
\n Our products and Services may be provided using resources and servers located in various countries around the world. Therefore, your personal data may be transferred across international borders outside the country where you use our Services, including to countries outside the European Economic Area (EEA) that do not have laws providing specific protection for personal data or that have different legal rules on data protection, for example, the United States of America. In such cases we ensure that there is a legal basis for such a transfer and that adequate protection for your personal data is provided as required by applicable law, for example, by using standard agreements approved by relevant authorities (where necessary) and by requiring the use of other appropriate technical and organisational information security measures.
\n \n \n Mandatory disclosures
\n We may be obligated by mandatory law to disclose your personal data to certain authorities or other third parties, for example, to law enforcement agencies in the countries where we or third parties acting on our behalf operate. We may also disclose and otherwise process your personal data in accordance with applicable law to defend FUZU’s legitimate interests, for example, in civil or criminal legal proceedings.
\n \n New owner: If the ownership or control of all or part of our Services or their assets changes, we may transfer your information to the new owner.
\n`\n },\n {\n title: \"How do we address the privacy of children?\",\n text: `\n FUZU Service has been designed for adult Users of eighteen (18) years and above. FUZU does not knowingly collect information of children without the consent of their parents or guardians.
\n \n`\n },\n {\n title: \"How do we address data quality?\",\n text: `\n We take reasonable steps to keep the personal data we possess accurate and to delete incorrect or unnecessary personal data.
\n \n We encourage you to access your personal data through your account from time to time to ensure that it is up to date.
\n `\n },\n {\n title: \"What steps are taken to safeguard personal data?\",\n text: `\n Privacy and security are key considerations in the creation and delivery of our Services. We take appropriate steps to address online security, physical security, risk of data loss and other such risks taking into consideration the risk represented by the processing and the nature of the data being protected. Also, we limit access to our databases containing personal data to authorised persons having a justified need to access such information.
\n `\n },\n {\n title: \"How do we use cookies, pixels and web beacons?\",\n text: `\n FUZU uses cookies, pixels, web beacons and other similar technologies to operate and improve our websites and offering. We also use cookies for personalisation and to display ads. Some FUZU websites use third party advertising technologies, such as DoubleClick, to serve ads.
\n \n Our domains may include third party elements that set cookies on behalf of a third party, for example relating to third party social network.
\n `\n },\n {\n title: \"What are your rights?\",\n text: `\n You have a right to know what personal data we hold about you. You have a right to have incomplete, incorrect, unnecessary or outdated personal data deleted or updated.
\n \n You may exercise your rights by contacting us or by managing your account and choices through available profile management tools on your device and our Services. In some cases, especially if you wish us to delete or stop processing your personal data, this will also mean that we may not be able to continue to provide the Services to you.
\n \n If you choose to close your account on our Services, your personal data will generally stop being visible to others on our Services within 48 hours. We generally delete closed account information within 30 days of account closure.
\n `\n },\n {\n title: \"Who is the controller of your personal data?\",\n text: `\n FUZU Ltd (corporate ID 2546225-2), Lapinlahdenkatu 16, 00180 Helsinki, Finland is the controller of your personal data.
\n \n In addition, the FUZU affiliate providing the product or service may be a controller of your personal data. You may find the identity of the controller and its contact details by reviewing the terms and conditions of such a product or service or by using contact information provided in the applicable FUZU websites.
\n \n In matters pertaining to FUZU’s privacy practices you may also contact us at the address above or our email support@fuzu.com .
\n `\n },\n {\n title: \"Changes to this Privacy Policy\",\n text: `\n FUZU may from time to time change this Policy or change, modify or withdraw access to this site at any time with or without notice. However, if this Policy is changed in a material, adverse way, FUZU will post a notice advising of such change at the beginning of this Policy and on this site’s home page for 30 days. We recommend that you re-visit this Policy from time to time to learn of any such changes to this Policy.
\n `\n }\n ]\n};\n\nconst BrandingContext = createContext(branding);\n\nexport default BrandingContext;\n","import React, { createContext, useEffect, useContext } from \"react\";\nimport { observer } from \"mobx-react\";\nimport { withRouter } from \"react-router-dom\";\n\nimport { storeContext } from \"./store\";\nimport ServerSide from \"./ssr\";\n\nconst CountryContext = createContext({});\n\nclass CountryProviderCore extends React.Component {\n static contextType = storeContext;\n\n state = {\n country: this.props.country,\n setCurrentCountry: this.setCurrentCountry.bind(this),\n setDefaultCountry: this.setDefaultCountry.bind(this)\n };\n\n setCurrentCountry(country) {\n this.setState({ country });\n }\n\n setDefaultCountry() {\n if (!this.context.User.user?.id && !this.state.country) {\n this.setCurrentCountry(this.context.initialState?.current_country);\n }\n }\n\n componentDidUpdate() {\n const { history } = this.props;\n const isEmployerPage = history.location.pathname.includes(\"employers\");\n const isRemoveCurrentCountry = !isEmployerPage && !!this.context.User.user?.id && !!this.state.country;\n\n if (isRemoveCurrentCountry) {\n this.setCurrentCountry(null);\n }\n }\n\n render() {\n return {this.props.children} ;\n }\n}\n\nexport const CountryProvider = observer(withRouter(CountryProviderCore));\n\nexport const useDefaultCountry = () => {\n const { hydrated } = useContext(ServerSide);\n const { setDefaultCountry } = useContext(CountryContext);\n\n useEffect(() => {\n if (!hydrated) setDefaultCountry();\n }, []);\n};\n\nexport default CountryContext;\n","import React, { useState, createContext } from \"react\";\nimport { useLocation } from \"react-router-dom\";\n\nimport { useNCPWD, useInstallPWA, useAddClassStandalone, useBarona } from \"../hooks\";\nimport { landing } from \"../constants/landing\";\n\nconst LandingContext = createContext({});\n\nexport const LandingProvider = ({ children }) => {\n const { pathname } = useLocation();\n const landingType = pathname.includes(\"/employers\") ? \"b2b\" : \"b2c\";\n const [version, setVersion] = useState(landingType);\n\n useInstallPWA();\n useAddClassStandalone();\n useNCPWD();\n useBarona();\n\n return (\n {children} \n );\n};\n\nexport default LandingContext;\n","import React, { useEffect, useLayoutEffect } from \"react\";\nimport { observer } from \"mobx-react\";\nimport { Redirect, useLocation, useRouteMatch } from \"react-router-dom\";\nimport { useScreenClass } from \"react-grid-system\";\n\nimport { withRoute } from \"utils/hocs/withRoute\";\nimport useStore from \"../contexts/store\";\n\nexport const withTrackedRoute = Component => {\n const TrackedComponent = withRoute(\n observer(props => {\n const { trackRouteChange } = useStore(\"Tracking\");\n const { user } = useStore(\"User\");\n const {\n location: { pathname },\n match: { params, path },\n history: { listen }\n } = props;\n\n useEffect(() => {\n return listen((location, action) => {\n if (location?.pathname !== pathname && action === \"PUSH\" && user?.id)\n trackRouteChange({\n url: window?.location?.href,\n match_path: path,\n params\n });\n });\n }, []);\n\n return ;\n })\n );\n\n return TrackedComponent;\n};\n\nexport const withTracking = (Component, event, params) => {\n const TrackedComponent = observer(props => {\n const { track } = useStore(\"Tracking\");\n const { path } = useRouteMatch();\n\n useLayoutEffect(() => {\n track(event, { match_path: path, ...params });\n }, []);\n\n return ;\n });\n\n return TrackedComponent;\n};\n\nexport const Responsive = (DesktopComponent, MobileComponent) => props => {\n const isMobile = /sm|xs/.test(useScreenClass());\n\n return React.createElement(isMobile ? MobileComponent : DesktopComponent, props);\n};\n\nexport const FeatureHidden = ({ feature, children, fallback = null }) => {\n const { features } = useStore(\"Premium\");\n\n return features?.[feature]?.activated ? fallback : children;\n};\n\nexport const withWizardRedirect = Component => {\n return observer(props => {\n const { user } = useStore(\"User\");\n const { pathname, state } = useLocation();\n\n return !isNaN(user?.profile_completeness_percentage) && user?.profile_completeness_percentage <= 15 ? (\n \n ) : (\n \n );\n });\n};\n","import React, { useContext, useEffect } from \"react\";\nimport { useHistory, useLocation } from \"react-router-dom\";\nimport { useScreenClass } from \"react-grid-system\";\n\nimport light_fuzu_logo from \"images/new_fuzu_logo_yellow.png\";\nimport baronaLogo from \"images/barona-logo.png\";\nimport fuzu_logo from \"images/new_fuzu_logo_black.png\";\nimport BannerContent from \"b2c/components/BannerContent\";\nimport MtnBanner from \"b2c/components/MtnBanner\";\nimport { FirstTimeModalContent } from \"b2c/components/ModalContents\";\nimport { useModal, useNotification } from \"utils/hooks\";\nimport { clearBrowserHistory } from \"b2c/utils/helpers\";\nimport ServerSide from \"../contexts/ssr\";\nimport ThemeContext from \"../contexts/theme\";\nimport useStore from \"../contexts/store\";\nimport BrandedContext, {\n isCustomPlatformLoggedIn,\n isNormalFuzu,\n isWhitelabelled,\n isKepsa,\n isWhitelabelledOrCustomBranded\n} from \"../contexts/branded\";\nimport CountryContext from \"../contexts/country\";\nimport { useShowModalAllowNotify } from \"./index\";\n\nexport const useHeader = ({ isBarona }) => {\n const { ssr } = useContext(ServerSide);\n const Theme = useContext(ThemeContext);\n const {\n feature_toggles: { mtn_pulse_banner },\n impersonate_user: impersonateUser\n } = useStore(\"initialState\");\n\n const {\n user,\n navigation,\n toggleUserAccountMenu,\n userAccountMenu,\n Profile: { userDevice }\n } = useStore(\"User\");\n const { unreadCount } = useStore(\"Messages\");\n const { state: { loading } = {}, header: { header_text_color = \"white\", logo = light_fuzu_logo } = {} } =\n useStore(\"HomeLayout\");\n\n const { name: brandName, employer, landing_url: loadingUrl } = useContext(BrandedContext);\n const whitelabelledOrCustomBranded = isWhitelabelledOrCustomBranded();\n const { country } = useContext(CountryContext);\n const { pathname } = useLocation();\n const isHeroCard = pathname.indexOf(\"/career-hero\") !== -1;\n const activateBanner = useNotification(\n ,\n \"primary\",\n window.localStorage?.setItem(\"fuzuBannerShown\", true)\n );\n const notifyPulsers = useNotification( , \"success300\");\n const { push } = useHistory();\n const screen = useScreenClass();\n const isMessage = pathname === \"/messages\";\n\n const homePath = country?.slug ? `/${country?.slug}` : \"\";\n const employers = /employers/.test(pathname);\n const isCompaniesPage = /companies/.test(pathname);\n const normalFuzu = isNormalFuzu();\n const isKepsaBrand = isKepsa();\n const customPlatformLoggedIn = isCustomPlatformLoggedIn() || (isKepsaBrand && user?.id);\n const isMobile = [\"sm\", \"xs\"].includes(screen);\n const isShowHeader = !navigation.mobile && isMessage && isMobile;\n const isHome = pathname === \"/home\";\n const headerClass = loading && !ssr ? \"loading\" : \"loaded\";\n const { isShowNotificationModalAllowNotify, openNotificationModalAllowNotify } = useShowModalAllowNotify();\n let timeout;\n const openFirstTimeModal = useModal( , \"\");\n const whitelabelled = isWhitelabelled();\n\n useEffect(() => {\n if (\n user?.b2c_onboarding_tutorial_completed === false &&\n user?.onboarding_steps_completed &&\n !whitelabelled &&\n !loading &&\n !isBarona &&\n isHome\n ) {\n clearBrowserHistory();\n\n openFirstTimeModal({ isDisableWindowScroll: true });\n }\n }, [user?.b2c_onboarding_tutorial_completed, loading, navigation, pathname]);\n\n useEffect(() => {\n if (\n user?.b2c_onboarding_tutorial_completed &&\n user?.onboarding_steps_completed &&\n isShowNotificationModalAllowNotify &&\n !userDevice?.allowPushNotifications\n ) {\n timeout = window.setTimeout(() => {\n openNotificationModalAllowNotify();\n }, 30000);\n }\n\n return () => {\n window?.clearTimeout(timeout);\n };\n }, [user?.b2c_onboarding_tutorial_completed, user?.onboarding_steps_completed, userDevice?.allowPushNotifications]);\n\n const headerLogo = isBarona\n ? baronaLogo\n : (whitelabelledOrCustomBranded && employer?.logo) ||\n logo ||\n (header_text_color === \"black\" ? fuzu_logo : light_fuzu_logo);\n\n useEffect(() => {\n if (!window.localStorage?.getItem(\"fuzuBannerShown\") && user?.id && pathname !== \"/home\") {\n activateBanner();\n }\n if (mtn_pulse_banner && pathname === \"/uganda\") notifyPulsers();\n }, [pathname, user]);\n\n return {\n Theme,\n unreadCount,\n brandName,\n loadingUrl,\n isHeroCard,\n push,\n homePath,\n employers,\n isCompaniesPage,\n normalFuzu,\n customPlatformLoggedIn,\n isShowHeader,\n headerClass,\n user,\n headerLogo,\n navigation,\n toggleUserAccountMenu,\n userAccountMenu,\n pathname,\n impersonateUser\n };\n};\n","import { useEffect } from \"react\";\n\nimport useStore from \"b2c/contexts/store\";\nimport { updateUserDevice } from \"b2c/utils/api/profile\";\nimport { notificationPermissionTypes } from \"b2c/constants/main\";\nimport { getNotificationPermission, getPushSubscription, getUserDeviceData } from \"b2c/utils/helpers\";\n\nlet messageChannel;\n\nconst useServiceWorker = () => {\n const {\n User: {\n user,\n Profile: { userDevice },\n setNotificationPrompt,\n Notifications: { incrementNotificationsCount, setNotificationsCount, updateCounterBadge }\n }\n } = useStore();\n const isLoggedIn = Boolean(user?.id);\n const isNotificationsAllowed = getNotificationPermission() === notificationPermissionTypes.granted;\n const { timeZone, language, userAgent } = getUserDeviceData();\n\n useEffect(() => {\n if (!isLoggedIn || !isNotificationsAllowed) {\n return;\n }\n\n getPushSubscription(userDevice?.deviceId, setNotificationPrompt).then(({ deviceId, subscription }) => {\n if (subscription) {\n updateUserDevice(deviceId, { push_notification_creds: subscription, timeZone, language, userAgent });\n }\n });\n }, [isLoggedIn]);\n\n useEffect(() => {\n messageChannel = messageChannel || new MessageChannel();\n\n messageChannel.port1.onmessage = e => {\n const { unread_count: unreadCount } = e.data.payload || {};\n\n if (unreadCount !== undefined) {\n setNotificationsCount(unreadCount);\n updateCounterBadge(unreadCount);\n } else {\n incrementNotificationsCount();\n }\n };\n }, []);\n};\n\nexport default useServiceWorker;\n","import React, { useContext, useEffect } from \"react\";\nimport { ScreenClassContext } from \"react-grid-system\";\n\nimport { useDocumentTitle } from \"utils/hooks\";\nimport baronaMobile from \"images/b2c/landing-page/aboutBaronaMobile.jpg\";\nimport baronaDesctop from \"images/b2c/landing-page/aboutBaronaDesktop.jpg\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport BaronaMessage from \"../BaronaMessage\";\nimport BaronaIntroduction from \"../BaronaIntroduction\";\nimport BaronaCeo from \"../BaronaCeo\";\nimport BaronaHowItWorks from \"../BaronaHowItWorks\";\nimport BaronaContactUs from \"../BaronaContactUs\";\nimport BaronaHeading from \"../BaronaHeading\";\n\nconst AboutBarona = () => {\n const screen = useContext(ScreenClassContext);\n const isSm = [\"xs\", \"sm\"].includes(screen);\n const { t } = useTranslation();\n\n useEffect(() => {\n if (window.scrollY) {\n window.scroll(0, 0);\n }\n }, []);\n\n const backgroundImage = () => {\n if (isSm) {\n return baronaMobile;\n }\n\n return baronaDesctop;\n };\n\n useDocumentTitle(t(\"about.meta_title\"));\n\n return (\n <>\n \n \n \n \n \n \n >\n );\n};\n\nexport default AboutBarona;\n","import React from \"react\";\n\nimport lassiBarona from \"images/b2c/landing-page/lassiBarona.png\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport { Container, Content, ImageContent, Text, Name } from \"./styled\";\n\nconst BaronaCeo = () => {\n const { t } = useTranslation();\n\n return (\n \n \n \n \n \n \n “{t(\"about.ceo_description\")}” \n Lassi Määttä, {` ${t(\"about.ceo_position\")}`} \n
\n \n \n );\n};\n\nexport default BaronaCeo;\n","import styled from \"styled-components\";\n\nexport const Container = styled.div`\n background: #f3f3f3;\n padding: 32px 16px;\n\n @media screen and (min-width: 1008px) {\n padding: 64px 16px;\n }\n\n @media screen and (min-width: 1440px) {\n padding: 64px 0;\n }\n`;\n\nexport const Content = styled.div`\n max-width: 880px;\n width: 100%;\n\n @media screen and (min-width: 768px) {\n margin: 0 auto;\n\n display: flex;\n flex-direction: row-reverse;\n gap: 40px;\n }\n`;\n\nexport const ImageContent = styled.div`\n width: 144px;\n height: 144px;\n margin: 0 auto 16px;\n border-radius: 100%;\n\n img {\n max-width: 100%;\n max-height: 100%;\n }\n\n @media screen and (min-width: 768px) {\n width: 296px;\n height: 296px;\n margin: 0;\n flex: none;\n }\n`;\n\nexport const Text = styled.p`\n color: #212121;\n font-family: Poppins;\n font-size: 14px;\n font-style: italic;\n font-weight: 400;\n line-height: 150%;\n align-self: stretch;\n margin-bottom: 16px;\n\n @media screen and (min-width: 768px) {\n font-size: 20px;\n line-height: 160%;\n }\n`;\n\nexport const Name = styled.span`\n color: #666;\n font-family: Poppins;\n font-size: 14px;\n font-weight: 400;\n line-height: 140%;\n\n @media screen and (min-width: 768px) {\n font-size: 16px;\n }\n`;\n","import React from \"react\";\nimport { RightArrowAlt } from \"@styled-icons/boxicons-regular\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\n\nimport { Container, Content, Title, GetInTouchButton, GetInTouchLink } from \"./styled\";\nimport { useLanguageAndCountryUrl } from \"../../../../hooks\";\n\nconst BaronaContactUs = ({ openContactUsModal }) => {\n const { t } = useTranslation();\n const languageAndLanguage = useLanguageAndCountryUrl();\n\n return (\n \n \n {t(\"global.contact_today\")} \n {openContactUsModal ? (\n \n {t(\"global.get_in_touch\")} \n \n ) : (\n \n {t(\"global.get_in_touch\")} \n \n )}\n \n \n );\n};\n\nexport default BaronaContactUs;\n","import styled from \"styled-components\";\nimport { Link } from \"react-router-dom\";\n\nexport const Container = styled.div`\n background-color: #f3f3f3;\n padding: 32px 16px;\n\n @media screen and (min-width: 1008px) {\n padding: 64px 16px;\n }\n\n @media screen and (min-width: 1440px) {\n padding: 64px 0;\n }\n`;\n\nexport const Content = styled.div`\n max-width: 880px;\n width: 100%;\n\n @media screen and (min-width: 768px) {\n margin: 0 auto;\n }\n`;\n\nexport const Title = styled.h3`\n color: #18181b;\n text-align: center;\n font-family: Poppins;\n font-size: 28px;\n font-weight: 500;\n line-height: 54px;\n margin-bottom: 24px;\n\n @media screen and (min-width: 768px) {\n font-size: 36px;\n line-height: 54px;\n }\n`;\n\nconst getInTouchButton = `\n border-radius: 5px;\n background: #18181b;\n width: 175px;\n height: 48px;\n align-items: center;\n padding: 8px 15px;\n color: #f3f3f3;\n font-family: Poppins;\n font-size: 16px;\n font-weight: 600;\n line-height: normal;\n letter-spacing: 0.2px;\n display: flex;\n gap: 8px;\n margin: 0 auto;\n text-decoration: none;\n cursor: pointer;\n \n svg {\n width: 16px;\n height: 16px;\n }\n \n @media screen and (min-width: 1008px) {\n &:hover {\n opacity: 0.8;\n }\n }\n \n`;\n\nexport const GetInTouchLink = styled(Link)`\n ${getInTouchButton}\n`;\n\nexport const GetInTouchButton = styled.button`\n ${getInTouchButton}\n`;\n","import React from \"react\";\n\nimport BaronaLogo from \"images/barona-logo.svg\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport { Head, HeadContent, HeadTitle, LogoContainer } from \"./styled\";\n\nconst HeadingBarona = ({ backgroundImage }) => {\n const { t } = useTranslation();\n\n return (\n \n \n \n \n \n {t(\"about.title\")} \n \n \n );\n};\n\nexport default HeadingBarona;\n","import styled from \"styled-components\";\n\nexport const Head = styled.div`\n background-image: ${({ backgroundImage }) => `url(${backgroundImage})`};\n background-repeat: no-repeat;\n background-size: cover;\n display: flex;\n padding-top: 0;\n height: 630px;\n align-items: center;\n`;\n\nexport const HeadContent = styled.div`\n margin: auto auto 64px auto;\n max-width: 1000px;\n\n @media screen and (min-width: 1008px) {\n margin: auto;\n width: 100%;\n }\n`;\n\nexport const LogoContainer = styled.div`\n margin-bottom: 32px;\n\n svg {\n width: 110px;\n height: 24px;\n }\n\n path {\n fill: #fff;\n }\n`;\n\nexport const HeadTitle = styled.h2`\n color: #fff;\n text-align: center;\n font-family: Originals2;\n font-size: 60px;\n font-weight: 400;\n line-height: 50px;\n text-align: left;\n max-width: 720px;\n\n @media screen and (min-width: 1008px) {\n font-size: 90px;\n line-height: 90px;\n text-transform: uppercase;\n }\n`;\n","import React from \"react\";\nimport howItWorks1 from \"images/b2c/landing-page/howItWorksBaronaAbout1.png\";\nimport howItWorks2 from \"images/b2c/landing-page/howItWorksBaronaAbout2.png\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport { Container, Content, Item, ImageContent, Title, Text } from \"./styled\";\n\nconst BaronaHowItWorks = () => {\n const { t } = useTranslation();\n\n return (\n \n \n - \n
\n \n \n \n
{t(\"about.how_it_works.title_1\")} \n {t(\"about.how_it_works.description_1_1\")} \n {t(\"about.how_it_works.description_1_2\")} \n \n \n - \n
\n \n \n \n
{t(\"about.how_it_works.title_2\")} \n {t(\"about.how_it_works.description_2_1\")} \n {t(\"about.how_it_works.description_2_3\")} \n {t(\"about.how_it_works.description_2_3\")} \n \n \n \n \n );\n};\n\nexport default BaronaHowItWorks;\n","import styled from \"styled-components\";\n\nexport const Container = styled.div`\n background-color: #fff;\n padding: 32px 16px;\n\n @media screen and (min-width: 1008px) {\n padding: 64px 16px;\n }\n\n @media screen and (min-width: 1440px) {\n padding: 64px 0;\n }\n`;\n\nexport const Content = styled.div`\n max-width: 1000px;\n width: 100%;\n\n @media screen and (min-width: 768px) {\n margin: 0 auto;\n }\n`;\n\nexport const Item = styled.div`\n padding: 32px 0;\n position: relative;\n\n &::after {\n content: \"\";\n background-color: #e4e4e4;\n width: calc(100% + 32px);\n height: 1px;\n position: absolute;\n display: block;\n bottom: 0;\n left: -16px;\n margin-top: -0.5px;\n display: none;\n }\n\n &:first-child {\n padding-top: 0;\n }\n\n &:first-child:after {\n display: block;\n }\n\n &:last-child {\n padding-bottom: 0;\n }\n\n @media screen and (min-width: 1008px) {\n display: flex;\n gap: 64px;\n padding: 64px 0;\n\n &:first-child {\n flex-direction: row-reverse;\n padding-top: 0;\n\n &::after {\n width: 632px;\n left: 50%;\n transform: translateX(-50%);\n }\n }\n\n &:last-child {\n padding-bottom: 0;\n }\n }\n`;\n\nexport const Title = styled.h4`\n color: #292929;\n font-family: Poppins;\n font-size: 24px;\n font-weight: 600;\n margin-bottom: 24px;\n\n @media screen and (min-width: 768px) {\n font-size: 32px;\n line-height: 140%;\n }\n`;\n\nexport const Text = styled.h4`\n color: #292929;\n font-family: Poppins;\n font-size: 16px;\n font-weight: 400;\n line-height: 140%;\n margin: 0 0 8px 0;\n\n &:last-child {\n margin: 0;\n }\n`;\n\nexport const ImageContent = styled.div`\n width: 328px;\n height: 268px;\n flex: none;\n margin: 0 auto 32px;\n\n img {\n max-width: 100%;\n max-height: 100%;\n }\n\n @media screen and (min-width: 1008px) {\n width: 460px;\n height: 374px;\n margin: 0;\n }\n`;\n","import React from \"react\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport { Container, Content, Title, Video } from \"./styled\";\nimport EmbedVideo from \"../../../../components/EmbedVideo\";\n\nconst BaronaIntroduction = () => {\n const { t } = useTranslation();\n\n return (\n \n \n {t(\"about.introduction_title\")} \n \n \n \n \n \n );\n};\n\nexport default BaronaIntroduction;\n","import styled from \"styled-components\";\n\nexport const Container = styled.div`\n background-color: #231f20;\n padding: 32px 16px;\n\n @media screen and (min-width: 1008px) {\n padding: 64px 16px;\n }\n\n @media screen and (min-width: 1440px) {\n padding: 64px 0;\n }\n`;\n\nexport const Content = styled.div`\n max-width: 880px;\n width: 100%;\n\n @media screen and (min-width: 768px) {\n margin: 0 auto;\n }\n`;\n\nexport const Title = styled.h3`\n color: #fff;\n text-align: center;\n font-family: Poppins;\n font-size: 24px;\n font-weight: 600;\n line-height: 130%;\n margin: 0 0 16px 0;\n text-align: center;\n\n @media screen and (min-width: 768px) {\n font-size: 32px;\n font-weight: 600;\n line-height: 130%;\n margin-bottom: 40px;\n }\n`;\n\nexport const Video = styled.div`\n width: 320px;\n height: 184px;\n margin: auto;\n\n iframe {\n height: 100%;\n width: 100%;\n }\n\n & > div {\n height: 100%;\n width: 100%;\n }\n\n & > div img {\n height: 100%;\n width: 100%;\n }\n\n @media screen and (min-width: 768px) {\n width: 800px;\n height: 495px;\n }\n`;\n","import React from \"react\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport { Container, Content, Title, Text } from \"./styled\";\n\nconst BaronaMessage = () => {\n const { t } = useTranslation();\n\n return (\n \n \n {t(\"about.sub-title\")} \n {t(\"about.description_1\")} \n {t(\"about.description_2\")} \n {t(\"about.description_3\")} \n \n \n );\n};\n\nexport default BaronaMessage;\n","import styled from \"styled-components\";\n\nexport const Container = styled.div`\n background-color: #fff;\n padding: 32px 16px;\n\n @media screen and (min-width: 1008px) {\n padding: 64px 16px;\n }\n\n @media screen and (min-width: 1440px) {\n padding: 64px 0;\n }\n`;\n\nexport const Content = styled.div`\n max-width: 1000px;\n width: 100%;\n\n @media screen and (min-width: 768px) {\n margin: 0 auto;\n }\n`;\n\nexport const Title = styled.h3`\n color: #212121\n font-family: Poppins;\n font-size: 28px;\n font-weight: 600;\n line-height: 120%;\n align-self: stretch;\n margin: 0 0 16px 0;\n \n @media screen and (min-width: 1008px) {\n font-size: 32px;\n line-height: 140%;\n }\n`;\n\nexport const Text = styled.p`\n color: #212121\n font-family: Poppins;\n font-size: 16px;\n font-weight: 400;\n line-height: 140%;\n align-self: stretch;\n margin: 0 0 16px 0;\n \n &:last-child {\n margin: 0;\n }\n`;\n","import React, { useContext } from \"react\";\nimport { Row, Col, ScreenClassContext } from \"react-grid-system\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport promoImage from \"images/b2c/service/promo_image.png\";\nimport Layout from \"../../../../components/Layout\";\nimport { Title, Text, Image } from \"../../../../components/Core\";\nimport { PromoSectionWrapper } from \"./styled\";\n\nconst PromoSection = () => {\n const screen = useContext(ScreenClassContext);\n const isSm = [\"xs\", \"sm\"].includes(screen);\n const { t } = useTranslation();\n\n return (\n \n \n \n \n \n {t(\"about_fuzu.title\")}\n \n \n {t(\"about_fuzu.description\")}\n \n \n \n \n \n
\n \n \n );\n};\n\nexport default PromoSection;\n","import styled from \"styled-components\";\nimport promoBG from \"images/b2c/service/promoBG.png\";\n\nexport const PromoSectionWrapper = styled.section`\n padding: 20px 0 60px;\n background-image: url(${promoBG});\n background-size: cover;\n background-position: center center;\n @media screen and (max-width: 767px) {\n text-align: center;\n padding: 20px 0;\n }\n`;\n","import React, { useContext } from \"react\";\nimport { Row, Col, ScreenClassContext } from \"react-grid-system\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport logo1 from \"images/about-disrupt.jpg\";\nimport logo2 from \"images/about-ey.jpg\";\nimport logo3 from \"images/about-itweb.jpg\";\nimport logo4 from \"images/abr-transparent.png\";\nimport { Title, Text, Card, Image } from \"../../../../components/Core\";\nimport Layout from \"../../../../components/Layout\";\nimport { RecognitionsWrapper } from \"./styled\";\n\nconst Recognitions = () => {\n const screen = useContext(ScreenClassContext);\n const isSm = [\"xs\", \"sm\"].includes(screen);\n const { t } = useTranslation();\n\n return (\n \n \n \n {t(\"about_fuzu.recognitions.title\")}\n \n \n \n \n \n \n \n {t(\"about_fuzu.recognitions.sub-title_1\")}\n \n \n \n \n \n \n \n \n \n {t(\"about_fuzu.recognitions.sub-title_2\")}\n \n \n \n \n \n \n \n \n \n {t(\"about_fuzu.recognitions.sub-title_3\")}\n \n \n \n \n \n \n \n \n \n {t(\"about_fuzu.recognitions.sub-title_4\")}\n \n \n \n \n
\n \n \n );\n};\n\nexport default Recognitions;\n","import styled from \"styled-components\";\n\nexport const RecognitionsWrapper = styled.section`\n padding: 50px 0;\n background-color: #f4f4f4;\n`;\n","import React, { useContext } from \"react\";\nimport { ScreenClassContext } from \"react-grid-system\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport jussi from \"images/2021-jussi.png\";\nimport ivy from \"images/2022-ivy.jpeg\";\nimport nikolay from \"images/2022-nikolay.jpeg\";\nimport terver from \"images/2022-terver.jpeg\";\nimport marko from \"images/2021-marko.png\";\nimport muthoni from \"images/2021-muthoni.png\";\nimport nabil from \"images/2021-nabil.png\";\nimport nelly from \"images/2021-nelly.png\";\nimport hanna from \"images/2021-hanna.png\";\nimport evelyn from \"images/2021-evelyn.jpeg\";\nimport { Title, Text, Carousel, Card, Image } from \"../../../../components/Core\";\nimport Layout from \"../../../../components/Layout\";\nimport { TeamSliderWrapper } from \"./styled\";\n\nconst TeamSliderSection = () => {\n const { t } = useTranslation();\n\n const data = [\n {\n name: \"Jussi Hinkkanen\",\n title: t(\"about_fuzu.team.jussi_role\"),\n imgsrc: jussi\n },\n {\n name: \"Nabil Anjarwalla\",\n title: t(\"about_fuzu.team.nabil_role\"),\n imgsrc: nabil\n },\n {\n name: \"Marko Myllyluoma\",\n title: t(\"about_fuzu.team.marko_role\"),\n imgsrc: marko\n },\n {\n name: \"Nelly Mutula\",\n title: t(\"about_fuzu.team.nelly_role\"),\n imgsrc: nelly\n },\n {\n name: \"Nikolay Rys\",\n title: t(\"about_fuzu.team.nikolay_role\"),\n imgsrc: nikolay\n },\n {\n name: \"Hanna Stenhammar\",\n title: t(\"about_fuzu.team.hanna_role\"),\n imgsrc: hanna\n },\n {\n name: \"Muthoni Mathenge\",\n title: t(\"about_fuzu.team.muthoni_role\"),\n imgsrc: muthoni\n },\n {\n name: \"Terver Gyer\",\n title: t(\"about_fuzu.team.terver_role\"),\n imgsrc: terver\n },\n {\n name: \"Ivy Njeri\",\n title: t(\"about_fuzu.team.ivy_role\"),\n imgsrc: ivy\n },\n {\n name: \"Evelyn Murage\",\n title: t(\"about_fuzu.team.evelyn_role\"),\n imgsrc: evelyn\n }\n ];\n\n const screen = useContext(ScreenClassContext);\n const isSm = [\"xs\", \"sm\"].includes(screen);\n\n return (\n \n \n \n {t(\"about_fuzu.team.title\")}\n \n \n {data?.map((itm, i) => (\n \n \n \n \n \n {itm.name}\n \n {itm.title} \n \n \n \n ))}\n \n \n \n );\n};\n\nexport default TeamSliderSection;\n","import styled from \"styled-components\";\n\nexport const TeamSliderWrapper = styled.section`\n padding: 0 0 60px;\n background-color: #fff;\n`;\n","import React, { useContext } from \"react\";\nimport { ScreenClassContext } from \"react-grid-system\";\n\nimport ThemeContext from \"../../../../contexts/theme\";\nimport Layout from \"../../../../components/Layout\";\nimport { Text } from \"../../../../components/Core\";\nimport { TimelineWrapper, Timeline, TimelineRow, TimelineLeft, TimelineContent } from \"./styled\";\n\nconst TimelineSection = ({ data }) => {\n const screen = useContext(ScreenClassContext);\n const theme = useContext(ThemeContext);\n const isSm = [\"xs\", \"sm\"].includes(screen);\n\n return (\n \n \n \n {data.map(({ id, date, text }) => (\n \n \n \n {date}\n \n \n \n {text} \n \n \n ))}\n \n \n \n );\n};\n\nexport default TimelineSection;\n","import styled from \"styled-components\";\n\nexport const TimelineWrapper = styled.section`\n padding: 65px 0;\n background-color: white;\n`;\n\nexport const Timeline = styled.div`\n display: flex;\n flex-direction: column;\n max-width: 1100px;\n margin: 0 auto;\n width: 100%;\n`;\n\nexport const TimelineLeft = styled.div`\n width: 100px;\n flex: 0 0 100px;\n @media screen and (max-width: 767px) {\n position: absolute;\n left: 30px;\n top: 0;\n }\n`;\n\nexport const TimelineContent = styled.div`\n border-left: 1px solid ${({ bulletTheme }) => bulletTheme};\n padding: 0 0 60px 40px;\n position: relative;\n @media screen and (max-width: 767px) {\n padding: 35px 0 30px 30px;\n }\n &::after {\n content: \"\";\n position: absolute;\n left: -16px;\n top: 0;\n display: flex;\n width: 32px;\n height: 32px;\n background-color: ${({ bulletTheme }) => bulletTheme};\n border: 1px solid ${({ bulletTheme }) => bulletTheme};\n box-shadow: inset 0 0 0 6px white;\n border-radius: 50%;\n }\n`;\n\nexport const TimelineRow = styled.div`\n display: flex;\n position: relative;\n @media screen and (max-width: 767px) {\n margin-left: 15px;\n }\n &:last-child {\n ${TimelineContent} {\n border-left: none;\n padding-bottom: 0;\n }\n }\n`;\n","import React, { useLayoutEffect, useEffect } from \"react\";\nimport { observer } from \"mobx-react\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport teamPhoto from \"images/b2c/service/teamPhoto.png\";\nimport blockquoteImg from \"images/b2c/service/visionImage.png\";\nimport BlockquoteSection from \"b2c/components/BlockquoteSection\";\nimport BrandsSection from \"b2c/components/BrandsSection\";\nimport { withTrackedRoute } from \"../../hocs\";\nimport useStore from \"../../contexts/store\";\nimport Layout from \"../../components/Layout\";\nimport { Image } from \"../../components/Core\";\nimport { useDocumentTitle } from \"../../../utils/hooks\";\nimport TimelineSection from \"./components/TimelineSection\";\nimport PromoSection from \"./components/PromoSection\";\nimport TeamSliderSection from \"./components/TeamSliderSection\";\nimport Recognitions from \"./components/Recognitions\";\nimport AboutBarona from \"./components/AboutBarona\";\nimport { isBaronaBrand } from \"../../contexts/branded\";\n\nconst AboutUsScreen = () => {\n const isBarona = isBaronaBrand();\n\n if (isBarona) {\n return ;\n }\n const { t } = useTranslation();\n\n const { getTrendingCompanies, trendingCompanies } = useStore(\"Landing\");\n\n useLayoutEffect(() => {\n if (getTrendingCompanies) {\n getTrendingCompanies();\n }\n }, []);\n\n useEffect(() => {\n if (window.scrollY) {\n window.scroll(0, 0);\n }\n }, []);\n\n useDocumentTitle(t(\"about_fuzu.meta_title\"));\n\n return (\n <>\n \n\n \n \n\n \n \n \n \n \n\n \n \n \n View Fuzu Press Releases\n \n }\n */\n />\n >\n );\n};\n\nexport default withTrackedRoute(observer(AboutUsScreen));\n","import React, { useState, useEffect, useContext, useMemo } from \"react\";\nimport { Row, Col, ScreenClassContext } from \"react-grid-system\";\nimport { observer } from \"mobx-react\";\n\nimport { capitalize } from \"utils/helpers\";\nimport { WhitelabelledHidden } from \"b2c/contexts/branded\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport FileUploader from \"../../../../components/FileUploader\";\nimport { Card, Button, Text, Spinner } from \"../../../../components/Core\";\nimport PromoSection from \"../../../../components/PromoSection\";\nimport { Title, Label } from \"./styled\";\nimport Referral from \"../../../../components/Referral\";\nimport ProfessionalCertificates from \"../ProfessionalCertificates\";\nimport Educations from \"../Educations\";\nimport useStore from \"../../../../contexts/store\";\nimport { isBaronaBrand } from \"../../../../contexts/branded\";\n\nconst Attachments = ({\n id,\n processing,\n loading = false,\n substeps = [],\n attachments: { uploaded_cv, education_certificates, professional_certificates } = {},\n validation_errors = {},\n getAttachments,\n updateAttachments,\n getAttachmentsEducationItems,\n getAttachmentsProfessionalCertificates,\n educationsItems,\n professionalCertificates,\n deleteEducationCertificate,\n back,\n handleInitializeApplication,\n applicationAttachmentsErrors\n}) => {\n const {\n Profile: {\n profile: { references }\n }\n } = useStore(\"User\");\n const { t } = useTranslation();\n\n const screen = useContext(ScreenClassContext);\n const isSm = [\"xs\", \"sm\"].includes(screen);\n const [attachments, setAttachments] = useState({\n uploaded_cv,\n education_certificates: [],\n professional_certificates: []\n });\n const isBarona = isBaronaBrand();\n\n useEffect(() => {\n getAttachments(id);\n getAttachmentsEducationItems(id);\n getAttachmentsProfessionalCertificates(id);\n }, []);\n\n const handleBack = () => {\n back();\n if (handleInitializeApplication) {\n handleInitializeApplication();\n }\n };\n\n useEffect(() => {\n setAttachments({\n uploaded_cv: attachments.uploaded_cv || uploaded_cv,\n education_certificates: [],\n professional_certificates\n });\n }, [uploaded_cv, education_certificates]);\n\n const handleAttachment = (name, file) => {\n setAttachments(prev => ({ ...prev, [name]: file }));\n };\n\n const formatError = error => (error ? capitalize(error.join(\", \")) : null);\n\n const requiresCv = substeps.some(el => el === \"upload_cv\");\n const requiresReferrals = substeps.some(el => el === \"upload_reference\");\n const requiresEducationCertificates = substeps.some(el => el === \"upload_education_certificates\");\n const requiresCert = substeps.some(el => el === \"upload_academic_certificate\");\n const requiresProfessionCertificates = substeps.some(el => el === \"upload_professional_certificate\");\n\n const isAllowCertificates = useMemo(() => {\n const defaultNotFilledCertificatesIds = professionalCertificates\n .filter(item => !item.certificate_item)\n .map(item => item.id);\n\n const filledAttachmentsCertificatesIds = attachments.professional_certificates\n ?.filter(item => Boolean(item.attachment) || Boolean(item.certificate))\n .map(item => item.certificate_id);\n\n const combinedFilledAndNotFilledValues =\n defaultNotFilledCertificatesIds?.length && filledAttachmentsCertificatesIds?.length\n ? Array.from(new Set([...defaultNotFilledCertificatesIds, ...filledAttachmentsCertificatesIds]))\n : [];\n\n const isFilledCertificates =\n combinedFilledAndNotFilledValues?.length &&\n filledAttachmentsCertificatesIds?.length === combinedFilledAndNotFilledValues?.length\n ? filledAttachmentsCertificatesIds?.every(value => combinedFilledAndNotFilledValues.includes(value))\n : false;\n\n return defaultNotFilledCertificatesIds?.length === 0 ? true : isFilledCertificates;\n }, [professionalCertificates, attachments.professional_certificates]);\n\n const getNotDuplicates = data => {\n return data ? data.filter((item, index) => data.indexOf(item) === index) : [];\n };\n\n const isAllowEducations = useMemo(() => {\n const defaultNotFilledEducationsIds = educationsItems\n .filter(item => !item.academic_certificate)\n .map(item => item.id);\n\n const filledAttachmentsEducationsIds = getNotDuplicates(\n attachments.education_certificates?.filter(item => Boolean(item.certificate)).map(item => item.education_item_id)\n );\n\n const combinedFilledAndNotFilledValues =\n defaultNotFilledEducationsIds?.length && filledAttachmentsEducationsIds?.length\n ? Array.from(new Set([...defaultNotFilledEducationsIds, ...filledAttachmentsEducationsIds]))\n : [];\n\n const isFilledCertificates =\n combinedFilledAndNotFilledValues?.length &&\n filledAttachmentsEducationsIds?.length === combinedFilledAndNotFilledValues?.length\n ? filledAttachmentsEducationsIds?.every(value => combinedFilledAndNotFilledValues.includes(value))\n : false;\n\n return defaultNotFilledEducationsIds?.length === 0 ? true : isFilledCertificates;\n }, [educationsItems, attachments.education_certificates]);\n\n const allowProgress =\n (requiresCv ? !!attachments.uploaded_cv : true) &&\n (requiresEducationCertificates || requiresCert ? isAllowEducations : true) &&\n (requiresReferrals ? !!attachments.reference_items || !!references?.length : true) &&\n (requiresProfessionCertificates ? isAllowCertificates : true);\n\n return (\n \n
\n {requiresCv && (\n \n \n
{t(\"application.attachments.cv.title\")} \n {t(\"application.attachments.cv.description\")} \n \n \n )}\n\n {(requiresCv || loading) && (\n <>\n \n {loading ? (\n \n ) : (\n \n {requiresCv && (\n \n handleAttachment(\"uploaded_cv\", file)}\n error={{\n isShow: Boolean(applicationAttachmentsErrors.uploaded_cv),\n text: applicationAttachmentsErrors.uploaded_cv\n }}\n />\n {validation_errors.attachments &&\n validation_errors.attachments.uploaded_cv &&\n !applicationAttachmentsErrors?.uploaded_cv && (\n \n {formatError(validation_errors.attachments.uploaded_cv)}\n _______\n \n )}\n \n )}\n
\n )}\n \n {validation_errors.attachments && Array.isArray(validation_errors.attachments) && (\n \n {formatError(validation_errors.attachments)}\n \n )}\n >\n )}\n\n {(requiresEducationCertificates || requiresCert) && (\n \n )}\n\n {validation_errors.attachments && validation_errors.attachments.academic_certificate && (\n \n {formatError(validation_errors.attachments.academic_certificate)}\n \n )}\n\n {requiresProfessionCertificates && (\n \n )}\n\n {requiresReferrals && }\n\n {!loading && uploaded_cv && !isBarona && (\n \n \n \n \n \n )}\n \n\n
\n \n \n {t(\"global.back\")}\n \n \n \n {\n updateAttachments(attachments).then(res => {\n if (res) {\n handleBack();\n }\n });\n }}\n >\n {t(\"global.save_button\")}\n \n \n
\n
\n );\n};\n\nexport default observer(Attachments);\n","import styled from \"styled-components\";\n\nexport const Label = styled.p`\n color: #666;\n font-size: 14px;\n font-weight: 400;\n line-height: 140%;\n`;\n\nexport const Title = styled.h4`\n color: #333;\n font-size: 20px;\n font-weight: 600;\n line-height: 130%;\n`;\n","import React, { useState, useContext } from \"react\";\nimport { Row, Col, ScreenClassContext } from \"react-grid-system\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport parse from \"html-react-parser\";\n\nimport { Card, Textarea, Button, Text, Tipbox, List } from \"b2c/components/Core\";\n\nconst CoverLetter = ({ processing, cover_letter = \"\", back, handleUpdate }) => {\n const screen = useContext(ScreenClassContext);\n const isSm = [\"xs\", \"sm\"].includes(screen);\n const [letter, setLetter] = useState(cover_letter || \"\");\n const [error, setError] = useState();\n const { t } = useTranslation();\n\n const wordCount = letter.length > 0 ? letter.trim().split(/\\s+/).length : 0;\n\n const validateCoverLetter = () =>\n new Promise((resolve, reject) => {\n if (wordCount >= 50 && wordCount <= 300) resolve();\n else reject(t(\"application.cover_letter.error\"));\n });\n\n const handleSubmit = () => {\n validateCoverLetter()\n .then(() => handleUpdate(letter))\n .catch(errors => setError(errors))\n .then(res => {\n if (res) back();\n });\n };\n\n const handlePasteAction = e => {\n e.preventDefault();\n const input = e.target;\n const formatedText = (e.clipboardData || window.clipboardData).getData(\"text/plain\").replace(/\\s+/g, \" \");\n\n const isSuccess = document.execCommand(\"insertText\", false, formatedText);\n\n if (!isSuccess && typeof input.setRangeText === \"function\") {\n const start = input.selectionStart;\n input.setRangeText(formatedText);\n\n input.selectionStart = input.selectionEnd = start + formatedText.length;\n }\n };\n\n return (\n <>\n \n \n \n {parse(t(\"application.cover_letter.description\"))}\n \n \n\n \n \n {t(\"application.cover_letter.tip.description_1\")} \n {t(\"application.cover_letter.tip.description_2\")} \n {t(\"application.cover_letter.tip.description_3\")} \n {t(\"application.cover_letter.tip.description_4\")} \n \n }\n />\n \n\n \n \n \n\n \n \n \n {t(\"global.back\")}\n \n \n \n \n {t(\"global.save_button\")}\n \n \n
\n >\n );\n};\n\nexport default CoverLetter;\n","import { observer } from \"mobx-react\";\nimport { Show } from \"@styled-icons/boxicons-regular\";\nimport React, { useContext } from \"react\";\nimport { Col, Row } from \"react-grid-system\";\n\nimport SvgContent from \"b2c/components/SvgContent\";\nimport { ModalContext } from \"contexts/modal\";\nimport JobModalContent from \"b2c/components/JobModalContent\";\nimport WorkExperienceIco from \"images/b2c/profilePage/WorkExperienceIco.svg\";\nimport FastApply from \"b2c/components/FastApply\";\nimport { getTimeSince } from \"utils/helpers\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport useStore from \"../../../../contexts/store\";\nimport ThemeContext from \"../../../../contexts/theme\";\nimport { Button, Card, Text, Title } from \"../../../../components/Core\";\nimport InstantFeedbackBanner from \"../../../../components/InstantFeedbackBanner\";\nimport { StyledInfoList } from \"./styled\";\nimport { languageFormat } from \"../../../../constants/main\";\n\nexport const Details = ({\n loading,\n id,\n title,\n company_name: companyName,\n location,\n campaign_end_date: campaignEndDate = 0,\n instant_feedback: instantFeedback = {},\n application,\n isAssigmentRequested,\n isFastApply,\n ...rest\n}) => {\n const { getPosition } = useStore(\"JobSearch\");\n const theme = useContext(ThemeContext);\n const { toggle } = useContext(ModalContext);\n const { t, language } = useTranslation();\n const languageFormatType = languageFormat[language];\n\n const endDate = campaignEndDate\n ? new Date(campaignEndDate * 1000).toLocaleString(languageFormatType, {\n day: \"numeric\",\n month: \"short\",\n year: \"numeric\"\n })\n : \"Today\";\n const remainingTime = getTimeSince(campaignEndDate * 1000);\n const daysLeft = Math.ceil((campaignEndDate - Date.now() / 1000) / (3600 * 24));\n const expired = daysLeft < 0;\n\n const leftAssigment = getTimeSince(application?.complete_due_date).replace(\"remaining\", \"to complete\");\n const expiredDateText = !expired && daysLeft === 0 ? t(\"jobs.content.closing_today\") : remainingTime;\n\n const handleModalContent = () => {\n getPosition(id);\n toggle( , t(\"application.job_description\"));\n };\n\n return (\n \n \n \n \n \n \n \n \n
\n {title}\n \n \n \n \n\n \n \n \n {t(\"application.show_job_description\")}\n \n \n
\n \n\n \n\n \n \n \n \n \n {t(\"application.company\")}\n \n \n {companyName}\n \n \n \n \n {t(\"application.location\")}\n \n \n {location}\n \n \n \n {isAssigmentRequested ? (\n <>\n \n {t(\"application.assignment_deadline\")}\n \n \n {leftAssigment}\n \n >\n ) : (\n <>\n \n {t(\"application.application_date\")}\n \n \n {endDate} ({expiredDateText})\n \n >\n )}\n \n
\n \n\n {!loading && instantFeedback.activated && }\n \n \n );\n};\n\nexport default observer(Details);\n","import styled from \"styled-components\";\n\nexport const StyledInfoList = styled.div`\n margin-bottom: 15px;\n\n :not(:last-child) {\n margin-bottom: 24px;\n }\n\n .infolist-col {\n @media screen and (max-width: 576px) {\n display: flex;\n margin-bottom: 5px;\n p {\n flex: 0 0 50%;\n margin: 0;\n }\n }\n &:not(:last-child) {\n @media screen and (min-width: 576px) {\n border-right: 1px solid ${({ theme }) => theme.grey200};\n }\n }\n }\n`;\n","import React from \"react\";\nimport { Plus } from \"@styled-icons/boxicons-regular\";\nimport { ErrorCircle } from \"@styled-icons/boxicons-solid\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport {\n Content,\n Title,\n Label,\n EducationItem,\n EducationFlex,\n EducationInfo,\n EducationTitle,\n EducationDescription,\n EducationYear,\n EducationFileUploader,\n EmptyContent,\n EmptyText,\n Error\n} from \"./styled\";\nimport FileUploader from \"../../../../components/FileUploader\";\nimport { Button, Image } from \"../../../../components/Core\";\nimport { buildImageUrlS3 } from \"../../../../contexts/branded\";\nimport { nameImages } from \"../../../../constants/images\";\nimport { languageFormat } from \"../../../../constants/main\";\n\nconst Educations = ({\n educations,\n setAttachments,\n deleteEducationCertificate,\n requiresCert,\n educationCertificatesErrors,\n id: jobId\n}) => {\n const { t, language } = useTranslation();\n const languageFormatType = languageFormat[language];\n\n const convertDate = string => {\n return string\n ? new Date(string).toLocaleString(languageFormatType, { month: \"short\", year: \"numeric\" })\n : \"Present\";\n };\n\n const handleAttachment = (file, id) => {\n setAttachments(prev => {\n return {\n ...prev,\n education_certificates: prev.education_certificates\n ? [...prev.education_certificates, { education_item_id: id, certificate: file }]\n : [{ education_item_id: id, certificate: file }]\n };\n });\n };\n\n const educationsList = educations?.map((item, index) => {\n const educationItemError =\n Boolean(educationCertificatesErrors) && Boolean(educationCertificatesErrors?.[item.id])\n ? educationCertificatesErrors[item.id]\n : {};\n\n return (\n \n {educationItemError?.certificate?.[0] ? (\n \n \n {educationItemError?.certificate[0]}\n \n ) : null}\n\n \n \n {item.degree_name} \n {item.school_name} \n {`${convertDate(item.start_date)} - ${convertDate(item.end_date)}`} \n \n \n handleAttachment(file, item.id, index)}\n isRemoveIcon\n deleteEducationCertificate={() => deleteEducationCertificate(item.academic_certificate?.id)}\n showTypesBelow\n />\n \n \n \n );\n });\n return (\n \n \n {requiresCert\n ? t(\"application.attachments.educations.title_1\")\n : t(\"application.attachments.educations.title_2\")}\n \n \n {requiresCert\n ? t(\"application.attachments.educations.description_1\")\n : t(\"application.attachments.educations.description_2\")}\n \n\n {educations?.length ? (\n <>{educationsList}>\n ) : (\n \n \n {t(\"application.attachments.educations.empty_text\")} \n \n \n {t(\"application.attachments.educations.add_button\")}\n \n \n )}\n \n );\n};\n\nexport default Educations;\n","import styled from \"styled-components\";\n\nexport const Content = styled.div`\n padding: 32px;\n border-top: 1px solid #eee;\n`;\n\nexport const Title = styled.h4`\n color: #333;\n font-size: 20px;\n font-weight: 600;\n line-height: 130%;\n margin: 0 0 4px 0;\n`;\n\nexport const Label = styled.p`\n color: #666;\n font-size: 14px;\n font-weight: 400;\n line-height: 140%;\n display: block;\n margin: 0 0 24px 0;\n\n @media screen and (min-width: 768px) {\n width: 60%;\n }\n`;\n\nexport const EducationItem = styled.div`\n padding: 24px;\n border-radius: 8px;\n border: 1px solid #eee;\n margin-bottom: 24px;\n\n &:last-child {\n margin-bottom: 0;\n }\n`;\n\nexport const EducationFlex = styled.div`\n @media screen and (min-width: 768px) {\n display: flex;\n justify-content: space-between;\n }\n`;\n\nexport const EducationInfo = styled.div`\n margin-bottom: 24px;\n\n @media screen and (min-width: 768px) {\n margin-bottom: 0;\n }\n`;\n\nexport const Error = styled.div`\n border-radius: 8px;\n background: #ffeae5;\n padding: 14px;\n display: flex;\n align-items: center;\n color: #333;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 140%;\n gap: 8px;\n margin-bottom: 16px;\n\n svg {\n width: 20px;\n height: 20px;\n fill: #e71d36;\n flex: none;\n }\n`;\n\nexport const EducationTitle = styled.h6`\n color: #333;\n font-size: 16px;\n font-weight: 600;\n margin: 0 0 4px 0;\n`;\n\nexport const EducationDescription = styled.p`\n color: #333;\n font-size: 14px;\n font-weight: 500;\n margin: 0 0 4px 0;\n`;\n\nexport const EducationYear = styled.p`\n color: #666;\n font-size: 14px;\n font-weight: 500;\n margin: 0;\n`;\n\nexport const EducationFileUploader = styled.div`\n max-width: 460px;\n width: 100%;\n flex: none;\n\n .b2c-card {\n width: 100%;\n }\n\n .card-content {\n padding: 0;\n }\n\n .upload-file__types {\n margin: 0 0 4px 0;\n }\n\n .upload-file__types_below {\n margin: 16px 0 0 0;\n }\n\n @media screen and (min-width: 768px) {\n .upload-file__content {\n display: flex;\n gap: 16px;\n }\n\n .upload-file__content > div > .b2c-label {\n min-height: 40px;\n }\n\n .upload-file__content > a,\n .upload-file__content > div {\n max-width: ${({ $isBig }) => ($isBig ? \"320px\" : \"286px\")};\n width: 100%;\n }\n\n .upload-file__content .b2c-label {\n // padding: 13px 15px;\n }\n\n .upload-file__upload-button {\n margin-top: 0;\n max-width: 125px;\n height: 40px;\n }\n\n a {\n width: 100%;\n }\n\n .b2c-label {\n padding: 10px 15px;\n }\n }\n`;\n\nexport const EmptyContent = styled.div`\n padding: 24px 0;\n max-width: 300px;\n margin: 0 auto;\n text-align: center;\n\n .add-button svg {\n width: 20px;\n }\n`;\n\nexport const EmptyText = styled.p`\n color: #333;\n text-align: center;\n font-size: 20px;\n font-weight: 600;\n line-height: 130%;\n display: block;\n margin: 8px 0 32px;\n`;\n","import React, { useLayoutEffect } from \"react\";\nimport { observer } from \"mobx-react\";\n\nimport { getCompanyName } from \"b2c/contexts/branded\";\nimport { Text } from \"../../../../components/Core\";\nimport FileUploader from \"../../../../components/FileUploader\";\nimport PromoSection from \"../../../../components/PromoSection\";\nimport useStore from \"../../../../contexts/store\";\nimport { StyledModalContent } from \"./styled\";\nimport { useTranslation } from \"../../../../hooks/useTranslation\";\n\nconst GenerateCvModalContent = ({ close }) => {\n const {\n Profile: {\n state: { processing },\n profile: { uploaded_cv } = {},\n getGeneralInfo,\n uploadCv\n }\n } = useStore(\"User\");\n const { t } = useTranslation();\n\n useLayoutEffect(() => {\n if (!uploaded_cv) getGeneralInfo();\n }, []);\n\n return (\n \n {t(\"jobs.instructions.cv_modal.empty_text\", { name: getCompanyName() })}\n }\n autoFocus\n />\n \n \n );\n};\n\nexport default observer(GenerateCvModalContent);\n","import styled from \"styled-components\";\n\nexport const StyledModalContent = styled.div`\n display: flex;\n flex-direction: column;\n text-align: ${({ textAlign = \"left\" }) => textAlign};\n max-width: 600px;\n`;\n","var _path, _path2, _path3, _rect, _rect2;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgFile = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 20,\n height: 20,\n fill: \"none\"\n}, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#212121\",\n d: \"M17.11 0H9.205C8.88 0 8.88.134 8.88.35s-.024.431.325.431h7.903c.216 0 .391.175.391.39v17.657c0 .216-.175.39-.39.39H2.89a.39.39 0 0 1-.39-.39V6.834c0-.26-.186-.26-.402-.26s-.38 0-.38.26v11.994c0 .646.526 1.172 1.173 1.172h14.218c.646 0 1.172-.526 1.172-1.172V1.172C18.281.526 17.756 0 17.11 0\"\n})), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#212121\",\n d: \"M10 1.563q-.4 0-.794.06a.39.39 0 0 0 .119.772q.335-.051.675-.051a4.42 4.42 0 0 1 4.414 4.414c0 1.08-.39 2.072-1.038 2.84a3.9 3.9 0 0 0-2.039-1.706c.356-.348.577-.833.577-1.368v-.381A1.916 1.916 0 0 0 10 4.229a1.916 1.916 0 0 0-1.914 1.914v.38c0 .536.222 1.02.577 1.369A3.907 3.907 0 0 0 6.62 9.605a4.4 4.4 0 0 1-.973-2.111.39.39 0 0 0-.77.129A5.2 5.2 0 0 0 10 11.953a5.2 5.2 0 0 0 5.195-5.195A5.2 5.2 0 0 0 10 1.563m-1.133 4.58a1.134 1.134 0 0 1 2.266 0v.38a1.134 1.134 0 0 1-2.266 0zM10 11.172a4.4 4.4 0 0 1-2.8-.995 3.11 3.11 0 0 1 2.8-1.74c1.201 0 2.272.672 2.797 1.733A4.4 4.4 0 0 1 10 11.172M6.314 2.251a.39.39 0 0 0-.553 0L4.49 3.523l-.434-.434a.39.39 0 0 0-.553.552l.711.71a.39.39 0 0 0 .553.001l1.548-1.548a.39.39 0 0 0 0-.553\"\n})), _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#212121\",\n d: \"M4.922 0a3.207 3.207 0 0 0-3.203 3.203 3.207 3.207 0 0 0 3.203 3.203 3.207 3.207 0 0 0 3.203-3.203A3.207 3.207 0 0 0 4.922 0m0 5.625A2.425 2.425 0 0 1 2.5 3.203 2.425 2.425 0 0 1 4.922.781a2.425 2.425 0 0 1 2.422 2.422 2.425 2.425 0 0 1-2.422 2.422\"\n})), _rect || (_rect = /*#__PURE__*/React.createElement(\"rect\", {\n width: 7.972,\n height: 0.839,\n x: 6.015,\n y: 13.287,\n fill: \"#212121\",\n rx: 0.42\n})), _rect2 || (_rect2 = /*#__PURE__*/React.createElement(\"rect\", {\n width: 7.972,\n height: 0.839,\n x: 6.015,\n y: 15.105,\n fill: \"#212121\",\n rx: 0.42\n})));\nexport default SvgFile;","import React, { useContext } from \"react\";\nimport { ScreenClassContext } from \"react-grid-system\";\n\nimport ClipboardIcon from \"images/b2c/application/clipboard.svg\";\nimport FileIcon from \"images/b2c/application/file.svg\";\nimport { Title, Text, Button, Card, List } from \"../../../../components/Core\";\nimport GenerateCvModalContent from \"../GenerateCvModalContent\";\nimport { useModal } from \"../../../../../utils/hooks\";\nimport { useTranslation } from \"../../../../hooks/useTranslation\";\n\nconst Instructions = ({\n company,\n external_fields: { external_url = \"\", external_postal_address = \"\", external_email_address = \"\" } = {},\n type = \"submit_via_email\",\n submitApplication\n}) => {\n const { t } = useTranslation();\n const screen = useContext(ScreenClassContext);\n const isSm = [\"xs\", \"sm\"].includes(screen);\n const openCvModal = useModal( , t(\"jobs.instructions.cv_modal.title\"));\n\n const { text, url, buttonText, post } = (() => {\n switch (type) {\n default:\n case \"submit_via_email\":\n return {\n text: t(\"jobs.instructions.email_description\"),\n url: `mailto:${external_email_address}`,\n buttonText: t(\"jobs.instructions.email_button\")\n };\n case \"submit_in_employers_site\":\n return {\n text: t(\"jobs.instructions.website_description\"),\n url: external_url,\n buttonText: t(\"jobs.instructions.website_button\")\n };\n case \"submit_via_post\":\n return {\n text: t(\"jobs.instructions.postal_description\"),\n post: external_postal_address\n };\n }\n })();\n\n return (\n <>\n \n 1. {t(\"jobs.instructions.title\")}\n \n\n \n \n \n \n {t(\"jobs.instructions.cv.title\")}\n \n \n\n \n {t(\"jobs.instructions.cv.description\")} \n \n {t(\"jobs.instructions.cv.button\")}\n \n \n \n\n \n \n \n \n {t(\"jobs.instructions.practical_tips_title\")}\n \n \n\n \n \n {t(\"jobs.instructions.check_list_title\")}\n \n \n {t(\"jobs.instructions.chick_list_label_1\")} \n {t(\"jobs.instructions.chick_list_label_2\")} \n {t(\"jobs.instructions.chick_list_label_3\")} \n {t(\"jobs.instructions.chick_list_label_4\")} \n {t(\"jobs.instructions.chick_list_label_5\")} \n
\n\n \n {t(\"jobs.instructions.what_happen_title\")}\n \n \n {t(\"jobs.instructions.what_happen_description\")}\n \n\n \n {t(\"jobs.instructions.what_happen_label_1\")} \n {t(\"jobs.instructions.what_happen_label_2\")} \n
\n \n \n\n \n 2. {t(\"jobs.instructions.submit_title\")}\n \n\n \n \n \n {t(\"jobs.instructions.submit_description\")} {company}. {text}\n \n {url && (\n \n {buttonText}\n \n )}\n {post && {post} }\n \n \n >\n );\n};\n\nexport default Instructions;\n","import React, { useEffect, useState } from \"react\";\nimport { ErrorCircle } from \"@styled-icons/boxicons-solid\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport {\n Content,\n Label,\n Title,\n Flex,\n ProfessionItem,\n ProfessionTitle,\n ProfessionDescription,\n ProfessionFlex,\n EducationFileUploader,\n Error\n} from \"./styled\";\nimport { Dropdown } from \"../../../../components/Core\";\nimport FileUploader from \"../../../../components/FileUploader\";\nimport { languageFormat } from \"../../../../constants/main\";\n\nconst ProfessionalCertificates = ({\n professionalCertificates,\n setAttachments,\n attachments,\n professionalCertificatesErrors\n}) => {\n const [certificateDates, setDates] = useState([]);\n const { t, language } = useTranslation();\n const languageFormatType = languageFormat[language];\n\n const months = Array.from({ length: 12 }, (_, i) => ({\n name: new Date(null, i + 1, null).toLocaleString(languageFormatType, {\n month: \"long\"\n }),\n id: i + 1\n }));\n\n const getMonth = value => (months.some(m => m?.id == value) ? months.find(m => m?.id == value)?.name : \"\");\n\n const modifyDate = (index, dates = certificateDates) => {\n const pad = d => (d ? (d < 10 ? `0${d.toString()}` : d.toString()) : null);\n\n if (dates[index].month) {\n const modifiedMonth = months.some(m => m.id == dates[index].month)\n ? dates[index].month\n : months.find(m => dates[index].month == m?.name)?.id;\n\n return `${dates[index].year}-${pad(modifiedMonth)}-01`;\n }\n };\n\n const formatDate = date =>\n date\n ? {\n year: +date.substring(0, date.indexOf(\"-\", 0)),\n month: +date.substring(date.indexOf(\"-\", 0) + 1, date.indexOf(\"-\", 5))\n }\n : {};\n\n const handleAttachment = (file, id, index) => {\n setAttachments(prev => {\n const professionalCertificatesUpdated = prev.professional_certificates?.filter(\n item => String(item.certificate_id) !== String(id)\n );\n\n return {\n ...prev,\n professional_certificates: prev.professional_certificates?.length\n ? [\n ...professionalCertificatesUpdated,\n { certificate_id: id, certificate: file, issued_at: modifyDate(index) }\n ]\n : [{ certificate_id: id, certificate: file, issued_at: modifyDate(index) }]\n };\n });\n };\n\n const handleDateChange = (name, id, index, itemId) => {\n const newList = [...certificateDates];\n newList[index] = {\n ...newList[index],\n [name]: id\n };\n\n setDates(newList);\n\n const findAttachment = attachments.professional_certificates.map(item => {\n if (String(item.certificate_id) === String(itemId)) {\n return { ...item, issued_at: modifyDate(index, newList) };\n }\n return item;\n });\n\n setAttachments(prev => {\n return {\n ...prev,\n professional_certificates: findAttachment\n };\n });\n };\n\n useEffect(() => {\n if (professionalCertificates?.length > 0) {\n setDates((professionalCertificates || []).map(item => formatDate(item?.certificate_item?.issued_at)));\n }\n }, [professionalCertificates]);\n\n const professionalCertificatesList = professionalCertificates?.map((item, index) => {\n const professionalItemError =\n Boolean(professionalCertificatesErrors) && Boolean(professionalCertificatesErrors?.[item.id])\n ? professionalCertificatesErrors[item.id]\n : {};\n\n return (\n \n {item.name} \n {professionalItemError?.certificate?.[0] ? (\n \n \n {professionalItemError?.certificate?.[0]}\n \n ) : null}\n\n {item.has_issued_date && (\n <>\n {t(\"application.attachments.certificates.date_label\")} \n \n \n \n {months.map(({ id, name }) => (\n \n handleDateChange(\"month\", id, index, item.id, item.certificate_item?.attachment?.url)\n }\n >\n {name}\n \n ))}\n \n \n \n \n {[...Array(60)]\n .map((_, i) => new Date().getFullYear() - i)\n .map(year => (\n \n handleDateChange(\"year\", year, index, item.id, item.certificate_item?.attachment?.url)\n }\n >\n {year}\n \n ))}\n \n \n \n >\n )}\n {/* isBig={!item.academic_certificate?.original_filename} */}\n \n handleAttachment(file, item.id, index)}\n showTypesBelow\n // deleteEducationCertificate={() => deleteEducationCertificate(item.academic_certificate?.id)}\n />\n \n \n );\n });\n\n return (\n \n {t(\"application.attachments.certificates.title\")} \n {t(\"application.attachments.certificates.description\")} \n {professionalCertificatesList} \n \n );\n};\n\nexport default ProfessionalCertificates;\n","import styled from \"styled-components\";\n\nexport const Title = styled.h4`\n color: #333;\n font-size: 20px;\n font-weight: 600;\n line-height: 130%;\n`;\n\nexport const Label = styled.p`\n color: #666;\n font-size: 14px;\n font-weight: 400;\n line-height: 140%;\n max-width: 824px;\n`;\n\nexport const Content = styled.div`\n margin: 12px 0;\n border-top: 1px solid #eee;\n padding: 28px 16px 8px;\n`;\n\nexport const Flex = styled.div`\n margin-top: 24px;\n\n @media screen and (min-width: 768px) {\n display: flex;\n align-items: center;\n flex-wrap: wrap;\n gap: 24px;\n }\n`;\n\nexport const Error = styled.div`\n border-radius: 8px;\n background: #ffeae5;\n padding: 14px;\n display: flex;\n align-items: center;\n color: #333;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 140%;\n gap: 8px;\n margin-bottom: 24px;\n\n svg {\n width: 20px;\n height: 20px;\n fill: #e71d36;\n flex: none;\n }\n`;\n\nexport const ProfessionItem = styled.div`\n margin: 0 auto 24px auto;\n max-width: 540px;\n width: 100%;\n flex: none;\n border-radius: 8px;\n border: 1px solid #eee;\n background: #fff;\n padding: 16px;\n\n @media screen and (min-width: 768px) {\n margin: 0;\n padding: 24px;\n }\n`;\n\nexport const ProfessionTitle = styled.h5`\n color: #333;\n font-size: 16px;\n font-weight: 600;\n margin: 0 0 16px 0;\n\n @media screen and (min-width: 768px) {\n margin: 0 0 24px 0;\n }\n`;\n\nexport const ProfessionDescription = styled.p`\n color: #333;\n font-size: 14px;\n font-weight: 400;\n line-height: 140%;\n display: block;\n margin: 0 0 8px 0;\n`;\n\nexport const ProfessionFlex = styled.div`\n .dropdown-content {\n width: 100%;\n }\n\n @media screen and (min-width: 768px) {\n display: flex;\n gap: 16px;\n }\n`;\n\nexport const EducationDescription = styled.p`\n color: #333;\n font-size: 14px;\n font-weight: 500;\n margin: 0 0 4px 0;\n`;\n\nexport const EducationYear = styled.p`\n color: #666;\n font-size: 14px;\n font-weight: 500;\n margin: 0;\n`;\n\nexport const EducationFileUploader = styled.div`\n width: 100%;\n flex: none;\n .b2c-card {\n width: 100%;\n }\n .card-content {\n padding: 0;\n }\n\n .upload-file__types {\n margin: 0 0 4px 0;\n }\n\n .upload-file__types_below {\n margin: 16px 0 0 0;\n }\n\n @media screen and (min-width: 768px) {\n .upload-file__content {\n display: flex;\n gap: 16px;\n }\n .upload-file__content > div > .b2c-label {\n min-height: 40px;\n }\n .upload-file__content > a,\n .upload-file__content > div {\n max-width: ${({ isBig }) => (isBig ? \"370px\" : \"356px\")};\n width: 100%;\n }\n .upload-file__content .b2c-label {\n // padding: 13px 15px;\n }\n .upload-file__upload-button {\n margin-top: 0;\n max-width: 125px;\n height: 40px;\n }\n a {\n width: 100%;\n }\n .b2c-label {\n padding: 10px 15px;\n }\n }\n`;\n","import React, { useEffect, useState, useMemo } from \"react\";\nimport { Link, useHistory } from \"react-router-dom\";\nimport { Close } from \"@styled-icons/material/Close\";\nimport { Col, Row } from \"react-grid-system\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport {\n Content,\n Title,\n Description,\n Divider,\n Input,\n TextArea,\n Label,\n Tile,\n CloseButton,\n Heading,\n NavWrapper,\n Error\n} from \"./styled\";\nimport { Button, Checkbox, RadioButton } from \"../../../../components/Core\";\nimport Layout from \"../../../../components/Layout\";\nimport { questionsType } from \"../../../../../constants/questions\";\n\nconst Questions = ({\n getApplicationFlowQuestions,\n questions,\n id,\n processing,\n postApplicationFlowQuestions,\n cleanApplicationFlowQuestions,\n questionsErrors,\n getApplicationFlowAnswers,\n questionAnswers\n}) => {\n const [questionsValue, setQuestionsValue] = useState({});\n const history = useHistory();\n const { t } = useTranslation();\n\n const handleChangeMultiOptions = (questionId, item) => {\n const selectedOptions = questionsValue[questionId].includes(item)\n ? questionsValue[questionId].filter(currentItem => currentItem !== item)\n : [...questionsValue[questionId], item];\n\n setQuestionsValue(prev => ({ ...prev, [questionId]: selectedOptions }));\n };\n\n const handleChangeOptionOptions = (questionId, item) => {\n setQuestionsValue(prev => ({ ...prev, [questionId]: item }));\n };\n\n const handleChangeShortText = (questionId, event) => {\n setQuestionsValue(prev => ({ ...prev, [questionId]: event.target.value }));\n };\n\n const handleChangeText = (questionId, event) => {\n setQuestionsValue(prev => ({ ...prev, [questionId]: event.target.value }));\n };\n\n const isDisabledButton = useMemo(() => {\n return !Object.values(questionsValue).every(item => (Array.isArray(item) ? item.length : Boolean(item)));\n }, [questions.length, Object.values(questionsValue)]);\n\n const handleSubmit = () => {\n const selectedQuestions = questions.map(item => {\n if (item.question_type === questionsType.optionChoice) {\n return {\n question_id: item.id,\n options: [questionsValue[item.id]]\n };\n }\n\n if (item.question_type === questionsType.multiChoice) {\n return {\n question_id: item.id,\n options: questionsValue[item.id]\n };\n }\n\n if (item.question_type === questionsType.shortText) {\n return {\n question_id: item.id,\n text: questionsValue[item.id]\n };\n }\n\n return {\n question_id: item.id,\n text: questionsValue[item.id]\n };\n });\n\n postApplicationFlowQuestions(id, { answers: selectedQuestions }).then(result => {\n if (!result.errors) {\n history.push(`/jobs/${id}/application`);\n }\n });\n };\n\n useEffect(() => {\n getApplicationFlowAnswers(id);\n getApplicationFlowQuestions(id);\n\n return () => {\n cleanApplicationFlowQuestions();\n };\n }, []);\n\n useEffect(() => {\n if (!Object.keys(questionsValue).length && questions.length) {\n const normalizeValues = questions.reduce((acc, current) => {\n if (current.question_type === questionsType.multiChoice) {\n acc[String(current.id)] = questionAnswers[current.id]\n ? questionAnswers[current.id].options.filter(option => option.selected).map(option => option.id)\n : [];\n }\n\n if (current.question_type === questionsType.optionChoice) {\n acc[current.id] = questionAnswers[current.id]\n ? questionAnswers[current.id].options.filter(option => option.selected).map(option => option.id)[0]\n : \"\";\n }\n\n if (current.question_type === questionsType.shortText) {\n acc[current.id] = questionAnswers[current.id] ? questionAnswers[current.id].response : \"\";\n }\n\n if (current.question_type === questionsType.text) {\n acc[current.id] = questionAnswers[current.id] ? questionAnswers[current.id].response : \"\";\n }\n\n return acc;\n }, {});\n\n setQuestionsValue(normalizeValues);\n }\n }, [questions.length]);\n\n const renderQuestions =\n Object.keys(questionsValue).length && questions.length\n ? questions.map(item => {\n if (item.question_type === questionsType.multiChoice) {\n return (\n \n {item.text} \n {item.description && {item.description} }\n\n \n {item.options.map(option => {\n return (\n \n {option.text}}\n checked={questionsValue[item.id].includes(option.id)}\n onChange={() => handleChangeMultiOptions(item.id, option.id)}\n />\n \n );\n })}\n
\n {questionsErrors[item.id] && {questionsErrors[item.id][0]} }\n \n \n );\n }\n\n if (item.question_type === questionsType.optionChoice) {\n return (\n \n {item.text} \n {item.description && {item.description} }\n\n \n {item.options.map(option => {\n return (\n \n {option.text}}\n name={option.text}\n value={item.value}\n checked={questionsValue[item.id] === option.id}\n onChange={() => handleChangeOptionOptions(item.id, option.id)}\n />\n \n );\n })}\n
\n {questionsErrors[item.id] && {questionsErrors[item.id][0]} }\n \n \n );\n }\n\n if (item.question_type === questionsType.shortText) {\n return (\n \n {item.text} \n {item.description && {item.description} }\n\n handleChangeShortText(item.id, event)}\n value={questionsValue[item.id]}\n type=\"text\"\n placeholder={t(\"application.questions.input_placeholder\")}\n />\n {questionsErrors[item.id] && {questionsErrors[item.id][0]} }\n \n \n );\n }\n\n return (\n \n {item.text} \n {item.description && {item.description} }\n\n \n {questionsErrors[item.id] && {questionsErrors[item.id][0]} }\n \n \n );\n })\n : null;\n\n return (\n <>\n \n \n \n \n \n \n \n {t(\"application.questions.title\")} \n {renderQuestions} \n\n \n \n \n \n {/* {previous_question_response_id && ( */}\n \n {t(\"global.back\")}\n \n {/* )} */}\n \n \n \n {t(\"global.save_button\")}\n \n \n
\n \n \n >\n );\n};\n\nexport default Questions;\n","import styled from \"styled-components\";\n\nexport const Content = styled.div`\n max-width: 680px;\n width: 100%;\n margin: 56px auto 120px auto;\n padding: 0 16px;\n\n @media screen and (min-width: 768px) {\n padding: 0;\n }\n`;\n\nexport const Title = styled.h2`\n color: #212121;\n font-size: 20px;\n font-style: normal;\n font-weight: 600;\n line-height: 130%;\n margin-bottom: 8px;\n`;\n\nexport const Description = styled.p`\n color: #666;\n font-size: 14px;\n font-weight: 400;\n line-height: 140%;\n display: block;\n margin-bottom: 24px;\n`;\n\nexport const Divider = styled.span`\n display: block;\n height: 1px;\n width: 100%;\n background-color: #c5c5c5;\n margin: 24px 0 32px 0;\n`;\n\nexport const Input = styled.input`\n padding: 11px 12px;\n background-color: #fff;\n border-radius: 5px;\n border: 1px solid #cdcdcd;\n color: #212121;\n font-size: 16px;\n font-weight: 400;\n line-height: 150%;\n display: block;\n width: 100%;\n\n &::placeholder {\n color: #8f8f8f;\n font-size: 16px;\n font-weight: 400;\n line-height: 150%;\n }\n`;\n\nexport const TextArea = styled.textarea`\n padding: 10px 12px;\n background-color: #fff;\n border-radius: 5px;\n border: 1px solid #cdcdcd;\n color: #212121;\n font-size: 16px;\n font-weight: 400;\n line-height: 150%;\n height: 144px;\n display: block;\n width: 100%;\n resize: none;\n\n &::placeholder {\n color: #8f8f8f;\n font-size: 16px;\n font-weight: 400;\n line-height: 150%;\n }\n`;\n\nexport const Label = styled.span`\n color: #292929;\n font-size: 16px;\n font-weight: 400;\n line-height: 150%;\n`;\n\nexport const Tile = styled.div`\n border-radius: 5px;\n border: 1px solid #c5c5c5;\n background: #fff;\n padding: 15px 016px;\n margin-bottom: 16px;\n\n & > div {\n margin: 0;\n outline: none;\n }\n\n &:last-child {\n margin-bottom: 0;\n }\n`;\n\nexport const CloseButton = styled.div`\n position: absolute;\n top: 10px;\n right: 20px;\n display: flex;\n align-items: center;\n`;\n\nexport const Heading = styled.div`\n display: flex;\n justify-content: center;\n align-items: center;\n background-color: #ffffff;\n height: 60px;\n padding: 0 20px;\n color: #212121;\n font-size: 16px;\n font-weight: 600;\n line-height: 140%;\n`;\n\nexport const NavWrapper = styled.div`\n display: flex;\n align-items: center;\n height: 100px;\n background: #fff;\n width: 100%;\n position: fixed;\n bottom: 0;\n left: 0;\n z-index: 11;\n`;\n\nexport const Error = styled.span`\n color: #c30000;\n font-size: 14px;\n font-weight: 400;\n line-height: 140%;\n display: block;\n margin: 8px 0 0 0;\n`;\n","import React, { useContext } from \"react\";\nimport { ScreenClassContext } from \"react-grid-system\";\nimport { Button } from \"../../../../components/Core\";\nimport ModalConsumer from \"../../../../../contexts/modal\";\nimport GenerateCvModalContent from \"../GenerateCvModalContent\";\n\nconst StepActions = ({\n id,\n type = \"create_cv_internal\",\n stepStatus = \"disabled\",\n cta = \"\",\n setStep,\n substeps = []\n}) => {\n const disabled = stepStatus === \"disabled\";\n const buttonTheme = stepStatus === \"completed\" ? \"grey200\" : \"primary\";\n\n const getColorText = () => {\n if (stepStatus === \"completed\" || stepStatus === \"relevant\") {\n return \"primaryButtonLabelColor\";\n }\n\n return \"inherit\";\n };\n\n const screen = useContext(ScreenClassContext);\n const isSm = [\"xs\", \"sm\"].includes(screen);\n let pendingTest;\n let testId;\n return (() => {\n switch (type) {\n default:\n case \"create_cv_internal\":\n return (\n \n {cta}\n \n );\n case \"prescreening\":\n return (\n \n {cta}\n \n );\n case \"tests\":\n pendingTest = substeps.find(test => !test.completed);\n testId = pendingTest?.fuzu_test_id || substeps[0]?.fuzu_test_id;\n\n return (\n \n {cta}\n \n );\n case \"attachments\":\n return (\n \n {cta}\n \n );\n case \"cover_letter\":\n return (\n \n {cta}\n \n );\n case \"download_cv\":\n return (\n \n {({ toggle }) => (\n toggle( toggle()} />, \"Download CV\")}\n color={getColorText()}\n >\n {cta}\n \n )}\n \n );\n }\n })();\n};\n\nexport default StepActions;\n","import React from \"react\";\n\nimport ClipboardIcon from \"images/b2c/application/clipboard.svg\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport { Title, Text, Tipbox, Card, Notification } from \"../../../../components/Core\";\nimport { ApplicationStep } from \"../../../../components/Core/InfoBar\";\nimport StepActions from \"../StepActions\";\n\nconst Steps = ({ title = \"application.application_steps\", id, loading, steps, setStep, ...rest }) => {\n const sortedSteps = steps.slice().sort((a, b) => a.priority - b.priority);\n const { t } = useTranslation();\n\n const getStepStatus = index => {\n return sortedSteps[index] && !loading ? availabilityStatus(index) : \"loading\";\n };\n\n const availabilityStatus = index => {\n if (sortedSteps[index].completed) return \"completed\";\n return \"relevant\";\n };\n\n return (\n <>\n \n \n \n \n {t(title) || t(\"application.questions_default\")}\n \n \n \n \n\n \n {(loading ? [...new Array(4).keys()] : sortedSteps).map((step, index) => (\n
setStep(step)}\n />\n ) : null\n }\n />\n ))}\n \n \n \n \n \n {t(\"application.complete_all_steps\")}\n \n \n >\n );\n};\n\nexport default Steps;\n","import React, { useContext } from \"react\";\nimport { Check } from \"@styled-icons/boxicons-regular\";\nimport { observer } from \"mobx-react\";\nimport { ScreenClassContext } from \"react-grid-system\";\nimport { OpenInNew } from \"@styled-icons/material\";\nimport parse from \"html-react-parser\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\n\nimport { buildImageUrlS3, getCompanyName, isKepsa } from \"b2c/contexts/branded\";\nimport { Success, JobPropose, SuccessContent, TextContent, ButtonContent, DidYouKnow, SlideContent } from \"./styled\";\nimport { isWhitelabelled, WhitelabelledHidden } from \"../../../../contexts/branded\";\nimport { Text, Image, Title, Button } from \"../../../../components/Core\";\nimport Layout from \"../../../../components/Layout\";\nimport JobsSection from \"../../../../components/FeedSections/JobsSection\";\nimport useStore from \"../../../../contexts/store\";\nimport ThemeContext from \"../../../../contexts/theme\";\nimport { nameImages } from \"../../../../constants/images\";\n\nconst SuccessComponent = ({ detailInfo, isFastApply, isAssigmentRequested, employer }) => {\n const screen = useContext(ScreenClassContext);\n const { removeApplication } = useStore(\"Application\");\n const isSm = /xs|sm/.test(screen);\n const whitelabelled = isWhitelabelled();\n const isKepsaBrand = isKepsa();\n\n const { base_domain } = useStore(\"initialState\");\n const { protocol } = window.location;\n const theme = useContext(ThemeContext);\n const { t } = useTranslation();\n\n const handleRemoveApplication = () => {\n removeApplication(detailInfo?.id);\n };\n\n const renderTitle = () => {\n if (isFastApply) {\n if (isAssigmentRequested) {\n return t(\"application.success.title_1\");\n }\n\n return t(\"application.success.title_2\");\n }\n\n return t(\"application.success.title_3\");\n };\n\n return (\n \n \n \n \n \n \n {detailInfo?.title}\n \n \n {`${detailInfo?.company_name || \"\"} ${t(\"application.success.location_in\")} ${\n detailInfo?.location || \"\"\n }`}\n \n
\n \n\n \n\n \n {renderTitle()}\n \n \n \n\n \n {parse(t(\"application.success.description_1\", { name: detailInfo?.company_name || \"\" }))}\n \n \n\n \n \n\n \n {isFastApply ? t(\"application.success.description_2\") : t(\"application.success.description_3\")}\n \n \n\n \n \n\n \n {parse(t(\"application.success.description_4\", { name: getCompanyName() }))}\n \n \n \n \n {t(\"application.success.view_application\")}\n {whitelabelled && }\n \n \n {whitelabelled\n ? t(\"application.success.back_to_career_page\", { name: employer.name })\n : t(\"application.success.back_to_job_search\")}\n \n \n \n \n \n \n \n \n \n \n \n 🔥 \n \n {parse(t(\"application.success.did_you_know\"))}\n \n \n \n \n \n );\n};\n\nexport default observer(SuccessComponent);\n","import styled from \"styled-components\";\n\nexport const SuccessContent = styled.div`\n background-color: #fff;\n padding-bottom: 50px;\n @media screen and (min-width: 768px) {\n padding-bottom: 100px;\n }\n`;\n\nexport const Success = styled.div`\n max-width: 500px;\n margin: 0 auto;\n padding-top: 40px;\n`;\n\nexport const JobPropose = styled.div`\n width: 100%;\n padding: 12px 12px 12px 14px;\n display: flex;\n background: #f5f5f5;\n border-radius: 8px;\n margin-bottom: 24px;\n align-items: center;\n`;\n\nexport const Content = styled.div`\n max-width: 500px;\n margin: 0 auto;\n padding-top: 40px;\n`;\n\nexport const TextContent = styled.div`\n display: flex;\n margin-bottom: 10px;\n`;\n\nexport const ButtonContent = styled.div`\n margin-top: 24px;\n @media screen and (min-width: 768px) {\n display: flex;\n }\n`;\n\nexport const SlideContent = styled.div`\n max-width: 1360px;\n margin: 40px auto 0;\n @media screen and (min-width: 768px) {\n margin-top: 70px;\n }\n`;\n\nexport const DidYouKnow = styled.div`\n margin-top: 12px;\n margin-left: 12px;\n @media screen and (min-width: 768px) {\n display: flex;\n }\n`;\n","import React from \"react\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\n\nimport { Notification, Text } from \"../../../../components/Core\";\n\nconst Tip = ({ type = \"internal\", employer = \"employer\" }) => {\n const { t } = useTranslation();\n\n const { title, subtitle } = (() =>\n type === \"internal\"\n ? {\n title: `${t(\"application.tip.title_1\")} ${employer}`,\n subtitle: t(\"application.tip.description_1\")\n }\n : {\n title: t(\"application.tip.title_1\", { name: employer }),\n subtitle: t(\"application.tip.description_2\")\n })();\n\n return (\n \n \n {title}\n \n \n {subtitle}\n \n \n );\n};\n\nexport default Tip;\n","import React, { useRef, useState, useEffect, useContext, useMemo } from \"react\";\nimport { observer } from \"mobx-react\";\nimport { Route, Switch, useHistory } from \"react-router-dom\";\nimport { ScreenClassContext, Row, Col } from \"react-grid-system\";\nimport { LeftArrowAlt } from \"@styled-icons/boxicons-regular\";\nimport { toJS } from \"mobx\";\n\nimport fuzuLogo from \"images/new_fuzu_logo_yellow.png\";\nimport fuzuLogoBlack from \"images/new_fuzu_logo_black.png\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport useStore from \"../../contexts/store\";\nimport { withAuthorizationRedirect } from \"../../components/WithAuth\";\nimport { withTrackedRoute } from \"../../hocs\";\nimport BrandedContext, { isWhitelabelled, WhitelabelledHidden } from \"../../contexts/branded\";\nimport { Divider, Title, Button, Image } from \"../../components/Core\";\nimport Layout from \"../../components/Layout\";\nimport Tip from \"./components/Tip\";\nimport Details from \"./components/Details\";\nimport Steps from \"./components/Steps\";\nimport CoverLetter from \"./components/CoverLetter\";\nimport Attachments from \"./components/Attachments\";\nimport Questions from \"./components/Questions\";\nimport Success from \"./components/Success\";\nimport Instructions from \"./components/Instructions\";\nimport { applicationTypes } from \"../../constants/jobSearch\";\nimport { TestAndSurveyHeader } from \"./styled\";\nimport BaronaLogo from \"../../components/BaronaLogo\";\nimport { baronaEventName } from \"../../constants/main\";\n\nconst ApplicationScreen = ({\n location: { pathname, state },\n history: { push },\n match: {\n params: { id },\n url\n }\n}) => {\n const {\n state: { loading, processing },\n steps,\n application,\n submitted,\n attachments,\n validation_errors,\n job_details: jobDetails = {},\n initializeApplication,\n updateCoverLetter,\n getAttachments,\n getAttachmentsEducationItems,\n professionalCertificates,\n getAttachmentsProfessionalCertificates,\n educationsItems,\n updateAttachments,\n switchModalType,\n cancelApplication,\n submitApplication,\n setIsInviteToApplyJob,\n isInviteToApplyJob,\n deleteEducationCertificate,\n applicationAttachmentsErrors,\n getApplicationFlowQuestions,\n postApplicationFlowQuestions,\n getApplicationFlowAnswers,\n questionAnswers,\n cleanApplicationFlowQuestions,\n questions,\n questionsErrors\n } = useStore(\"Application\");\n const detailsRef = useRef();\n const { baronaTrack } = useStore(\"Tracking\");\n const { global_brand: globalBrand } = useStore(\"initialState\");\n\n const [currentStep, setStep] = useState({});\n const [scroll, setScroll] = useState(0);\n const { employer } = useContext(BrandedContext);\n const screen = useContext(ScreenClassContext);\n const isSm = [\"xs\", \"sm\"].includes(screen);\n const isSuccessPage = useMemo(() => pathname.includes(\"/success\"), [pathname]);\n const isQuestionsPage = pathname.includes(\"/questions\");\n const isFastApply = jobDetails?.application_type === applicationTypes.applicationTypeFastApply;\n const isAssigmentRequested = application?.fast_apply_status === applicationTypes.fastApplyAssignmentsRequested;\n const history = useHistory();\n const isInviteToApplyQuery = history.location.search.includes(\"from_invite_message\");\n const whitelabelled = isWhitelabelled();\n const { t } = useTranslation();\n\n const {\n Profile: { getGeneralInfo }\n } = useStore(\"User\");\n\n useEffect(() => {\n getGeneralInfo();\n }, []);\n\n useEffect(() => {\n if (jobDetails?.title) {\n if (pathname?.endsWith(\"/application\")) {\n baronaTrack(baronaEventName.addToCard, {\n itemId: jobDetails.id,\n itemName: jobDetails.title,\n itemCategory: jobDetails.category.name,\n itemVariant: jobDetails.seniority_level.name,\n itemBrand: jobDetails.company_name,\n itemAffiliation: globalBrand.name\n });\n }\n\n if (isSuccessPage) {\n baronaTrack(baronaEventName.purchase, {\n itemId: jobDetails.id,\n itemName: jobDetails.title,\n itemCategory: jobDetails.category.name,\n itemVariant: jobDetails.seniority_level.name,\n itemBrand: jobDetails.company_name,\n itemAffiliation: globalBrand.name,\n transactionId: jobDetails.id,\n affiliation: globalBrand.name,\n value: \"0\",\n currency: \"EUR\"\n });\n }\n }\n }, [jobDetails?.title]);\n\n const handleInitializeApplication = () => {\n initializeApplication(id, true, false);\n };\n\n useEffect(() => {\n initializeApplication(id, true, false);\n }, []);\n\n useEffect(() => {\n if (steps) {\n const current = steps.find(({ variety }) => pathname.includes(variety));\n current && setStep(current);\n }\n }, [steps]);\n\n useEffect(() => {\n detailsRef.current = jobDetails;\n }, [jobDetails]);\n\n useEffect(() => {\n if (isInviteToApplyQuery && !isInviteToApplyJob) {\n setIsInviteToApplyJob(true);\n }\n\n if (!isInviteToApplyQuery && isInviteToApplyJob) {\n history.replace(`${history.location.pathname}?from_invite_message=true`);\n }\n }, [isInviteToApplyQuery, isInviteToApplyJob]);\n\n useEffect(() => {\n const isApplication = pathname?.endsWith(\"/application\");\n if (isApplication) {\n window.scrollTo(0, scroll);\n }\n }, [pathname]);\n\n const changeStep = s => {\n const doc = document.documentElement;\n const top = window.scrollY || (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0);\n\n const isApplication = pathname?.endsWith(\"/application\");\n if (isApplication) {\n setScroll(top);\n }\n\n setStep(s);\n };\n\n const handleReturn = () => {\n setStep({});\n push(url);\n };\n\n const handleCancellation = () => {\n if (submitted) {\n cancelApplication();\n } else {\n switchModalType(\"cancel\");\n }\n };\n\n const handleExternalApply = async () => {\n await submitApplication(jobDetails?.id, application?.id, false, true);\n window.location.reload();\n };\n\n const handleOpenModal = () => {\n switchModalType(\"submit\");\n };\n\n const positionPath = {\n pathname: whitelabelled ? \"/\" : \"/job/applications\",\n state: { job_id: isSm ? null : jobDetails.id },\n search: state?.search\n };\n\n const positionPathExperiment =\n !isExternal && !submitted ? { pathname: `/jobs/${jobDetails.id}/application/success` } : positionPath;\n\n const submitDisabled = !steps?.every(({ completed }) => completed) || application?.submit_step?.completed || loading;\n\n const isExternal =\n jobDetails?.position_type === \"external\" || jobDetails?.application_type === \"application_type_ats\";\n\n const actionButtons = [\n \n \n \n \n {isSm ? t(\"global.cancel\") : t(\"application.cancel_application\")}\n \n \n \n \n {submitted ? t(\"application.back_to_job\") : t(\"application.save_and_finish\")}\n \n \n
\n ,\n \n {!isExternal && !submitted && (\n \n {t(\"application.submit_application\")}\n \n )}\n \n ];\n\n return (\n <>\n \n \n \n \n \n \n \n \n {!isSuccessPage && !isQuestionsPage && (\n \n \n \n }\n fontSize=\"14px\"\n theme=\"black500\"\n margin=\"0 0 16px\"\n noBackground\n padding=\"0\"\n >\n {t(\"application.return_to_job\")}\n \n \n\n {currentStep.title ? (\n \n {currentStep.title}\n \n ) : (\n \n )}\n \n\n \n \n \n {isExternal ? (\n \n ) : (\n \n )}\n \n \n {(isSm ? actionButtons.reverse() : actionButtons).map((children, index) => (\n {children} \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 withTrackedRoute(withAuthorizationRedirect(observer(ApplicationScreen)));\n","import styled from \"styled-components\";\n\nexport const TestAndSurveyHeader = styled.div`\n display: flex;\n align-items: center;\n height: 60px;\n background-color: #fff;\n border-bottom: 1px solid #e1e1e1;\n`;\n","import React, { useRef, useEffect } from \"react\";\nimport parse from \"html-react-parser\";\nimport { useHistory } from \"react-router-dom\";\nimport { Comment, Like, Share } from \"@styled-icons/boxicons-solid\";\nimport cn from \"classnames\";\n\nimport { thousandShortcut } from \"utils/helpers\";\nimport { Title, Text, Label, Button, Divider, Video } from \"b2c/components/Core\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport ArticleImage from \"../ArticleImage\";\nimport AuthorInfo from \"../../../../components/AuthorInfo\";\nimport AuthorFullInfo from \"../AuthorFullInfo\";\nimport Comments from \"../../../../components/Comments\";\nimport ShareButton from \"../../../../components/ShareButton\";\nimport withLoading from \"../../../../components/withLoading\";\nimport SocialBottomControls from \"../SocialBottomControls\";\nimport useStore from \"../../../../contexts/store\";\nimport Promotion from \"../Promotion\";\nimport Placeholder from \"../Placeholder\";\nimport { GuestHidden, GuestVisible, AuthorizationButton } from \"../../../../components/WithAuth\";\nimport { getSearchParams } from \"../../../../../utils/getSearchParams\";\nimport { useIsBarona } from \"../../../../hooks\";\nimport { languageFormat } from \"../../../../constants/main\";\n\nconst Article = ({\n loading,\n loaded,\n id,\n body = \"\",\n categories = [],\n comments = [],\n comments_count: commentsCount = 0,\n created_at: createdAt = \"\",\n normal_image: normalImage,\n headline,\n liked_by_user: likedByUser = false,\n likes = 0,\n synopsis = \"\",\n views = 0,\n written_by: writtenBy = {},\n promotion_type: promotionType,\n likeArticle,\n removeLike,\n addComment,\n updateComment,\n removeComment\n}) => {\n const commentSection = useRef();\n const history = useHistory();\n const likeHandler = () => (!likedByUser ? likeArticle(id) : removeLike(id));\n const { features } = useStore(\"Premium\");\n const scrollToComments = () => commentSection.current?.scrollIntoView({ behavior: \"smooth\" });\n const queryCommentId = getSearchParams(location.search).get(\"comment_id\");\n const isBarona = useIsBarona();\n const { global_brand } = useStore(\"initialState\");\n const globalBrandName = global_brand.name.toLowerCase();\n const { t, language } = useTranslation();\n const languageFormatType = languageFormat[language];\n\n useEffect(() => {\n if (queryCommentId) {\n scrollToComments();\n }\n }, []);\n\n const options = {\n replace: domNode => {\n if (domNode.name === \"p\" && domNode.children && domNode.children[0].name === \"iframe\") {\n return (\n \n );\n }\n }\n };\n\n const handleAuthorPosts = () => {\n if (writtenBy) {\n history.push(`/forum/authors/${writtenBy.slug}`);\n }\n };\n\n return (\n <>\n \n \n {t(\"forum.label\")} \n \n {headline} \n \n {parse(synopsis.replace(\" \", \" \"))}\n \n \n
\n
\n
\n {isBarona ? (\n }\n margin=\"0 8px 0 0\"\n >\n {likes || \" \"}\n \n ) : (\n }\n margin=\"0 8px 0 0\"\n >\n {likes || \" \"}\n \n )}\n \n
\n }\n margin=\"0 8px 0 0\"\n onClick={likeHandler}\n >\n {likes || \" \"}\n \n \n
\n {isBarona ? (\n }\n theme=\"grey200\"\n margin=\"0 8px 0 0\"\n >\n {commentsCount || \" \"}\n \n ) : (\n } theme=\"grey200\" margin=\"0 8px 0 0\">\n {commentsCount || \" \"}\n \n )}\n \n
\n }\n theme=\"grey200\"\n margin=\"0 8px 0 0\"\n onClick={scrollToComments}\n >\n {commentsCount}\n \n \n
(\n } theme=\"grey200\" {...props}>\n {/* {shares_count} */}\n \n )}\n />\n \n
\n\n \n\n \n\n \n {parse(body.replace(\" \", \" \"), options)}\n
\n\n \n {categories.map(category => (\n \n {category}\n \n ))}\n
\n \n\n {!features?.instant_feedback_global?.activated && (\n \n )}\n\n \n\n \n\n \n\n \n \n
\n >\n );\n};\n\nexport default withLoading(Article, Placeholder);\n","import React from \"react\";\nimport imagePlaceholder from \"images/placeholder-news.jpg\";\nimport Image from \"../../../../components/Core/Image\";\nimport { ImageWrapper } from \"./styled\";\n\nconst ArticleImage = ({ src, alt, margin = \"30px -20px 40px\", loading = false }) => {\n return (\n \n \n {/* \n Photo credit: Retha Ferguson \n */}\n \n );\n};\n\nArticleImage.defaultProps = {\n src: imagePlaceholder,\n alt: \"Article Preview Image\"\n};\n\nexport default ArticleImage;\n","import styled from \"styled-components\";\n\nexport const ImageWrapper = styled.div`\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n max-height: 720px;\n ${props => props.styled}\n\n .article-image {\n max-width: 100%;\n width: 100%;\n object-fit: contain;\n }\n`;\n","import React from \"react\";\nimport parse from \"html-react-parser\";\n\nimport { Text } from \"b2c/components/Core\";\nimport { theme } from \"../../../../contexts/theme\";\nimport { AuthorFullInfoWrapper, Avatar, AvatarPlaceholder, DetailsContainer, InfoRow } from \"./styled\";\nimport { buildImageUrlS3 } from \"../../../../contexts/branded\";\nimport { nameImages } from \"../../../../constants/images\";\nimport { useTranslation } from \"../../../../hooks/useTranslation\";\n\nconst AuthorFullInfo = ({\n name = \"\",\n margin = \"0 0\",\n avatarImg,\n description = \"\",\n linkable = false,\n loading = false,\n loaded,\n onClick\n}) => {\n const avatar = avatarImg || buildImageUrlS3(nameImages.avatarEmpty);\n const { t } = useTranslation();\n\n return !loading ? (\n \n \n \n \n {t(\"forum.written_by\")}\n \n\n \n {name}\n \n\n \n {description ? {parse(description)} : {t(\"forum.author_empty_description\")} }\n \n \n \n ) : (\n \n \n \n \n \n \n \n \n\n \n \n \n );\n};\n\nexport default AuthorFullInfo;\n","import styled from \"styled-components\";\nimport { theme } from \"../../../../contexts/theme\";\n\nexport const AuthorFullInfoWrapper = styled.div`\n display: flex;\n ${props => (props.loaded ? \"animation: loaded 0.5s forwards;\" : \"\")}\n ${props => props.styled}\n ${props => (props.linkable ? \"cursor: pointer;\" : \"\")}\n`;\n\nexport const Avatar = styled.img`\n display: flex;\n justify-content: center;\n align-items: center;\n border-radius: 50%;\n object-fit: cover;\n width: 56px;\n height: 56px;\n margin-right: 15px;\n`;\n\nexport const AvatarPlaceholder = styled.div`\n display: flex;\n justify-content: center;\n align-items: center;\n border-radius: 50%;\n object-fit: cover;\n width: 56px;\n height: 56px;\n margin-right: 15px;\n background-color: ${theme.primary100};\n`;\n\nexport const DetailsContainer = styled.div`\n display: flex;\n flex-direction: column;\n`;\n\nexport const InfoRow = styled.div`\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n @media screen and (max-width: 767px) {\n flex-direction: column;\n align-items: flex-start;\n .text-divider {\n display: none;\n }\n }\n`;\n","import React from \"react\";\n\nimport { Divider, Text, Title } from \"../../../../components/Core\";\nimport AuthorInfo from \"../../../../components/AuthorInfo\";\nimport ArticleImage from \"../ArticleImage\";\n\nconst Placeholder = () => {\n return (\n \n \n \n\n \n\n \n \n \n\n \n \n \n \n \n );\n};\n\nexport default Placeholder;\n","import React from \"react\";\n\nimport PremiumBanner from \"../../../../components/PremiumBanner\";\n\nconst Promotion = ({ type, ...rest }) => {\n switch (type) {\n default:\n return null;\n /* hide for this ticket https://app.shortcut.com/fuzu/story/4129/remove-instant-feedback-remove-all-promo-elements-advertising-if-from-b2c-app */\n /* case \"instant_feedback\":\n return ;\n */\n\n case \"career_coaching\":\n return ;\n case \"premium_cv\":\n return ;\n case \"b2b_landing_page\":\n return ;\n }\n};\n\nexport default Promotion;\n","import React from \"react\";\nimport { Like } from \"@styled-icons/boxicons-solid\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport { Button } from \"../../../../components/Core\";\nimport { GuestHidden, GuestVisible } from \"../../../../components/WithAuth\";\nimport { SocialBottomControlsWrapper, StyledSectionTitle } from \"./styled\";\n\nconst SocialBottomControls = ({ liked, likes, likeHander }) => {\n const { t } = useTranslation();\n\n return (\n \n \n {t(\"forum.socials\")}\n \n \n }\n margin=\"0 12px 0 0\"\n role=\"button\"\n tabIndex=\"0\"\n aria-label=\"Like article\"\n onClick={likeHander}\n >\n {likes}\n \n \n \n }\n margin=\"0 12px 0 0\"\n role=\"button\"\n tabIndex=\"0\"\n aria-label=\"Like article\"\n disabled\n >\n {likes}\n \n \n\n {/* \n Share\n \n }\n margin='0 12px 0 0'\n role='button'\n tabIndex='0'\n aria-label='Share article on Facebook'\n >\n 5\n \n }\n margin='0 12px 0 0'\n role='button'\n tabIndex='0'\n aria-label='Share article on LinkedIn'\n >\n 0\n \n }\n margin='0 12px 0 0'\n role='button'\n tabIndex='0'\n aria-label='Share article on Twitter'\n >\n 1\n \n }\n role='button'\n tabIndex='0'\n aria-label='Copy article URL'\n /> */}\n \n );\n};\n\nexport default SocialBottomControls;\n","import styled from \"styled-components\";\nimport { Text } from \"b2c/components/Core\";\n\nexport const SocialBottomControlsWrapper = styled.div`\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n margin: 32px 0;\n`;\n\nexport const StyledSectionTitle = styled(Text)`\n @media screen and (max-width: 767px) {\n display: flex;\n width: 100%;\n margin-top: 20px;\n margin-bottom: 5px;\n }\n`;\n","import React, { useEffect } from \"react\";\nimport { observer } from \"mobx-react\";\nimport { useParams } from \"react-router-dom\";\n\nimport { usePrev } from \"utils/hooks\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport { withTrackedRoute } from \"../../hocs\";\nimport useStore from \"../../contexts/store\";\nimport NotFound from \"../NotFound\";\nimport Layout from \"../../components/Layout\";\nimport Article from \"./components/Article\";\nimport ArticleSection from \"../../components/FeedSections/ArticleSection\";\nimport { Suggestion } from \"../../components/Core\";\nimport { Container } from \"./styled\";\n\nconst ArticleScreen = () => {\n const {\n state: { status, loading },\n article,\n getArticle,\n likeArticle,\n removeLike,\n addComment,\n updateComment,\n removeComment,\n addReply\n } = useStore(\"Article\");\n const loaded = usePrev(loading);\n const { t } = useTranslation();\n const params = useParams();\n\n useEffect(() => {\n getArticle(params?.id, true);\n }, [params?.id]);\n\n useEffect(() => {\n if (window.scrollY) {\n window.scroll(0, 0);\n }\n }, [params?.id]);\n\n return (\n \n \n\n {status !== 404 ? (\n <>\n \n \n \n {article?.id && (\n \n \n \n \n \n )}\n >\n ) : (\n \n )}\n \n );\n};\n\nexport default withTrackedRoute(observer(ArticleScreen));\n// export default observer(ArticleScreen);\n","import styled from \"styled-components\";\n\nexport const Container = styled.div`\n .content {\n padding: 0 16px;\n }\n\n @media screen and (min-width: 768px) {\n .content {\n padding: 0 20px;\n }\n\n .content_sm {\n padding-top: 20px;\n }\n }\n`;\n","import React, { useState, useContext } from \"react\";\n\nimport { Link } from \"react-router-dom\";\n\nimport { validateEmail } from \"utils/validation\";\nimport { onEnterPress } from \"utils/helpers\";\nimport { Input, Button, Checkbox, Dropdown, Text } from \"b2c/components/Core\";\nimport BrandedContext from \"../../../../contexts/branded\";\n\nconst Confirmation = ({\n state: { loading, message },\n form,\n countries = [],\n validation_errors,\n submitForm,\n resetUser\n}) => {\n const { slug } = useContext(BrandedContext);\n const [agreed, setAgreement] = useState(false);\n const [formState, setFormState] = useState(form);\n\n const [validationState, setValidation] = useState({\n email: { error: false },\n fuzu_country_id: { error: false }\n });\n\n const handleSubmission = e => {\n e.preventDefault();\n\n const valid_email = validateEmail(formState.email);\n const countrySelected = !!formState.fuzu_country_id;\n\n return valid_email.test && countrySelected\n ? submitForm(formState)\n : setValidation({ email: valid_email, fuzu_country_id: { error: \"Please select country\" } });\n };\n\n return (\n <>\n \n\n \n Go back\n \n >\n );\n};\n\nexport default Confirmation;\n","import React, { useState, useContext } from \"react\";\nimport \"finally-polyfill\";\nimport { Link, useHistory } from \"react-router-dom\";\n\nimport { brandTypes, brandName } from \"b2c/constants/brand\";\nimport { validateForm } from \"utils/validation\";\nimport { onEnterPress } from \"utils/helpers\";\nimport { useQueryParams, useValidationTimeout } from \"utils/hooks\";\nimport { Dropdown, Text, Input, Checkbox, Button } from \"b2c/components/Core\";\nimport BrandedContext, {\n BrandVisible,\n BrandHidden,\n WhitelabelledOrCustomHidden,\n isMatchBrand,\n isCustomJkuat\n} from \"../../../../contexts/branded\";\nimport { withTracking } from \"../../../../hocs\";\nimport { Flex, ButtonBack } from \"./styled\";\n\nconst defaultValidation = {\n first_name: { error: false },\n last_name: { error: false },\n passport_number: { error: false },\n email: { error: false },\n password: { error: false },\n confirmation: { error: false },\n visible: { error: false },\n terms: { error: false },\n fuzu_country_id: { error: false }\n};\n\nconst FormStep = ({\n state: { loading, processing, message },\n form,\n countries = [],\n submitForm,\n validation_errors,\n setStep,\n setEmail,\n isJKUAT\n}) => {\n const { employer, brand_type } = useContext(BrandedContext);\n const [formState, setFormState] = useState(form);\n const { isTimedOut, setTimeout } = useValidationTimeout(3);\n const history = useHistory();\n const [validationState, setValidation] = useState(defaultValidation);\n const { return_to: returnTo } = useQueryParams();\n const isCustomPlatform = brand_type === brandTypes.customPlatform;\n const customJkuat = isCustomJkuat();\n\n const handleSubmission = e => {\n e.preventDefault();\n setValidation(defaultValidation);\n if (isTimedOut) return;\n\n const { valid, validation } = validateForm(formState);\n const phoneNumber = formState?.phone_number?.value;\n\n if (phoneNumber && phoneNumber.includes(\" \")) {\n formState.phone_number.value = phoneNumber.replaceAll(\" \", \"\");\n }\n\n return submitForm(valid, formState)?.finally(() => {\n setValidation(validation);\n setTimeout();\n });\n };\n\n const isDisableButtonDefault =\n !formState?.first_name || !formState.password || !formState.confirmation || !formState.terms || loading;\n\n const isDisableButton = isDisableButtonDefault || !formState?.email;\n const isDisableButtonBrand = isDisableButtonDefault || !formState.phone_number;\n const isDisableButtonJkuatBrand =\n isDisableButtonBrand ||\n !formState.passport_number ||\n !formState.last_name ||\n !formState.email ||\n !formState.email ||\n !formState?.phone_number?.value ||\n formState?.phone_number?.value === \"+\";\n\n const handleBackButton = () => {\n if (!isCustomPlatform && returnTo) {\n history.push(returnTo);\n } else {\n setEmail(\"\");\n setStep(4);\n }\n };\n\n const onChangePassword = ({ target: { value } }) => {\n if (customJkuat) {\n setFormState(prev => ({ ...prev, password: value, confirmation: value }));\n } else {\n setFormState(prev => ({ ...prev, password: value }));\n }\n };\n\n const disableButton = () => {\n if (isMatchBrand([\"ncpwd\", \"demo\"])) {\n return isDisableButtonBrand;\n }\n\n if (isJKUAT) {\n return isDisableButtonJkuatBrand;\n }\n\n return isDisableButton;\n };\n return (\n \n );\n};\n\nexport default withTracking(FormStep, \"sign_up_flow_started\", { flow: \"old\" });\n","import styled from \"styled-components\";\n\nexport const Flex = styled.div`\n display: flex;\n gap: 24px;\n\n .input-wrapper {\n width: 100%;\n }\n`;\n\nexport const ButtonBack = styled.button`\n color: #333;\n text-align: center;\n font-size: 16px;\n font-style: normal;\n font-weight: 500;\n line-height: 100%;\n border-radius: 5px;\n border: 1px solid #eee;\n background: #fff;\n display: flex;\n justify-content: center;\n align-items: center;\n padding: 15px 10px;\n margin-top: 4px;\n width: 100%;\n cursor: pointer;\n`;\n","var _rect, _path;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nconst SvgListMarkerGreen = props => /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 32,\n height: 32,\n fill: \"none\"\n}, props), _rect || (_rect = /*#__PURE__*/React.createElement(\"rect\", {\n width: 32,\n height: 32,\n fill: \"#0C9100\",\n rx: 4\n})), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#fff\",\n strokeWidth: 3,\n d: \"m5.714 16.038 6.819 6.819L26.285 9.143\"\n})));\nexport default SvgListMarkerGreen;","import React, { useContext, useEffect } from \"react\";\nimport { observer } from \"mobx-react\";\nimport { Row, Col, ScreenClassContext } from \"react-grid-system\";\nimport { useLocation, useHistory } from \"react-router-dom\";\n\nimport fuzuLogo from \"images/new_fuzu_logo_black.png\";\nimport ncpwdLogo from \"images/b2c/logo_large.png\";\nimport demoLogo from \"images/b2c/demo.png\";\nimport ListMarkerGreen from \"images/b2c/icons/listMarkerGreen.svg\";\nimport welcomeImage from \"images/b2c/onboarding/PP_phones.png\";\nimport careerPortalBackground from \"images/b2c/clouds.jpg\";\nimport ncpwdImage from \"images/b2c/registre_image.jpg\";\nimport jkuatLogo from \"images/b2c/jkuatLogo.png\";\nimport contributeImage from \"images/b2c/contribute_portrait.jpg\";\nimport baronaLine from \"images/b2c/brush-line.png\";\nimport mntLogo from \"images/b2c/badges/mtn-black-logo.png\";\nimport BaronaLogo from \"images/barona-logo.svg\";\nimport kepsaLogo from \"images/kepsa-logo.png\";\nimport mntImage from \"images/b2c/mnt/mnt-image.png\";\nimport { Title, Text, Image, Label } from \"b2c/components/Core\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport BrandedContext, {\n WhitelabelledHidden,\n WhitelabelledVisible,\n BrandHidden,\n BrandVisible,\n isCustomJkuat,\n isKepsa\n} from \"../../../../contexts/branded\";\nimport {\n AuthLeftContainer,\n AuthLeftContent,\n Content,\n AuthWelcomeImage,\n AuthInfo,\n AuthTitle,\n AuthText,\n AuthTextKepsa,\n LogoLink,\n BaronaTitle,\n LogoLinkKepsa,\n AuthTitleKepsa\n} from \"./styled\";\nimport useStore from \"../../../../contexts/store\";\nimport { useStandaloneMode } from \"../../../../contexts/standalone\";\nimport MobileHeading from \"../MobileHeading\";\nimport PoweredByFuzu from \"../PoweredByFuzu\";\nimport { brandName } from \"../../../../constants/brand\";\nimport { theme } from \"../../../../contexts/theme\";\nimport { useIsBarona } from \"../../../../hooks\";\n\nconst LeftSide = () => {\n const screen = useContext(ScreenClassContext);\n const isSm = [\"xs\", \"sm\"].includes(screen);\n const isKepsaBrand = isKepsa();\n\n const isStandalone = useStandaloneMode();\n\n return (\n <>\n \n {isStandalone ? : } \n\n \n {isKepsaBrand ? : }\n \n \n \n \n \n >\n );\n};\n\nconst DefaultContent = observer(({ isSm }) => {\n const { pathname } = useLocation();\n const history = useHistory();\n const isMtn = /mtn-pulse/.test(pathname);\n const { isNewRegistrationFlow, disableNewRegistrationFlow } = useStore(\"User\");\n const isStandalone = useStandaloneMode();\n const isBarona = useIsBarona();\n const isKepsaBrand = isKepsa();\n const { t } = useTranslation();\n\n const { Logo, featureList, imageProps, listProps, beforeList } = (() => {\n if (isKepsaBrand) {\n return {\n Logo: (\n \n \n \n ),\n beforeList: (\n \n Welcome to KEPSA Ajira! \n \n We create and commercialize quality solutions and products through research, consulting, training and\n innovation to transform individuals and institutions in Africa and beyond\n \n \n ),\n listProps: {},\n imageProps: {},\n featureList: []\n };\n }\n if (isBarona) {\n return {\n Logo: (\n \n \n \n ),\n beforeList: (\n <>\n {t(\"login.title\")} \n BARONA! \n\n \n >\n ),\n listProps: {},\n imageProps: {},\n featureList: []\n };\n }\n if (isMtn) {\n return {\n Logo: (\n \n ),\n featureList: [\n \"400 Fuzu points to use on Premium features\",\n \"Hundreds of job opportunities\",\n \"Personalised career guidance, courses and articles\"\n ],\n imageProps: { src: mntImage, margin: \"auto auto -40px\", width: 395, smWidth: 240 },\n listProps: {\n lineHeight: isSm ? \"18px\" : \"30px\",\n margin: isSm ? 0 : \"0 0 15px\",\n fontSize: isSm ? 14 : 20,\n fontWeight: 400\n },\n beforeList: (\n \n Hello, Pulsers! Sign up to Fuzu, Africa’s fastest growing career community, and unlock access to:\n \n )\n };\n }\n\n return {\n Logo: (\n history.push(\"/\")}\n width={isSm ? 100 : 240}\n padding=\"0\"\n borderRadius=\"0\"\n style={{ cursor: \"pointer\" }}\n margin={isStandalone ? \"0 auto 0 0\" : isSm ? \"0 auto 30px 0\" : \"0 auto 50px\"}\n display=\"block\"\n />\n ),\n featureList: [\n t(\"login.list.receive_personalized_text\"),\n t(\"login.list.get_feedback_text\"),\n t(\"login.list.plan_your_text\"),\n t(\"login.list.access_hundreds_text\")\n ],\n listProps: { lineHeight: isSm ? \"130%\" : \"30px\", margin: \"0 0 15px\", fontSize: isSm ? 16 : 20, fontWeight: 600 },\n imageProps: { src: welcomeImage }\n };\n })();\n\n useEffect(() => {\n if (isMtn && isNewRegistrationFlow) {\n disableNewRegistrationFlow();\n }\n }, [isMtn, isNewRegistrationFlow]);\n\n return (\n \n \n {Logo}\n {beforeList}\n {!isStandalone && (\n \n {featureList.map(text => (\n }\n fill=\"transparent\"\n noBackground\n color=\"black500\"\n padding=\"0\"\n {...listProps}\n >\n {text}\n \n ))}\n
\n )}\n \n \n \n );\n});\n\nconst DefaultContentKepsa = observer(({ isSm }) => {\n return (\n \n \n \n \n \n \n \n Welcome to \n KEPSA Ajira!\n \n \n We create and commercialize quality solutions and products through research, consulting, training and\n innovation to transform individuals and institutions in Africa and beyond\n \n\n {!isSm ? (\n \n \n Powered by \n \n \n \n \n
\n ) : null}\n \n \n \n );\n});\n\nconst CareerPortalContent = ({ isSm }) => {\n const { name, employer } = useContext(BrandedContext);\n\n return (\n \n \n \n \n Welcome to {name} jobs!\n \n \n \n Powered by \n \n \n \n \n
\n \n \n );\n};\n\nconst CustomPlatformContent = () => {\n const { slug } = useContext(BrandedContext);\n const isNCPWD = slug === \"ncpwd\";\n const customJkuat = isCustomJkuat();\n\n const renderBackground = () => {\n if (isNCPWD) {\n return `url(${ncpwdImage})`;\n }\n\n if (customJkuat) {\n return \"linear-gradient(180deg, #E1F6E0 35.22%, #FDF394 100%)\";\n }\n\n return `url(${contributeImage})`;\n };\n\n const renderImage = () => {\n if (isNCPWD) {\n return ncpwdLogo;\n }\n\n if (customJkuat) {\n return jkuatLogo;\n }\n\n return demoLogo;\n };\n\n return (\n \n \n \n \n \n {customJkuat && (\n <>\n \n \n Welcome to JKUAT Enterprises jobs! \n \n \n We create and commercialize quality solutions and products through research, consulting, training and\n innovation to transform individuals and institutions in Africa and beyond\n \n \n \n \n \n >\n )}\n \n \n );\n};\n\nexport default LeftSide;\n","import styled from \"styled-components\";\nimport { Link } from \"react-router-dom\";\n\nexport const AuthWelcomeImage = styled.img`\n ${({ margin = \"auto\", width = 780, smWidth = 780 }) => `\n max-width: 100%;\n width: ${width}px;\n margin: ${margin};\n @media screen and (max-width: 767px) {\n position: absolute;\n width: ${smWidth}px;\n right: 0;\n bottom: -25%;\n z-index: -1;\n opacity: 0.2;\n }\n `}\n`;\n\nexport const AuthLeftContent = styled.div`\n display: flex;\n flex-direction: column;\n align-items: ${({ isJKUAT }) => (isJKUAT ? \"flex-start\" : \"center\")};\n width: 100%;\n height: 100%;\n`;\n\nexport const LogoLink = styled(Link)`\n outline: none;\n display: block;\n margin: 0 auto 24px auto;\n\n svg {\n width: 182px;\n height: 40px;\n }\n\n @media screen and (min-width: 768px) {\n margin: 0 auto 72px;\n }\n`;\n\nexport const LogoLinkKepsa = styled(Link)`\n border-radius: 8px;\n background: #fff;\n padding: 8px;\n width: 48px;\n height: 48px;\n display: block;\n margin-bottom: 16px;\n\n img {\n max-width: 100%;\n }\n\n @media screen and (min-width: 768px) {\n width: 112px;\n height: 112px;\n margin-bottom: 40px;\n }\n`;\n\nexport const AuthInfo = styled.div`\n margin-top: 20px;\n\n @media screen and (min-width: 768px) {\n margin-top: 40px;\n }\n`;\n\nexport const AuthTitle = styled.h1`\n color: #000;\n font-size: 20px;\n font-weight: 600;\n line-height: 130%;\n margin-bottom: 8px;\n\n span {\n display: block;\n }\n\n @media screen and (min-width: 768px) {\n font-size: 36px;\n line-height: 120%;\n }\n`;\n\nexport const AuthText = styled.p`\n color: #5b705a;\n font-size: 14px;\n font-weight: 400;\n line-height: 140%;\n max-width: 480px;\n\n @media screen and (min-width: 768px) {\n font-size: 20px;\n line-height: 160%;\n }\n`;\n\nexport const AuthTitleKepsa = styled.h1`\n color: #000;\n font-size: 20px;\n font-weight: 600;\n line-height: 130%;\n\n @media screen and (min-width: 768px) {\n font-size: 36px;\n line-height: 120%;\n }\n`;\n\nexport const AuthTextKepsa = styled.p`\n color: #333;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 140%;\n margin: 8px 0 0;\n\n @media screen and (min-width: 768px) {\n margin: 16px 0 0;\n font-size: 16px;\n }\n`;\n\nexport const AuthLeftContainer = styled.div`\n background: ${({ $backGroundImage }) => $backGroundImage};\n background-size: cover;\n background-position: center center;\n width: 50%;\n flex: 0 0 50%;\n min-width: 0px;\n padding: 50px 24px;\n position: relative;\n overflow: hidden;\n height: 100%;\n z-index: 1;\n\n @media screen and (max-width: 767px) {\n width: 100%;\n flex: 0 0 ${({ isHideHeight }) => (isHideHeight ? \"auto\" : \"320px\")};\n height: ${({ isHideHeight }) => (isHideHeight ? \"auto\" : \"320px\")};\n max-height: ${({ isHideHeight }) => (isHideHeight ? \"initial\" : \"320px\")};\n padding: 20px;\n }\n\n @media screen and (min-width: 768px) {\n padding: ${({ isJKUAT }) => (isJKUAT ? \"50px 80px\" : \" padding: 50px 24px\")};\n }\n`;\n\nexport const BaronaTitle = styled.p`\n font-family: Originals2;\n font-size: 60px;\n line-height: 50px;\n font-weight: 400;\n text-align: center;\n margin: 0 auto;\n color: #ffffff;\n font-style: italic;\n\n @media screen and (min-width: 768px) {\n font-size: 120px;\n line-height: 100px;\n }\n`;\n\nexport const Content = styled.p`\n max-width: 480px;\n text-align: left;\n height: 100%;\n display: flex;\n flex-direction: column;\n`;\n","import React, { useState, useContext, useRef, useEffect } from \"react\";\nimport { Link } from \"react-router-dom\";\n\nimport BaronaLogoSvg from \"images/barona-logo.svg\";\nimport { validateLogin } from \"utils/validation\";\nimport { onEnterPress } from \"utils/helpers\";\nimport { useErrorFocus, useQueryParams } from \"utils/hooks\";\nimport { Title, Text, Input, Button, Spinner } from \"b2c/components/Core\";\nimport { Close } from \"@styled-icons/evaicons-solid\";\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport { ScreenClassContext } from \"react-grid-system\";\nimport BrandedContext, { BrandVisible, BrandHidden, isCustomJkuat, isKepsa } from \"../../../../contexts/branded\";\nimport { withTracking } from \"../../../../hocs\";\nimport { useStandaloneMode } from \"../../../../contexts/standalone\";\nimport { Label, DontHaveAccount, ForgotPassword, LinkClose, Overlay, OverlayInfo } from \"./styled\";\nimport PoweredByFuzu from \"../PoweredByFuzu\";\nimport { brandName } from \"../../../../constants/brand\";\nimport { useIsBarona } from \"../../../../hooks\";\nimport useStore from \"../../../../contexts/store\";\n\nconst defaultValidation = {\n email: { error: false },\n password: { error: false }\n};\n\nconst Login = ({\n state: { processing, message },\n match: {\n params: { slug }\n },\n userLogin,\n notifyMnt\n}) => {\n const { global_brand: globalBrand } = useStore(\"initialState\");\n const { employer } = useContext(BrandedContext);\n const form = useRef();\n const isStandalone = useStandaloneMode();\n const customJkuat = isCustomJkuat();\n const isBarona = useIsBarona();\n const isKepsaBrand = isKepsa();\n const { t, changeLanguage } = useTranslation();\n const screen = useContext(ScreenClassContext);\n const isSm = [\"xs\", \"sm\"].includes(screen);\n\n const [formState, setFormState] = useState({\n email: \"\",\n password: \"\",\n remember_me: true\n });\n\n const [validationState, setValidation] = useState({\n email: { error: false },\n password: { error: false }\n });\n\n const { return_to: returnTo } = useQueryParams();\n\n const handleSubmission = e => {\n e.preventDefault();\n setValidation(defaultValidation);\n\n const { valid, validation } = validateLogin(formState);\n\n return userLogin(valid, formState, { context: \"login_page\" }).then(user => {\n setValidation(validation);\n\n if (user?.ui_locale) {\n changeLanguage(user.ui_locale);\n }\n\n if (slug === \"mtn-pulse\") {\n notifyMnt();\n }\n });\n };\n\n useErrorFocus(form, validationState);\n\n const handleClose = () => {\n if (returnTo) {\n return returnTo;\n }\n\n return window.location.origin;\n };\n\n useEffect(() => {\n if (globalBrand.custom_authentication_b2c_url) {\n window.location.href = globalBrand.custom_authentication_b2c_url;\n }\n }, []);\n\n return (\n <>\n {globalBrand.custom_authentication_b2c_url && (\n \n \n \n {t(\"login.redirect_text\")} \n \n )}\n {!isStandalone && (\n <>\n \n {t(\"login.sub-title\")}\n {!isBarona && !isKepsaBrand && (\n <>\n to Fuzu \n to {employer?.name} \n >\n )}\n \n\n {!isSm && (\n \n \n \n \n \n )}\n\n \n \n {employer?.name} portal is powered by Fuzu © \n \n {!isKepsaBrand && (\n \n {t(\"login.create_account_label\")} \n\n \n {t(\"login.create_account_button\")}\n \n \n )}\n \n
\n >\n )}\n\n \n >\n );\n};\n\nexport default withTracking(Login, \"login_flow_started\", { context: \"login_page\" });\n","import styled from \"styled-components\";\n\nexport const LinkClose = styled.a`\n cursor: pointer;\n height: 32px;\n width: 32px;\n background: transparent;\n position: absolute;\n right: 100px;\n top: 20;\n display: ${({ isHide }) => (isHide ? \"none\" : \"block\")};\n\n svg {\n width: 24px;\n height: 24px;\n fill: #a4a4a4;\n }\n\n @media screen and (min-width: 640px) {\n display: block;\n }\n\n @media screen and (min-width: 768px) {\n top: 40px;\n }\n`;\n\nexport const Label = styled.div`\n color: #666;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 140%;\n margin-bottom: 8px;\n`;\n\nexport const DontHaveAccount = styled.div`\n display: flex;\n gap: 5px;\n margin-bottom: 24px;\n\n div {\n margin: 0;\n }\n\n a {\n color: #408bfc;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 140%;\n }\n`;\n\nexport const ForgotPassword = styled.div`\n a {\n color: #408bfc;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 140%;\n }\n`;\n\nexport const Overlay = styled.div`\n position: fixed;\n width: 100vw;\n height: 100vh;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n background: #fff;\n z-index: 11;\n display: flex;\n align-items: center;\n justify-content: center;\n flex-direction: column;\n\n svg {\n margin-top: 32px;\n }\n\n path {\n fill: #18181b;\n }\n\n div {\n margin: 0;\n }\n`;\n\nexport const OverlayInfo = styled.span`\n color: #a4a4a4;\n text-align: center;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 140%;\n display: block;\n margin: 24px 0 0;\n`;\n","import React from \"react\";\nimport fuzuLogo from \"images/new_fuzu_logo_black.png\";\nimport { Image } from \"b2c/components/Core\";\nimport { MobileContent, Text } from \"./styled\";\n\nconst MobileHeading = () => {\n return (\n \n history.push(\"/\")}\n width={100}\n padding=\"0\"\n borderRadius=\"0\"\n margin=\"0 auto 15px auto\"\n display=\"block\"\n />\n Welcome back! \n \n );\n};\n\nexport default MobileHeading;\n","import styled from \"styled-components\";\n\nexport const MobileContent = styled.div`\n padding: 45px 20px 32px 20px;\n text-align: center;\n background-color: #ffffff;\n`;\n\nexport const Text = styled.p`\n font-weight: 600;\n font-size: 24px;\n line-height: 130%;\n color: #292929;\n`;\n","import React, { useState } from \"react\";\n\nimport { onEnterPress } from \"utils/helpers\";\nimport { Input, Button, Text } from \"b2c/components/Core\";\nimport { ArrowForward } from \"@styled-icons/evaicons-solid\";\n\nconst Ncpwd = ({ state: { loading, processing, message }, form, submitForm }) => {\n const [formState, setFormState] = useState(form);\n\n const [validationState, setValidation] = useState({\n number: { error: false },\n national_id: { error: false }\n });\n\n const handleSubmission = e => {\n e.preventDefault();\n\n const nonEmpty = !!formState.number;\n\n if (!nonEmpty) {\n return setValidation({ ...validationState, number: { error: \"NCPWD Disability ID is required\" } });\n }\n\n return submitForm(formState);\n };\n\n return (\n \n );\n};\n\nexport default Ncpwd;\n","import React, { useState } from \"react\";\n\nimport { onEnterPress } from \"utils/helpers\";\nimport { validateEmail, validateLogin } from \"utils/validation\";\nimport { Input, Button, Text } from \"b2c/components/Core\";\nimport { ButtonBack } from \"./styled\";\n\nconst NcpwdCheck = ({\n state: { loading, processing, message },\n ncpwd_id,\n email,\n checkEmail,\n ncpwdLogin,\n setEmail,\n setStep\n}) => {\n const [formState, setFormState] = useState({\n ncpwd_id,\n email,\n ...(email ? { password: \"\" } : {})\n });\n\n const inputDisabled = !!email;\n\n const [validationState, setValidation] = useState({\n email: { error: false },\n password: { error: false }\n });\n\n const handleSubmission = e => {\n e.preventDefault();\n\n if (formState?.hasOwnProperty(\"password\")) {\n const { valid, validation } = validateLogin(formState);\n\n return valid\n ? ncpwdLogin(formState).then(() => {\n setStep(3);\n })\n : setValidation(validation);\n }\n const emailValid = validateEmail(formState?.email);\n\n if (emailValid.test) {\n checkEmail(formState?.email).then(exists => {\n setEmail(formState?.email);\n if (!exists) setStep(1);\n else setFormState(prev => ({ ...prev, password: \"\" }));\n });\n } else setValidation({ ...validationState, email: emailValid });\n };\n\n return (\n \n );\n};\n\nexport default NcpwdCheck;\n","import styled from \"styled-components\";\n\nexport const ButtonBack = styled.button`\n color: #333;\n text-align: center;\n font-size: 16px;\n font-style: normal;\n font-weight: 500;\n line-height: 100%;\n border-radius: 5px;\n border: 1px solid #eee;\n background: #fff;\n display: flex;\n justify-content: center;\n align-items: center;\n padding: 15px 10px;\n margin-top: 4px;\n width: 100%;\n cursor: pointer;\n`;\n","import React, { useState } from \"react\";\nimport { Link } from \"react-router-dom\";\n\nimport { useTranslation } from \"b2c/hooks/useTranslation\";\nimport { validateEmail } from \"utils/validation\";\nimport { Title, Text, Input, Button, Divider } from \"b2c/components/Core\";\n\nconst PasswordReset = ({ state: { processing, message }, userResetPassword }) => {\n const [sent, setEmailSent] = useState(false);\n const [validationError, setError] = useState(\"\");\n const { t } = useTranslation();\n\n const handleSubmission = e => {\n e.preventDefault();\n setError(\"\");\n\n const { error, test } = validateEmail(e.target.email.value);\n\n return test\n ? userResetPassword(e.target.email.value).then(success => {\n setEmailSent(success);\n })\n : setError(error);\n };\n\n return (\n <>\n \n {t(\"reset_password.title\")}\n \n {!sent ? (\n <>\n \n {t(\"reset_password.description\")}\n \n \n >\n ) : (\n <>\n \n {message}\n \n \n \n {t(\"reset_password.back_to_login\")}\n \n >\n )}\n >\n );\n};\n\nexport default PasswordReset;\n","import React, { useState } from \"react\";\nimport { Redirect } from \"react-router-dom\";\n\nimport { validatePassword } from \"utils/validation\";\nimport { useQueryParams } from \"utils/hooks\";\nimport { Title, Text, Input, Button } from \"b2c/components/Core\";\n\nconst PasswordUpdate = ({ state: { processing, message }, validation_errors, userUpdatePassword }) => {\n const { reset_password_token } = useQueryParams();\n const [validationError, setError] = useState({\n password: \"\",\n confirmation: \"\"\n });\n\n const handleSubmission = e => {\n e.preventDefault();\n const password = e.target.password.value;\n const password_confirmation = e.target.confirmation.value;\n setError({\n password: \"\",\n confirmation: \"\"\n });\n\n const validPassword = validatePassword(e.target.password.value);\n const validConfirm = {\n test: password_confirmation && password === password_confirmation,\n error: password_confirmation && password === password_confirmation ? \"\" : \"Passwords do not match\"\n };\n\n return validPassword.test && validConfirm.test\n ? userUpdatePassword({\n reset_password_token,\n password,\n password_confirmation\n })\n : setError({\n password: validPassword.error,\n confirmation: validConfirm.error\n });\n };\n\n return reset_password_token ? (\n <>\n \n Update your password\n \n \n Type in your new password\n \n \n >\n ) : (\n \n );\n};\n\nexport default PasswordUpdate;\n","import React from \"react\";\n\nimport fuzuLogoBlack from \"images/new_fuzu_logo_black.png\";\nimport { Image } from \"b2c/components/Core\";\nimport { Text, Flex } from \"./styled\";\n\nconst PoweredByFuzu = ({ isHideMobile, margin }) => {\n return (\n \n Powered by \n \n \n );\n};\n\nexport default PoweredByFuzu;\n","import styled from \"styled-components\";\n\nexport const Flex = styled.div`\n display: ${({ isHideMobile }) => (isHideMobile ? \"none\" : \"flex\")};\n margin-top: ${({ margin }) => margin || \"40px\"};\n align-items: center;\n gap: 4px;\n justify-content: center;\n padding: 24px 12px;\n\n img {\n max-width: 48px;\n max-height: 100%;\n width: 100%;\n display: block;\n }\n\n @media screen and (min-width: 768px) {\n justify-content: flex-start;\n padding: 0;\n display: ${({ isHideMobile }) => (isHideMobile ? \"flex\" : \"none\")};\n margin-top: auto;\n\n img {\n max-width: 80px;\n }\n }\n`;\n\nexport const Text = styled.span`\n display: flex;\n align-items: center;\n color: #666;\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n line-height: normal;\n`;\n","import React, { useState, useLayoutEffect, useContext } from \"react\";\nimport { Redirect, useParams } from \"react-router-dom\";\n\nimport { useDocumentTitle, useQueryParams } from \"utils/hooks\";\nimport { brandName } from \"b2c/constants/brand\";\nimport NcpwdCheck from \"../NcpwdCheck\";\nimport Form from \"../Form\";\nimport Confirmation from \"../Confirmation\";\nimport Ncpwd from \"../Ncpwd\";\nimport BrandedContext, { isCustomJkuat, isKepsa, isWhitelabelledOrJkuat } from \"../../../../contexts/branded\";\n\nimport RegistrationHeadContent from \"../RegistrationHeadContent\";\n\nconst formInit = {\n first_name: \"\",\n last_name: \"\",\n passport_number: \"\",\n email: \"\",\n password: \"\",\n confirmation: \"\",\n fuzu_country_id: null,\n visible: false,\n terms: false\n};\n\nconst Registration = ({\n state,\n first_name,\n email,\n countries,\n initialStep = 1,\n getCountries,\n userRegister,\n userDetails,\n resetUser,\n ncpwdValidateUser,\n checkEmail,\n ncpwdLogin,\n validation_errors,\n resetValidationErrors,\n fromUrl = \"/home\",\n notifyMnt\n}) => {\n const whitelabelled = isWhitelabelledOrJkuat();\n const isKepsaBrand = isKepsa();\n const customJkuat = isCustomJkuat();\n\n const redirectTo = () => {\n if (whitelabelled) {\n if (isKepsaBrand) {\n return \"/home\";\n }\n if (fromUrl === \"/home\") {\n return \"/\";\n }\n return fromUrl || \"/\";\n }\n\n return \"/onboarding\";\n };\n\n const { slug, employer } = useContext(BrandedContext);\n const { refer_code, return_to } = useQueryParams();\n const [step, setStep] = useState(1);\n const { slug: routeSlug } = useParams();\n const [userForm, setUserForm] = useState({\n ...formInit,\n email,\n first_name,\n fuzu_country_id: slug === \"ncpwd\" ? 1 : routeSlug === \"mtn-pulse\" ? 232 : null\n });\n\n const [ncpwd, setNcpwd] = useState({\n number: undefined,\n national_id: undefined\n });\n\n const [confirmation, setConfirmation] = useState({\n email: email || \"\",\n fuzu_country_id: null,\n talent_pool_visibility: true\n });\n\n useLayoutEffect(() => {\n if (first_name !== userForm.first_name) setUserForm(prev => ({ ...prev, first_name }));\n }, [first_name]);\n\n useLayoutEffect(() => {\n if ((initialStep <= 2 || initialStep === 4) && !countries) getCountries(routeSlug);\n }, []);\n\n useLayoutEffect(() => {\n setStep(initialStep);\n }, [initialStep]);\n\n useLayoutEffect(() => {\n resetValidationErrors();\n }, [step]);\n\n const formStepSuccess = (valid, form) => {\n setUserForm(form);\n return userRegister(valid, form, ncpwd.number, refer_code, slug === brandName.jkuat).then(proceed => {\n if (proceed) {\n if (isKepsaBrand || customJkuat) {\n window.location.href = \"/home\";\n return null;\n } else {\n setStep(3);\n if (routeSlug === \"mtn-pulse\") {\n notifyMnt();\n }\n }\n }\n });\n };\n\n const handleNcpwd = form => {\n setNcpwd(form);\n return ncpwdValidateUser(form).then(proceed => {\n if (proceed) {\n setStep(4);\n }\n });\n };\n\n const handleConfirmation = form => {\n setConfirmation(form);\n return userDetails(form).then(proceed => {\n if (proceed) {\n setStep(3);\n }\n });\n };\n\n useDocumentTitle(`Registration - Step ${step + 1 - initialStep} of ${3 - initialStep}`);\n\n const renderContents = () => {\n switch (step) {\n case 0:\n return ;\n case 4:\n return (\n setUserForm(prev => ({ ...prev, email: emails }))}\n ncpwdLogin={ncpwdLogin}\n setStep={setStep}\n />\n );\n default:\n case 1:\n return (\n