From 381b72edfa108fd00d7cbb1b0ec2bbea5272dcee Mon Sep 17 00:00:00 2001 From: konstantinosG-deriv <104083272+konstantinosG-deriv@users.noreply.github.com> Date: Fri, 24 Nov 2023 11:14:52 +0100 Subject: [PATCH] feat: remove unused code (#5855) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: “konstantinosG-deriv” <“konstantinos.gkagiannis@regentmarkets.com”> --- src/components/elements/index.ts | 2 - src/components/elements/video-player.tsx | 43 - .../bug-bounty/static/_scope_content.tsx | 184 ---- src/pages/careers/_controller/_locations.ts | 12 - .../_dept-layout.types.ts | 7 - .../_open-position-see-all-button.tsx | 31 - .../_open-positions.tsx | 89 -- .../careers/_layout-components/_link-list.tsx | 106 --- .../_layout-components/_no-open-positions.tsx | 22 - .../careers/_model/_job_types/_job_types.ts | 5 - .../_open-positions/_accounts-and-payments.ts | 89 -- .../_model/_open-positions/_back-end.ts | 161 ---- .../_open-positions/_business-intelligence.ts | 71 -- .../_model/_open-positions/_compliance.ts | 338 -------- .../_model/_open-positions/_content.ts | 79 -- .../_open-positions/_crypto-development.ts | 202 ----- .../_open-positions/_customer-support.ts | 266 ------ .../careers/_model/_open-positions/_devops.ts | 99 --- .../_open-positions/_disaster-recovery.ts | 53 -- .../_model/_open-positions/_front-end.ts | 295 ------- .../_model/_open-positions/_hr-recruitment.ts | 218 ----- .../_model/_open-positions/_internal-audit.ts | 40 - .../_model/_open-positions/_it-admin.ts | 87 -- .../_model/_open-positions/_marketing.ts | 795 ------------------ .../careers/_model/_open-positions/_other.ts | 100 --- .../_model/_open-positions/_product-design.ts | 173 ---- .../_open-positions/_project-management.ts | 79 -- .../_open-positions/_quality-assurance.ts | 138 --- .../careers/_model/_open-positions/_quants.ts | 127 --- .../_model/_open-positions/_security.ts | 1 - .../_open-positions/_system-integrator.ts | 85 -- src/pages/dbot/_dbot-video.tsx | 212 ----- src/pages/dtrader/_dtrader-tabs.tsx | 286 ------- 33 files changed, 4495 deletions(-) delete mode 100644 src/components/elements/video-player.tsx delete mode 100644 src/pages/bug-bounty/static/_scope_content.tsx delete mode 100644 src/pages/careers/_controller/_locations.ts delete mode 100644 src/pages/careers/_dept-layout-components/_open-position-see-all-button.tsx delete mode 100644 src/pages/careers/_dept-layout-components/_open-positions.tsx delete mode 100644 src/pages/careers/_layout-components/_link-list.tsx delete mode 100644 src/pages/careers/_layout-components/_no-open-positions.tsx delete mode 100644 src/pages/careers/_model/_job_types/_job_types.ts delete mode 100644 src/pages/careers/_model/_open-positions/_accounts-and-payments.ts delete mode 100644 src/pages/careers/_model/_open-positions/_back-end.ts delete mode 100644 src/pages/careers/_model/_open-positions/_business-intelligence.ts delete mode 100644 src/pages/careers/_model/_open-positions/_compliance.ts delete mode 100644 src/pages/careers/_model/_open-positions/_content.ts delete mode 100644 src/pages/careers/_model/_open-positions/_crypto-development.ts delete mode 100644 src/pages/careers/_model/_open-positions/_customer-support.ts delete mode 100644 src/pages/careers/_model/_open-positions/_devops.ts delete mode 100644 src/pages/careers/_model/_open-positions/_disaster-recovery.ts delete mode 100644 src/pages/careers/_model/_open-positions/_front-end.ts delete mode 100644 src/pages/careers/_model/_open-positions/_hr-recruitment.ts delete mode 100644 src/pages/careers/_model/_open-positions/_internal-audit.ts delete mode 100644 src/pages/careers/_model/_open-positions/_it-admin.ts delete mode 100644 src/pages/careers/_model/_open-positions/_marketing.ts delete mode 100644 src/pages/careers/_model/_open-positions/_other.ts delete mode 100644 src/pages/careers/_model/_open-positions/_product-design.ts delete mode 100644 src/pages/careers/_model/_open-positions/_project-management.ts delete mode 100644 src/pages/careers/_model/_open-positions/_quality-assurance.ts delete mode 100644 src/pages/careers/_model/_open-positions/_quants.ts delete mode 100644 src/pages/careers/_model/_open-positions/_security.ts delete mode 100644 src/pages/careers/_model/_open-positions/_system-integrator.ts delete mode 100644 src/pages/dbot/_dbot-video.tsx delete mode 100644 src/pages/dtrader/_dtrader-tabs.tsx diff --git a/src/components/elements/index.ts b/src/components/elements/index.ts index d0b3ad02ca1..d21a436dc22 100644 --- a/src/components/elements/index.ts +++ b/src/components/elements/index.ts @@ -24,7 +24,6 @@ import StepperView from './stepper-view' import { Ul, Li } from './lists' import { Carousel } from './carousel' import type { CarouselProps } from './carousel' -import VideoPlayer from './video-player' import Modal from './modal' import ImageWithDireciton from './image-with-direction' @@ -64,7 +63,6 @@ export { Timeline, StepperView, Ul, - VideoPlayer, Modal, ImageWithDireciton, } diff --git a/src/components/elements/video-player.tsx b/src/components/elements/video-player.tsx deleted file mode 100644 index 745dd568d3d..00000000000 --- a/src/components/elements/video-player.tsx +++ /dev/null @@ -1,43 +0,0 @@ -import React from 'react' -import styled from 'styled-components' -import device from 'themes/device' - -type PlayerWrapperProps = { - max_width: string - mobile_max_width: string -} - -const PlayerWrapper = styled.div` - width: 100%; - max-width: ${(props) => props.max_width}; - background-color: var(--color-black); - outline: none; - - @media ${device.tabletL} { - max-width: ${(props) => props.mobile_max_width}; - } -` - -const Video = styled.video` - width: 100%; -` - -type VideoPlayerProps = { - controls: boolean - max_width?: string - mobile_max_width?: string - src: string -} - -const VideoPlayer = ({ controls, mobile_max_width, max_width, src }: VideoPlayerProps) => { - return ( - - - - ) -} - -export default VideoPlayer diff --git a/src/pages/bug-bounty/static/_scope_content.tsx b/src/pages/bug-bounty/static/_scope_content.tsx deleted file mode 100644 index e63a2dbfa34..00000000000 --- a/src/pages/bug-bounty/static/_scope_content.tsx +++ /dev/null @@ -1,184 +0,0 @@ -import React from 'react' -import styled from 'styled-components' -import device from 'themes/device' -import { Header, LocalizedLinkText } from 'components/elements' -import { TString } from 'types/generics' - -const LinkText = styled(LocalizedLinkText)` - font-size: 14px; - - @media ${device.tabletL} { - font-size: 12px; - } -` - -type TScopeContent = { - id: number - title?: TString - list_icon: string - description?: TString - check_list: { - id: number - content: { - text: TString - components?: React.ReactElement[] - } - description?: { - text: TString - components?: React.ReactElement[] - } - }[] -} - -export const scope_content: TScopeContent[] = [ - { - id: 0, - title: '_t_Important businesses_t_', - list_icon: 'tick', - description: null, - check_list: [ - { id: 0, content: { text: '_t_Our payment site: cashier.deriv.com_t_' } }, - { id: 1, content: { text: '_t_Our login site: oauth.deriv.com_t_' } }, - { id: 2, content: { text: '_t_Our WebSockets API: *.binaryws.com api.deriv.com_t_' } }, - { - id: 3, - content: { - text: '_t_Our main trading platform: app.deriv.com<0>*_t_', - components: [ -
, - ], - }, - description: { - text: '_t_<0>*This only covers the functionalities handled by Deriv_t_', - components: [ -
, - ], - }, - }, - { - id: 4, - content: { text: '_t_Our legacy trading platform: smarttrader.deriv.com_t_' }, - }, - ], - }, - { - id: 1, - title: '_t_General businesses_t_', - list_icon: 'tick', - description: null, - check_list: [ - { - id: 0, - content: { - text: '_t_Our GitHub repositories: github.com/binary-com_t_', - }, - }, - { - id: 1, - content: { text: '_t_Our CFD trading application by Devexperts: dx.deriv.com_t_' }, - }, - { - id: 2, - content: { - text: '_t_Deriv P2P: Our peer-to-peer payments app (<0>Android app, <1>iOS app)_t_', - components: [ - , - , - ], - }, - }, - { - id: 3, - content: { - text: '_t_Deriv GO: Our options trading app (<0>Android app, <1>iOS app)_t_', - components: [ - , - , - ], - }, - }, - { - id: 4, - content: { - text: '_t_Deriv X: Our CFD trading app by DevExperts (<0>Android app, <1>iOS app)_t_', - components: [ - , - , - ], - }, - }, - { - id: 5, - content: { - text: '_t_Our site for marketing campaigns: trade.deriv.com (third-party)_t_', - }, - }, - ], - }, - { - id: 2, - title: '_t_Edge businesses_t_', - list_icon: 'tick', - description: null, - check_list: [ - { id: 0, content: { text: '_t_Our site for static resources: static.deriv.com_t_' } }, - { id: 1, content: { text: '_t_Our tracking site: t.deriv.com_t_' } }, - { id: 2, content: { text: '_t_Our FIX feed server for Deriv X: fix.deriv.com_t_' } }, - { id: 3, content: { text: '_t_Our internal apps: *.deriv.cloud_t_' } }, - { id: 4, content: { text: '_t_Our weblog address: https://blog.deriv.com/_t_' } }, - ], - }, - { - id: 3, - title: null, - list_icon: 'X', - description: '_t_The following third-party apps are not covered in this program:_t_', - check_list: [ - { id: 0, content: { text: '_t_Our charting site: tradingview.deriv.com_t_' } }, - { id: 1, content: { text: '_t_Our graduate programme site: besquare.deriv.com_t_' } }, - { - id: 2, - content: { - text: '_t_Our CFD trading platform by MetaQuotes: metatraderweb.app_t_', - }, - }, - { id: 3, content: { text: '_t_Our community site: community.deriv.com_t_' } }, - ], - }, -] diff --git a/src/pages/careers/_controller/_locations.ts b/src/pages/careers/_controller/_locations.ts deleted file mode 100644 index ab5f2b1a739..00000000000 --- a/src/pages/careers/_controller/_locations.ts +++ /dev/null @@ -1,12 +0,0 @@ -type LocationObj = { - name: string - display_name: string - country: string -} - -export const getDisplayLocation = ({ name, country, display_name }: LocationObj): string => { - if (name !== 'malta') { - return `${display_name}, ${country}` - } - return display_name -} diff --git a/src/pages/careers/_dept-layout-components/_dept-layout.types.ts b/src/pages/careers/_dept-layout-components/_dept-layout.types.ts index 586af6ac8ba..0a34cf62f13 100644 --- a/src/pages/careers/_dept-layout-components/_dept-layout.types.ts +++ b/src/pages/careers/_dept-layout-components/_dept-layout.types.ts @@ -6,12 +6,6 @@ export type HeaderProps = { subtitle: string } -export type OpenPositionsProps = { - title: string - location: string - id: string -} - type TestimonyHeadlineProps = { text: string } @@ -36,7 +30,6 @@ export type IntroSectionProps = { export type DataProps = { header: HeaderProps intro_section: IntroSectionProps - open_position?: OpenPositionsProps[] testimony_section?: TestimonySectionProps link_url?: string } diff --git a/src/pages/careers/_dept-layout-components/_open-position-see-all-button.tsx b/src/pages/careers/_dept-layout-components/_open-position-see-all-button.tsx deleted file mode 100644 index 85f3ed1a712..00000000000 --- a/src/pages/careers/_dept-layout-components/_open-position-see-all-button.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import React from 'react' -import { LinkButton } from 'components/form' -import { Header } from 'components/elements' -import { Flex } from 'components/containers' - -type DataProps = { - link: string - has_position: boolean -} - -const OpenPositionButton = ({ link, has_position }: DataProps) => { - if (has_position) { - return ( - - - See all - - - ) - } - - return ( - -
- Sorry, there are currently no open positions. -
-
- ) -} - -export default OpenPositionButton diff --git a/src/pages/careers/_dept-layout-components/_open-positions.tsx b/src/pages/careers/_dept-layout-components/_open-positions.tsx deleted file mode 100644 index 3c68fd29107..00000000000 --- a/src/pages/careers/_dept-layout-components/_open-positions.tsx +++ /dev/null @@ -1,89 +0,0 @@ -import React from 'react' -import styled from 'styled-components' -import { OpenPositionsProps } from './_dept-layout.types' -import { SectionContainer, Container, Flex } from 'components/containers' -import { Header } from 'components/elements' -import { LocalizedLink } from 'components/localization' -import RightArrow from 'images/svg/career-right-arrow.svg' -import device from 'themes/device' - -const getLink = (id) => { - return `https://deriv.zohorecruit.eu/jobs/Careers/${id}?source=CareerSite` -} - -const PositionLink = styled(LocalizedLink)` - text-decoration: none; - width: 100%; - max-width: 996px; -` - -const JobWrapper = styled.div` - border-bottom: 1px solid #f2f3f4; - display: grid; - grid-template-columns: 3fr 5fr auto; - padding: 24px 35px 24px 18px; - - @media ${device.tablet} { - grid-template-columns: 6fr 5fr auto; - } -` -const StyledVacancies = styled(Flex)` - @media ${device.tablet} { - max-width: 144px; - word-break: break-word; - } -` - -const StyledHeader = styled(Header)` - @media (max-width: 340px) { - font-size: 16px; - } -` - -type DataProps = { - data: OpenPositionsProps[] -} - -const OpenPositions = (data: DataProps) => { - const hidden = data.data == undefined - return ( - - -
- Open positions -
- {!hidden && - data.data?.map((item, idx) => { - return ( - - - - - {item.title} - - - -
- {item.location} -
-
- - right arrow - -
-
- ) - })} -
-
- ) -} - -export default OpenPositions diff --git a/src/pages/careers/_layout-components/_link-list.tsx b/src/pages/careers/_layout-components/_link-list.tsx deleted file mode 100644 index 06b8bbc10d9..00000000000 --- a/src/pages/careers/_layout-components/_link-list.tsx +++ /dev/null @@ -1,106 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import styled from 'styled-components' -import Container from './_career_container' -import { Text } from 'components/elements' -import { Flex } from 'components/containers' -import { LocalizedLink } from 'components/localization' -import device from 'themes/device' -import { ReactComponent as Chevron } from 'images/svg/careers/carousel-chevron.svg' - -const ChevronRight = styled(Chevron)` - width: 16px; - height: 16px; - transform: rotate(180deg); - - g { - g { - fill: var(--color-black); - } - } -` -const List = styled.ul` - width: 99.6rem; - padding-bottom: 2rem; -` - -const ListItem = styled.li` - width: 100%; - height: 8.4rem; - border-bottom: 1px solid var(--color-grey-7); - transition: background-color 0.25s; - padding: 0 1.6rem; - - a { - text-decoration: none; - } - &:hover { - cursor: pointer; - background-color: rgba(244, 244, 244, 0.4); - } - @media ${device.tabletL} { - height: 100%; - padding: 1.6rem; - } -` -const Circle = styled.span` - font-size: 2.1rem; - font-weight: bold; - width: 32px; - height: 32px; - margin-right: 16px; - border-radius: 50%; - background-color: var(--color-green); - color: var(--color-white); - display: flex; - justify-content: center; - align-items: center; -` -const StyledText = styled(Text)` - min-width: 50%; - max-width: 45rem; - font-size: var(--text-size-m); - padding-right: 10px; -` -const MiddleText = styled(Text)` - margin-right: auto; - font-size: var(--text-size-sm); -` -type ListItemsProps = { - to: string - text: string - middle_text: string - number: number -} - -type Props = { - list_items: ListItemsProps[] -} - -export const LinkList = ({ list_items }: Props) => ( - - - {list_items && - list_items.map((item, idx) => ( - - - - - {item.text} - {item.middle_text} - - - {item.number && {item.number}} - - - - - - ))} - - -) - -LinkList.propTypes = { - list_items: PropTypes.array, -} diff --git a/src/pages/careers/_layout-components/_no-open-positions.tsx b/src/pages/careers/_layout-components/_no-open-positions.tsx deleted file mode 100644 index e107aabb78e..00000000000 --- a/src/pages/careers/_layout-components/_no-open-positions.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import styled from 'styled-components' -import PropTypes from 'prop-types' -import { Header } from 'components/elements' - -const StyledHeader = styled(Header)` - color: rgba(51, 51, 51, 0.32); -` -type NoOpenPositionsHeaderProps = { - children: React.ReactNode - mb: string -} -export const NoOpenPositionsHeader = ({ children, mb }: NoOpenPositionsHeaderProps) => ( - - {children} - -) - -NoOpenPositionsHeader.propTypes = { - children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]), - mb: PropTypes.string, -} diff --git a/src/pages/careers/_model/_job_types/_job_types.ts b/src/pages/careers/_model/_job_types/_job_types.ts deleted file mode 100644 index d7d2cbf3d8f..00000000000 --- a/src/pages/careers/_model/_job_types/_job_types.ts +++ /dev/null @@ -1,5 +0,0 @@ -export const job_types = { - full_time: 'Full-time', - part_time: 'Part-time', - internship: 'Internship', -} diff --git a/src/pages/careers/_model/_open-positions/_accounts-and-payments.ts b/src/pages/careers/_model/_open-positions/_accounts-and-payments.ts deleted file mode 100644 index 32b1236bb92..00000000000 --- a/src/pages/careers/_model/_open-positions/_accounts-and-payments.ts +++ /dev/null @@ -1,89 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, dubai, labuan } from '../_locations/_locations' - -export const accounts_and_payments_positions = [ - { - title: 'Accounts and Payments Executive', - id: '7cbfb918-1823-4dd5-b77c-8568b2f4b665', - keywords: ['Accounts and Payments Executive'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'accounts-and-payments', - description: [ - 'You will participate in handling payments and transactions and increase the efficiency of our financial operations.', - ], - responsibilities: [ - 'Process client payments, as well as handle and resolve client payment queries.', - 'Track and manage transactions and accounts using proprietary and non-proprietary software and systems.', - 'Process transactions for clients who make deposits and withdrawals using a wide range of third-party payment services, including bank wire, credit card, and e-currency.', - 'Perform reconciliations of all transactions that take place through third-party payment services and banks.', - 'Assist in management accounting for all companies within our group of companies.', - 'Work closely with the affiliate marketing team to process affiliate commission payments on a monthly basis.', - 'Constantly liaise with all internal departments such as Customer Support and Marketing on account and payment matters.', - ], - qualifications: [ - 'A university degree with a major in accounting, or other relevant professional qualifications', - 'At least one year of work experience in a similar role', - 'A keen interest in accounting and an aptitude for numbers', - 'Proficiency with popular office applications such as Microsoft Excel, accounting software, and databases', - 'In-depth knowledge of accounting principles, best practices, standards, and regulations', - 'Ability to quickly learn new (proprietary) systems and procedures\n', - ], - }, - { - title: 'Accounts and Payments Executive', - id: '161509ad-bc3b-4a4e-95b8-c5e59341023e', - keywords: ['Accounts and Payments Executive'], - location: dubai.name, - type: [job_types.full_time], - team: 'accounts-and-payments', - description: [ - 'You will participate in handling payments and transactions and increase the efficiency of our financial operations.', - ], - responsibilities: [ - 'Process client payments, as well as handle and resolve client payment queries.', - 'Track and manage transactions and accounts using proprietary and non-proprietary software and systems.', - 'Process transactions for clients who make deposits and withdrawals using a wide range of third-party payment services, including bank wire, credit card, and e-currency.', - 'Perform reconciliations of all transactions that take place through third-party payment services and banks.', - 'Assist in management accounting for all companies within our group of companies.', - 'Work closely with the affiliate marketing team to process affiliate commission payments on a monthly basis.', - 'Constantly liaise with all internal departments such as Customer Support and Marketing on account and payment matters.', - ], - qualifications: [ - 'A university degree with a major in accounting, or other relevant professional qualifications', - 'At least one year of work experience in a similar role', - 'A keen interest in accounting and an aptitude for numbers', - 'Proficiency with popular office applications such as Microsoft Excel, accounting software, and databases', - 'In-depth knowledge of accounting principles, best practices, standards, and regulations', - 'Ability to quickly learn new (proprietary) systems and procedures\n', - ], - }, - { - title: 'Accounts and Payments Executive', - id: '3e34ea25-838c-4772-beb6-6881720b1936', - keywords: ['Accounts and Payments Executive'], - location: labuan.name, - type: [job_types.full_time], - team: 'accounts-and-payments', - description: [ - 'You will participate in handling payments and transactions and increase the efficiency of our financial operations.', - ], - responsibilities: [ - 'Process client payments, as well as handle and resolve client payment queries.', - 'Track and manage transactions and accounts using proprietary and non-proprietary software and systems.', - 'Process transactions for clients who make deposits and withdrawals using a wide range of third-party payment services, including bank wire, credit card, and e-currency.', - 'Perform reconciliations of all transactions that take place through third-party payment services and banks.', - 'Assist in management accounting for all companies within our group of companies.', - 'Work closely with the affiliate marketing team to process affiliate commission payments on a monthly basis.', - 'Constantly liaise with all internal departments such as Customer Support and Marketing on account and payment matters.', - ], - qualifications: [ - 'A university degree with a major in accounting, or other relevant professional qualifications', - 'At least one year of work experience in a similar role', - 'A keen interest in accounting and an aptitude for numbers', - 'Proficiency with popular office applications such as Microsoft Excel, accounting software, and databases', - 'In-depth knowledge of accounting principles, best practices, standards, and regulations', - 'Ability to quickly learn new (proprietary) systems and procedures\n', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_back-end.ts b/src/pages/careers/_model/_open-positions/_back-end.ts deleted file mode 100644 index cb9b6190d63..00000000000 --- a/src/pages/careers/_model/_open-positions/_back-end.ts +++ /dev/null @@ -1,161 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, dubai, malta } from '../_locations/_locations' - -export const back_end_positions = [ - { - title: 'Database Administrator', - id: '43130a72-bcd8-4927-8465-9458d43f7a12', - keywords: ['Database Administrator'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'back-end', - description: [ - 'You will plan, install, and maintain database systems to ensure the security, integrity and seamless flow of information for our high-traffic online trading platform. ', - ], - responsibilities: [ - 'Plan, install, and configure world-class database systems that meet business objectives and the needs of end users.', - 'Plan and carry out the upgrade and migration of databases.', - 'Develop, implement, and test database backup and recovery plans.', - 'Manage database and data security by controlling access to data through authentication, authorisation, and auditing.', - 'Perform tests to ensure database performance and security, as well as data integrity.', - 'Document and administer database policies, procedures, and standards.', - 'Troubleshoot and debug problems in existing database systems, and find new ways to improve their speed, functionality, and scalability.', - ], - qualifications: [ - 'Experience as a DBA, with a focus on database setup, security, replication, performance tuning, and disaster recovery', - 'SQL queries and optimisation', - 'Excellent troubleshooting skills', - 'Experience with database testing tools such as pgTAP', - 'Knowledge of Linux system administration, preferably including configuration and automation tools such as Chef as well as shell scripting', - ], - preferences: [ - 'Experience with PostgreSQL and/or SQL Server preferred', - 'Experience with OLAP and MDX would be an advantage\n', - ], - }, - { - title: 'Senior Back-end Developer', - id: '72a07983-844e-471b-aeee-920dcf0d8103', - keywords: ['Senior Back-end Developer'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'back-end', - description: [ - 'You are a seasoned leader who can inspire your team and bolster the databases, scripting, and IT architecture of our company. You take pride in mentoring the junior members of your team and involving them in facing and overcoming new challenges, which you see as an opportunity to gain knowledge and experience. With your advanced object-oriented programming skills, you are eager to take on heavy responsibilities that go above and beyond the regular back-end workload of testing and improving the performance, speed, stability, and security of the company’s website and applications. \n', - ], - responsibilities: [ - 'Design and launch large, complex back-end projects autonomously.', - 'Communicate with other teams to clearly identify the requirements, goals, and road map of joint projects.', - 'Undertake massive architecture challenges to reach high availability and scalability aims.', - 'Build, maintain, and optimise the technology that powers our servers, applications, and databases.', - 'Define the priority of the Back-end team’s tasks according to the company’s direction.', - 'Take the initiative to learn and work with the new technologies that are often introduced to the arsenal of our engineering teams.', - 'Collaborate with front-end developers and other teams to develop high-quality web and mobile apps.', - 'Lead your team in writing, reviewing, and documenting code to support and improve the functionality of our digital products.', - 'Detect and fix complex bugs that might result in high-risk issues during development and deployment.', - 'Elevate our data storage design to achieve greater speed, efficiency, and scalability.', - 'Supervise and engage in all aspects of the product life cycle.', - ], - qualifications: [ - 'Expertise in any programming language, preferably Perl, Python, PHP, C/C++, Go, or Ruby, and a willingness to become highly proficient with Perl', - 'Vast experience with relational database design, and/or open-source RDBMS systems such as MySQL and PostgreSQL', - 'Extensive knowledge of information security and data protection', - 'Proficiency in Linux system administration', - 'Familiarity with Perl DBI, Moose, PSGI/Plack, NGINX, JavaScript, Redis, and Git', - 'Experience working with microservices and scalable systems', - 'Expert-level ability to produce high-quality, self-documenting code by using test-driven development (TDD) techniques', - 'Extensive experience in Linux and other open-source platforms', - ], - }, - { - title: 'Database Administrator', - id: 'a3bc0300-9dfb-4327-8eac-84cd6e31414a', - keywords: ['Database Administrator'], - location: dubai.name, - type: [job_types.full_time], - team: 'back-end', - description: [ - 'You will plan, install, and maintain database systems to ensure the security, integrity and seamless flow of information for our high-traffic online trading platform. \n', - ], - responsibilities: [ - 'Plan, install, and configure world-class database systems that meet business objectives and the needs of end users.', - 'Plan and carry out the upgrade and migration of databases.', - 'Develop, implement, and test database backup and recovery plans.', - 'Manage database and data security by controlling access to data through authentication, authorisation, and auditing.', - 'Perform tests to ensure database performance and security, as well as data integrity.', - 'Document and administer database policies, procedures, and standards.', - 'Troubleshoot and debug problems in existing database systems, and find new ways to improve their speed, functionality, and scalability.', - ], - qualifications: [ - 'Experience as a DBA, with a focus on database setup, security, replication, performance tuning, disaster recovery, and SQL queries and optimisation', - 'Excellent troubleshooting skills', - 'Experience with database testing tools such as pgtap', - 'Knowledge of Linux system administration, preferably including configuration and automation tools such as Chef as well as shell scripting', - 'Experience with PostgreSQL and/or SQL Server preferred', - ], - preferences: ['Experience with OLAP and MDX would be an advantage'], - }, - { - title: 'Back-end Developer', - id: '27afa7da-e5e9-4c00-b146-a3569f7901f5', - keywords: ['Back-end Developer'], - location: malta.name, - type: [job_types.full_time], - team: 'back-end', - description: [ - 'You will be involved in troubleshooting and improving our back-end applications and processes. You will help create a more efficient process and work closely with other team members to ensure seamless user experience for our clients.\n', - ], - responsibilities: [ - 'Develop and maintain world-class web applications.', - 'Build, maintain, and optimise the technology that powers our servers, applications, and databases.', - 'Collaborate with front-end developers and other teams to develop an effective architecture to support the deployment of new products and features.', - 'Troubleshoot and debug problems in applications during development and deployment.', - 'Optimize applications for speed, efficiency and scalability.', - 'Participate in all aspects of the product life cycle.', - ], - qualifications: [ - 'Expertise in any programming language, preferably Perl, Python, PHP, C/C++, Go, or Ruby, and a willingness to become highly proficient with Perl.', - 'Extensive knowledge of information security and data protection.', - 'Expertise in Linux system administration.', - - 'Extensive experience with relational database design, and/or open-source RDBMS systems such as MySQL and PostgreSQL.', - 'Familiarity with Perl DBI, Moose, PSGI/Plack, NGINX, JavaScript, Redis, and Git.', - 'Experience working with microservices and scalable systems.', - 'Ability to produce high-quality, self-documenting code by using test-driven development (TDD) techniques.', - 'Extensive experience in Linux and other open-source platforms.', - ], - }, - { - title: 'PostgreSQL Database Programmer and Administrator', - id: 'd7ebb3c9-8e84-4b2c-9171-34cead27eb57', - keywords: ['PostgreSQL Database Programmer and Administrator'], - location: malta.name, - type: [job_types.full_time], - team: 'back-end', - description: [ - 'You will plan, install, and maintain database systems to ensure the security, integrity, and seamless flow of information for our high-traffic online trading platform. \n', - ], - responsibilities: [ - 'Plan, install, and configure world-class database systems that meet business objectives and the needs of end-users.', - 'Assist Back-end developers in writing production-ready SQL code.', - 'Plan and carry out the upgrade and migration of databases.', - 'Develop, implement, and test database backup and recovery plans.', - 'Manage database and data security by controlling access to data through authentication, authorisation, and auditing.', - 'Perform tests to ensure database performance and security, as well as data integrity.', - 'Document and administer database policies, procedures, and standards.', - 'Plan and execute data extraction for efficient loading in our data warehouse, and ensure extracted data is useful and properly formatted.', - 'Troubleshoot and debug problems in existing database systems, and find new ways to improve their speed, functionality, and scalability.\n', - ], - qualifications: [ - 'Experience as a Postgres DBA, with advanced hands-on knowledge of database setup, security, replication, performance tuning, disaster recovery, SQL, and stored procedures', - 'Experience with database testing tools such as pgTAP', - 'Experience with data extraction and reporting for data warehouse/cube', - - 'Knowledge of Linux system administration, including configuration and automation tools such as Chef as well as Shell scripting is preferred', - ], - preferences: [ - 'Knowledge of Perl and other scripting languages is a plus', - 'Experience with Multidimensional Expressions (MDX) is an advantage', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_business-intelligence.ts b/src/pages/careers/_model/_open-positions/_business-intelligence.ts deleted file mode 100644 index 0068324f09f..00000000000 --- a/src/pages/careers/_model/_open-positions/_business-intelligence.ts +++ /dev/null @@ -1,71 +0,0 @@ -import { cyberjaya, malta } from '../_locations/_locations' -import { job_types } from '../_job_types/_job_types' - -export const business_intelligence_positions = [ - { - title: 'Data Engineer/Analyst', - id: '68590853-0756-4bf6-a9b4-4568e483e3ce', - keywords: ['Data Engineer/Analyst'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'business-intelligence', - description: [ - 'You will convert data into actionable insights that contribute to business strategies. You’ll also solve complex business problems using data-driven techniques.\n', - ], - responsibilities: [ - 'Conduct full lifecycle data integration, encompassing requirements, activities, and design.', - 'Ask the right questions to identify potential problems, the scope of the operation, and the availability of relevant data.', - 'Use data governance tools to ensure data is accurate and consistent for effective analysis.', - 'Convert raw data into an easy-to-understand format for analysis and reporting purposes.', - 'Develop and implement databases by collecting, designing, processing, analysing, and presenting data in a meaningful way.', - 'Communicate and collaborate effectively with members of different teams across the organisation.\n', - ], - qualifications: [ - 'Experience with data modelling techniques such as Kimball star schema, Anchor modelling and Data Vault', - 'Experience with database reporting tools such as SQL, programming languages such as Python and R, and ETL frameworks', - 'Strong analytical skills with the ability to transform data into optimal business decisions', - 'Strong communication skills', - 'Ability to present data using various tools to help the team to make informed business decisions\n', - ], - preferences: [ - 'Experience with cybersecurity and data protection', - 'Experience with MDX query language', - 'Experience with AWS Cloud', - 'Experience with Google Cloud (BigQuery)', - ], - }, - { - title: 'Data Scientist', - id: '19aedff7-4f36-47b5-97ee-4321bd79edf6', - keywords: ['Data Scientist'], - location: malta.name, - type: [job_types.full_time], - team: 'business-intelligence', - description: [ - 'You will develop and implement databases by collecting, designing, processing, analysing, and presenting data in a meaningful way. You will convert data into actionable insights that contribute to business strategies and solve complex business problems using data-driven techniques. ', - ], - responsibilities: [ - 'Conduct full lifecycle analysis that includes requirements, activities, and design.', - 'Ask the right questions to identify potential problems to be solved, the scope involved and the availability of relevant data.', - 'Use data governance tools to ensure data is accurate and consistent for effective analysis.', - 'Convert raw data into an easy-to-understand format for analysis and reporting purposes.', - 'Translate data into consumable information and assist in making data-driven decisions across departments.', - 'Employ data mining techniques and statistical analysis to create predictions systems in line with our products. ', - ], - qualifications: [ - 'Experience with reporting packages, SQL, programming (Python/R) and ETL frameworks', - 'Experience with machine learning algorithms, decision trees, neural networks, clustering, etc.', - 'Experience with statistical and data mining techniques like GLM/Regression, Random ', - 'Forest, Boosting, text mining, social media analysis, etc.', - 'Strong analytical skills with the ability to transform data into optimal business decisions', - 'A strong background in statistics, mathematics or engineering', - 'Strong communication skills', - 'Ability to present data using various tools to help the team to make informed business decisions', - ], - preferences: [ - 'Experience in data visualisation', - 'Experience in cybersecurity and data protection', - 'Experience with MDX query language', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_compliance.ts b/src/pages/careers/_model/_open-positions/_compliance.ts deleted file mode 100644 index 381e8f46da1..00000000000 --- a/src/pages/careers/_model/_open-positions/_compliance.ts +++ /dev/null @@ -1,338 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, dubai, asuncion, malta, labuan } from '../_locations/_locations' - -export const compliance_positions = [ - { - title: 'Compliance Executive', - id: '5b3946a8-2769-48b2-8e64-7170ea907105', - keywords: ['Compliance Executive'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'compliance', - description: [ - 'You will ensure that our group companies worldwide conduct business operations in full compliance with regulatory requirements in their registered jurisdictions and globally.\n', - ], - responsibilities: [ - 'Work with the Head of Compliance to ensure group companies comply with AML, KYC, and data protection laws and regulations.', - 'Plan and direct internal programmes and policies to empower all departments with the knowledge, awareness, and practices of regulatory compliance.', - 'Track laws and regulations that may affect group companies and amend internal policies as needed in order to manage our risk and exposure.', - 'Screen and approve website content and marketing communication.', - 'Analyse payment transactions for potential abuse by third-parties.', - 'Review and monitor business contracts and agreements.', - 'Assist with regulatory audits and annual statutory audits.\n', - ], - qualifications: [ - 'University degree in finance, economics, law, or risk management', - 'Firm grasp of corporate or legal compliance', - 'Thorough understanding of AML and KYC processes', - 'Ability to draft and review legal documents, as well as prepare licence applications', - 'Ability to absorb and understand regulatory requirements in a number of international jurisdictions\n', - ], - }, - { - title: 'Payments Management Executive', - id: '9f35cfa2-10f8-4b23-8ac4-02b1630bd44f', - keywords: ['Payments Management Executive'], - location: labuan.name, - type: [job_types.full_time], - team: 'compliance', - description: [ - 'You will help us to improve and maintain current payment systems, while onboarding new payment systems that are specific to our target markets.', - ], - responsibilities: [ - 'Work closely with the Head of Payments Management, plus the payments, customer support, and compliance teams on all payment-related matters.', - 'Contact prospective payment systems and provide the required documentation.', - 'Negotiate better terms and rates with new payment system providers.', - 'Troubleshoot issues encountered by our cashier system and liaise with the respective providers if escalation is required.', - 'Monitor clients’ payment transactions to improve user experience through data gathering and analysis.', - 'Analyse deposit patterns and recommend new areas of focus.', - 'Liaise with banks for new accounts, providing the required KYC and any other related tasks necessary to maintain a healthy relationship.', - ], - qualifications: [ - 'University degree in business, commerce, or IT', - 'Firm grasp of payments and a keen interest in cryptocurrencies', - 'Proficiency in Microsoft Excel\n', - ], - preferences: [ - 'Ability to analyse payment transactions, particularly e-wallets and cryptocurrencies', - ], - }, - { - title: 'Risk Management Executive', - id: '5e06db19-5887-48aa-bb58-d635c80bdb35', - keywords: ['Risk Management Executive'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'compliance', - description: [ - 'You will assist in flagging, analysing, and managing regulatory risks. You will ensure that the company adheres to the risk policies and procedures in relation to AML-CTF as well as internal policies and bylaws to mitigate potential compliance risks.\n', - ], - responsibilities: [ - 'Investigate, review, and analyse flagged client accounts.', - 'Draft complaints and investigations reports.', - 'Conduct KYC, CDD, EDD, and AML-CTF checks.', - 'Verify and approve deposit and withdrawal requests.', - 'Evaluate and improve policies to manage potential risks.', - 'Guide and support our other operational teams on AML-CTF, anti-fraud, and authentication matters.', - 'Provide advice regarding AML-CTF regulations, internal policies and procedures, and other related inquiries from the company employees and management.', - ], - qualifications: [ - 'University degree in finance, economics, law, risk management, criminology, business studies, data science, or management', - 'Knowledge of fraud processes and applications, including AML-CTF regulations and red flags', - 'Strong qualitative and quantitative analytical capabilities in a similar capacity or keen interest to move into this area', - 'Proficiency in Excel and big data analysis', - 'Excellent command of written and spoken English', - 'Meticulous attention to detail', - 'Self-motivation and flexibility at task rotations', - 'Ability to make sound judgement based on limited information ', - 'Strong organisational skills and ability to work proactively', - 'High level of integrity, reliability, and work ethic', - ], - }, - { - title: 'Risk Management Executive', - id: '0e2c6592-736f-47c4-80f2-34203b5bee9d', - keywords: ['Risk Management Executive'], - location: dubai.name, - type: [job_types.full_time], - team: 'compliance', - description: [ - 'You will assist in flagging, analysing, and managing regulatory risks. You will ensure that the company adheres to the risk policies and procedures in relation to AML-CTF as well as internal policies and bylaws to mitigate potential compliance risks.', - ], - responsibilities: [ - 'Investigate, review, and analyse flagged client accounts.', - 'Draft complaints and investigations reports.', - 'Conduct KYC, CDD, EDD, and AML-CTF checks.', - 'Verify and approve deposit and withdrawal requests.', - 'Evaluate and improve policies to manage potential risks.', - 'Guide and support our other operational teams on AML-CTF, anti-fraud, and authentication matters.', - 'Provide advice regarding AML-CTF regulations, internal policies and procedures, and other related inquiries from the company employees and management.', - ], - qualifications: [ - 'University degree in finance, economics, law, risk management, criminology, business studies, data science, or management', - 'Knowledge of fraud processes and applications, including AML-CTF regulations and red flags', - 'Strong qualitative and quantitative analytical capabilities in a similar capacity or keen interest to move into this area', - 'Proficiency in Excel and big data analysis', - 'Excellent command of written and spoken English', - 'Meticulous attention to detail', - 'Self-motivation and flexibility at task rotations', - 'Ability to make sound judgement based on limited information ', - 'Strong organisational skills and ability to work proactively', - 'High level of integrity, reliability, and work ethic', - ], - }, - { - title: 'Risk Management Executive ', - id: 'c9903ba2-2a99-49ad-b2e0-9e1bc9918ba5', - keywords: ['Risk Management Executive '], - location: asuncion.name, - type: [job_types.full_time], - team: 'compliance', - description: [ - 'You will assist in flagging, analysing, and managing regulatory risks. You will ensure that the company adheres to the risk policies and procedures in relation to AML-CTF as well as internal policies and bylaws to mitigate potential compliance risks.\n', - ], - responsibilities: [ - 'Investigate, review, and analyse flagged client accounts.', - 'Draft complaints and investigations reports.', - 'Conduct KYC, CDD, EDD, and AML-CTF checks.', - 'Verify and approve deposit and withdrawal requests.', - 'Evaluate and improve policies to manage potential risks.', - 'Guide and support our other operational teams on AML-CTF, anti-fraud, and authentication matters.', - 'Provide advice regarding AML-CTF regulations, internal policies and procedures, and other related inquiries from the company employees and management.', - ], - qualifications: [ - 'University degree in finance, economics, law, risk management, criminology, business studies, data science, or management', - 'Knowledge of fraud processes and applications, including AML-CTF regulations and red flags', - 'Strong qualitative and quantitative analytical capabilities in a similar capacity or keen interest to move into this area', - 'Proficiency in Excel and big data analysis', - 'Excellent command of written and spoken English', - 'Meticulous attention to detail', - 'Self-motivation and flexibility at task rotations', - 'Ability to make sound judgement based on limited information ', - 'Strong organisational skills and ability to work proactively', - 'High level of integrity, reliability, and work ethic', - ], - }, - { - title: 'Compliance Executive', - id: 'c6a14f59-ff81-40b3-a095-6e52414935b2', - keywords: ['Compliance Executive'], - location: malta.name, - type: [job_types.full_time], - team: 'compliance', - description: [ - 'You will ensure that our group of companies worldwide conduct their business operations in full compliance with relevant national and international laws and regulations. \n', - ], - responsibilities: [ - 'Work with the Head of Compliance to ensure group companies comply with AML, KYC, and Data Protection laws and regulations.', - - 'Plan and direct internal programmes and policies to empower all departments with the knowledge, awareness, and practices of regulatory compliance.', - - 'Track laws and regulations that may affect all group companies and implement necessary changes to internal policies in order to manage and mitigate our risk and exposure.', - - 'Screen and approve website content and marketing promotions.', - - 'Review and monitor business contracts and agreements entered into by group companies worldwide.', - - 'Assist with regulatory audits and annual statutory audits of group companies worldwide.\n', - ], - qualifications: [ - 'A bachelor’s degree in commerce or any business-related field', - 'A good understanding of corporate, legal or regulatory compliance', - 'Thorough understanding of Anti-Money Laundering (AML) and Know Your Customer (KYC) processes', - 'The ability to draft and review legal documents and prepare licence applications', - 'A proactive approach in problem-solving', - 'The ability to absorb and understand varied compliance matters in a number of international jurisdictions', - 'Excellent communication and interpersonal skills', - 'Excellent proficiency in spoken and written English', - ], - preferences: ['Degree or diploma in risk management, compliance, or law'], - }, - { - title: 'Compliance and Payments Analyst (PayOps)', - id: '2b1a58d2-e3bf-443e-b86c-d564ea8f81d4', - keywords: ['Compliance and Payments Analyst (PayOps)'], - location: malta.name, - type: [job_types.full_time], - team: 'compliance', - description: [ - 'You will be responsible for sourcing, contacting, and negotiating with new payment system providers, banks, and payment processors in general.\n', - ], - responsibilities: [ - 'Administer overall payment systems, including monitoring and reporting clients activity as well as success rates.', - - 'Use to the utmost benefit any possible additional features that some payment processors offer.', - - 'Assist cashier providers in setting up new payment systems and risk management settings.', - - 'Negotiate competitive rates with new payment system providers.', - - 'Work closely with the Head of Payments to proactively suggest improvements to cashier setup and success rates by various strategies including monitoring customer activity and overall fraud and payment performances (card success rates, chargebacks, and the like).', - - 'Collaborate with the Customer Support, Compliance, and Payments teams.', - 'Support the Payments team in daily analyses when needed.', - - 'Coordinate with payment system service providers in offering cryptocurrencies and digital wallets as a payment method.', - - 'Research new payment systems that are available in the market.', - ], - qualifications: [ - 'A bachelor’s degree in commerce or any business-related field, IT-related field, or criminology', - - 'Knowledge of payment transaction analysis, in particular e-wallets and cryptocurrencies ', - - 'Good understanding of payments functionality and a keen interest in cryptocurrencies', - - 'Proficiency in Microsoft Excel ', - 'Proficiency in spoken and written English\n', - ], - }, - { - title: 'Risk Management Executive', - id: '5f113694-1b61-423d-bc08-41c2ca6be6fc', - keywords: ['Risk Management Executive'], - location: malta.name, - type: [job_types.full_time], - team: 'compliance', - description: [ - 'You will assist in flagging, analysing, and managing regulatory risks. You will ensure that the company adheres to the risk policies and procedures in relation to AML-CTF as well as internal policies and bylaws to mitigate potential compliance risks.\n', - ], - responsibilities: [ - 'Investigate, review, and analyse flagged client accounts.', - 'Draft complaints and investigations reports.', - 'Conduct KYC, CDD, EDD, and AML-CTF checks.', - 'Verify and approve deposit and withdrawal requests.', - 'Evaluate and improve policies to manage potential risks.', - - 'Guide and support our other operational teams on AML-CTF, anti-fraud, and authentication matters.', - - 'Provide advice regarding AML-CTF regulations, internal policies and procedures, and other related inquiries from the company employees and management.', - ], - qualifications: [ - 'University degree in finance, economics, law, risk management, criminology, business studies, data science, or management', - - 'Knowledge of fraud processes and applications, including AML-CTF regulations and red flags', - - 'Strong qualitative and quantitative analytical capabilities in a similar capacity or keen interest to move into this area', - - 'Proficiency in Excel and big data analysis', - 'Excellent command of written and spoken English', - 'Meticulous attention to detail', - 'Self-motivation and flexibility at task rotations', - 'Ability to make sound judgement based on limited information ', - 'Strong organisational skills and ability to work proactively', - 'High level of integrity, reliability, and work ethic', - ], - preferences: ['Excellent command of written and spoken Portuguese or Indonesian'], - }, - { - title: 'Compliance Executive', - id: 'c139a8fe-0223-4414-a12d-73e1018854ad', - keywords: ['Compliance Executive'], - location: labuan.name, - type: [job_types.full_time], - team: 'compliance', - description: [ - 'You will ensure that our group companies worldwide conduct business operations in full compliance with regulatory requirements in their registered jurisdictions and globally.\n', - ], - responsibilities: [ - 'Work with the Head of Compliance to ensure group companies comply with AML, KYC, and data protection laws and regulations.', - - 'Plan and direct internal programmes and policies to empower all departments with the knowledge, awareness, and practices of regulatory compliance.', - - 'Track laws and regulations that may affect group companies and amend internal policies as needed in order to manage our risk and exposure.', - - 'Screen and approve website content and marketing communication.', - 'Analyse payment transactions for potential abuse by third-parties.', - 'Review and monitor business contracts and agreements.', - 'Assist with regulatory audits and annual statutory audits.\n', - ], - qualifications: [ - 'University degree in finance, economics, law, or risk management', - 'Firm grasp of corporate or legal compliance', - 'Thorough understanding of AML and KYC processes', - - 'Ability to draft and review legal documents, as well as prepare licence applications', - - 'Ability to absorb and understand regulatory requirements in a number of international jurisdictions\n', - ], - }, - { - title: 'Risk Management Executive', - id: '8e94a1d2-6a32-489a-bf33-3777b1a70a67', - keywords: ['Risk Management Executive'], - location: labuan.name, - type: [job_types.full_time], - team: 'compliance', - description: [ - 'You will assist in flagging, analysing, and managing regulatory risks. You will ensure that the company adheres to the risk policies and procedures in relation to AML-CTF as well as internal policies and bylaws to mitigate potential compliance risks.\n', - ], - responsibilities: [ - 'Investigate, review, and analyse flagged client accounts.', - 'Draft complaints and investigations reports.', - 'Conduct KYC, CDD, EDD, and AML-CTF checks.', - 'Verify and approve deposit and withdrawal requests.', - 'Evaluate and improve policies to manage potential risks.', - - 'Guide and support our other operational teams on AML-CTF, anti-fraud, and authentication matters.', - - 'Provide advice regarding AML-CTF regulations, internal policies and procedures, and other related inquiries from the company employees and management.', - ], - qualifications: [ - 'University degree in finance, economics, law, risk management, criminology, business studies, data science, or management', - - 'Knowledge of fraud processes and applications, including AML-CTF regulations and red flags', - - 'Strong qualitative and quantitative analytical capabilities in a similar capacity or keen interest to move into this area', - - 'Proficiency in Excel and big data analysis', - 'Excellent command of written and spoken English', - 'Meticulous attention to detail', - 'Self-motivation and flexibility at task rotations', - 'Ability to make sound judgement based on limited information ', - 'Strong organisational skills and ability to work proactively', - 'High level of integrity, reliability, and work ethic', - ], - preferences: ['Excellent command of written and spoken Portuguese or Indonesian'], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_content.ts b/src/pages/careers/_model/_open-positions/_content.ts deleted file mode 100644 index 0a55ac1be47..00000000000 --- a/src/pages/careers/_model/_open-positions/_content.ts +++ /dev/null @@ -1,79 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, dubai } from '../_locations/_locations' - -export const content_positions = [ - { - title: 'Senior Copywriter', - id: 'a5c8f611-55cf-4fae-a7c8-524f96ba24d8', - keywords: ['Senior Copywriter'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'content', - description: [ - 'You will write high-performing copy for websites, apps, emails, social media, and other mediums that we use to engage with our audience. With a proven track record in digital copywriting and content strategy, you will help us to shape product experiences, refine our brand voice, drive discussions on quality control, and fine-tune our global marketing communication strategy.', - ], - responsibilities: [ - 'Collaborate with designers, developers, analysts, and other stakeholders who are based around the world to define content requirements and strategy to achieve our desired business goals.', - - 'Write engaging marketing and sales copy to persuade our clients and prospects to take action.', - - 'Plan, write, and test UI copy and other text elements in our websites and apps.', - - 'Contextualise copy for its intended audience using our style guide, tone of voice, and internal processes as reference.', - - 'Edit and proofread copy as needed.', - ], - qualifications: [ - 'Excellent writing and editing skills with at least seven years of copywriting experience in digital advertising or online media', - - 'Expert command of writing for the web', - - 'Excellent English language skills with a keen eye for detail when it comes to punctuation, spelling, grammar, and syntax', - - 'Proven ability to translate complex, technical information into clear, attractive benefits', - ], - preferences: [ - 'Degree or practical experience in English, journalism, technical writing, or a related field', - - 'Experience with content strategy, UX, information architecture, and SEO', - 'Experience with financial products and services', - ], - }, - { - title: 'Senior Copywriter', - id: '4fea1b03-9621-4260-84df-37c8b512439f', - keywords: ['Senior Copywriter'], - location: dubai.name, - type: [job_types.full_time], - team: 'content', - description: [ - 'You will write high-performing copy for websites, apps, emails, social media, and other mediums that we use to engage with our audience. With a proven track record in digital copywriting and content strategy, you will help us to shape product experiences, refine our brand voice, drive discussions on quality control, and fine-tune our global marketing communication strategy.\n', - ], - responsibilities: [ - 'Collaborate with designers, developers, analysts, and other stakeholders who are based around the world to define content requirements and strategy to achieve our desired business goals.', - - 'Write engaging marketing and sales copy to persuade our clients and prospects to take action.', - - 'Plan, write, and test UI copy and other text elements in our websites and apps.', - - 'Contextualise copy for its intended audience using our style guide, tone of voice, and internal processes as reference.', - - 'Edit and proofread copy as needed.', - ], - qualifications: [ - 'Excellent writing and editing skills with at least seven years of copywriting experience in digital advertising or online media', - - 'Expert command of writing for the web', - - 'Excellent English language skills with a keen eye for detail when it comes to punctuation, spelling, grammar, and syntax', - - 'Proven ability to translate complex, technical information into clear, attractive benefits\n', - ], - preferences: [ - 'Degree or practical experience in English, journalism, technical writing, or a related field', - - 'Experience with content strategy, UX, information architecture, and SEO', - 'Experience with financial products and services', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_crypto-development.ts b/src/pages/careers/_model/_open-positions/_crypto-development.ts deleted file mode 100644 index 0b76d31f9de..00000000000 --- a/src/pages/careers/_model/_open-positions/_crypto-development.ts +++ /dev/null @@ -1,202 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, dubai, asuncion, malta } from '../_locations/_locations' - -export const crypto_development_positions = [ - { - title: 'Cryptocurrency/Blockchain Developer', - id: '684d8426-630c-4320-a3e7-8ca486d02ee3', - keywords: ['Cryptocurrency/Blockchain Developer'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'crypto-development', - description: [ - 'You will help with the operation of our existing crypto-cashier system and play a key role in our future blockchain-based projects. Your work will directly influence the core architecture that powers our high-traffic trading platform.', - ], - responsibilities: [ - 'Design and develop applications and platforms based on blockchain technology.\nImprove the security of current blockchain-based projects.', - - 'Keep abreast with new developments in the cryptocurrency world.', - - 'Devise the architecture and best practices for the adoption of blockchain technology.', - - 'Build rapid prototypes and collaborate with different departments on fast-paced projects.', - - 'Identify and resolve any possible cryptocurrency-related issues.', - - 'Research and evaluate blockchain solutions to identify the ones that can best meet our needs.', - - 'Create robust software logic that supports foolproof cryptocurrency transactions.', - - 'Work closely with our technical and non-technical teams to develop and integrate blockchain solutions for our business.', - - 'Share your expertise on cryptocurrencies and blockchain technology with the colleagues who are working on related projects.', - ], - qualifications: [ - 'Experience with languages such as Perl, Python, PHP, C/C++, Go, Node.js, Rust, or Ruby, and a willingness to become highly proficient with Perl', - - 'Experience with Solidity and the development of Dapps', - - 'Thorough knowledge of Bitcoin and Ethereum and familiarity with other cryptocurrencies', - - 'Understanding of cryptography, including asymmetric, symmetric, hash functions, and encryption/signatures', - - 'Familiarity with concepts such as blockchain confirmations, multisig, and HD wallets', - - 'Knowledge of coloured coins and Ethereum tokens, including ERC20/23/223', - 'Knowledge of hashing algorithms, including SHA and scrypt', - 'Experience with Bitcoin or Geth RPC APIs', - - 'Ability to produce high-quality, self-documenting code by using test-driven development (TDD) techniques', - - 'Passion for Linux and other open-source platforms\n', - ], - }, - { - title: 'Cryptocurrency/Blockchain Developer', - id: '40bf3f97-c415-44a7-9256-a5f81b158da1', - keywords: ['Cryptocurrency/Blockchain Developer'], - location: dubai.name, - type: [job_types.full_time], - team: 'crypto-development', - description: [ - 'You will help with the operation of our existing crypto-cashier system and play a key role in our future blockchain-based projects. Your work will directly influence the core architecture that powers our high-traffic trading platform.\n', - ], - responsibilities: [ - 'Design and develop applications and platforms based on blockchain technology.', - - 'Improve the security of current blockchain-based projects.', - 'Keep abreast with new developments in the cryptocurrency world.', - - 'Devise the architecture and best practices for the adoption of blockchain technology.', - - 'Build rapid prototypes and collaborate with different departments on fast-paced projects.', - - 'Identify and resolve any possible cryptocurrency-related issues.', - - 'Research and evaluate blockchain solutions to identify the ones that can best meet our needs.', - - 'Create robust software logic that supports foolproof cryptocurrency transactions.', - - 'Work closely with our technical and non-technical teams to develop and integrate\nblockchain solutions for our business.', - - 'Share your expertise on cryptocurrencies and blockchain technology with the colleagues who are working on related projects.', - ], - qualifications: [ - 'Experience with languages such as Perl, Python, PHP, C/C++, Go, Node.js, Rust, or Ruby, and a willingness to become highly proficient with Perl', - - 'Experience with Solidity and the development of Dapps', - - 'Thorough knowledge of Bitcoin and Ethereum and familiarity with other cryptocurrencies', - - 'Understanding of cryptography, including asymmetric, symmetric, hash functions, and encryption/signatures', - - 'Familiarity with concepts such as blockchain confirmations, multisig, and HD wallets', - - 'Knowledge of coloured coins and Ethereum tokens, including ERC20/23/223', - 'Knowledge of hashing algorithms, including SHA and scrypt', - 'Experience with Bitcoin or Geth RPC APIs', - - 'Ability to produce high-quality, self-documenting code by using test-driven development\n(TDD) techniques', - - 'Passion for Linux and other open-source platforms', - ], - }, - { - title: 'Cryptocurrency/Blockchain Developer', - id: '250129a1-d945-4030-831a-dba48b1bc842', - keywords: ['Cryptocurrency/Blockchain Developer'], - location: asuncion.name, - type: [job_types.full_time], - team: 'crypto-development', - description: [ - 'You will help with the operation of our existing crypto-cashier system and play a key role in our future blockchain-based projects. Your work will directly influence the core architecture that powers our high-traffic trading platform.', - ], - responsibilities: [ - 'Design and develop applications and platforms based on blockchain technology.\nImprove the security of current blockchain-based projects.', - - 'Keep abreast with new developments in the cryptocurrency world.', - - 'Devise the architecture and best practices for the adoption of blockchain technology.', - - 'Build rapid prototypes and collaborate with different departments on fast-paced projects.', - - 'Identify and resolve any possible cryptocurrency-related issues.', - - 'Research and evaluate blockchain solutions to identify the ones that can best meet our needs.', - - 'Create robust software logic that supports foolproof cryptocurrency transactions.', - - 'Work closely with our technical and non-technical teams to develop and integrate blockchain solutions for our business.', - - 'Share your expertise on cryptocurrencies and blockchain technology with the colleagues who are working on related projects.', - ], - qualifications: [ - 'Experience with languages such as Perl, Python, PHP, C/C++, Go, Node.js, Rust, or Ruby, and a willingness to become highly proficient with Perl', - - 'Experience with Solidity and the development of Dapps', - - 'Thorough knowledge of Bitcoin and Ethereum and familiarity with other cryptocurrencies', - - 'Understanding of cryptography, including asymmetric, symmetric, hash functions, and encryption/signatures', - - 'Familiarity with concepts such as blockchain confirmations, multisig, and HD wallets', - - 'Knowledge of coloured coins and Ethereum tokens, including ERC20/23/223', - 'Knowledge of hashing algorithms, including SHA and scrypt', - 'Experience with Bitcoin or Geth RPC APIs', - - 'Ability to produce high-quality, self-documenting code by using test-driven development (TDD) techniques', - - 'Passion for Linux and other open-source platforms\n', - ], - }, - { - title: 'Cryptocurrency/Blockchain Developer', - id: '7ab27d68-9199-4709-b17a-6a68f7bd7a1b', - keywords: ['Cryptocurrency/Blockchain Developer'], - location: malta.name, - type: [job_types.full_time], - team: 'crypto-development', - description: [ - 'You will help with the operation of our existing crypto-cashier system and play a key role in our future blockchain-based projects. Your work will directly influence the core architecture that powers our high-traffic trading platform.', - ], - responsibilities: [ - 'Design and develop applications and platforms based on blockchain technology.\nImprove the security of current blockchain-based projects.', - - 'Keep abreast with new developments in the cryptocurrency world.', - - 'Devise the architecture and best practices for the adoption of blockchain technology.', - - 'Build rapid prototypes and collaborate with different departments on fast-paced projects.', - - 'Identify and resolve any possible cryptocurrency-related issues.', - - 'Research and evaluate blockchain solutions to identify the ones that can best meet our needs.', - - 'Create robust software logic that supports foolproof cryptocurrency transactions.', - - 'Work closely with our technical and non-technical teams to develop and integrate blockchain solutions for our business.', - - 'Share your expertise on cryptocurrencies and blockchain technology with the colleagues who are working on related projects.', - ], - qualifications: [ - 'Experience with languages such as Perl, Python, PHP, C/C++, Go, Node.js, Rust, or Ruby, and a willingness to become highly proficient with Perl', - - 'Experience with Solidity and the development of Dapps', - - 'Thorough knowledge of Bitcoin and Ethereum and familiarity with other cryptocurrencies', - - 'Understanding of cryptography, including asymmetric, symmetric, hash functions, and encryption/signatures', - - 'Familiarity with concepts such as blockchain confirmations, multisig, and HD wallets', - - 'Knowledge of coloured coins and Ethereum tokens, including ERC20/23/223', - 'Knowledge of hashing algorithms, including SHA and scrypt', - 'Experience with Bitcoin or Geth RPC APIs', - - 'Ability to produce high-quality, self-documenting code by using test-driven development (TDD) techniques', - - 'Passion for Linux and other open-source platforms\n', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_customer-support.ts b/src/pages/careers/_model/_open-positions/_customer-support.ts deleted file mode 100644 index 6ba658121fe..00000000000 --- a/src/pages/careers/_model/_open-positions/_customer-support.ts +++ /dev/null @@ -1,266 +0,0 @@ -import { cyberjaya, dubai, malta, asuncion, melaka, ipoh } from '../_locations/_locations' -import { job_types } from '../_job_types/_job_types' - -export const customer_support_positions = [ - { - title: 'Customer Support Executive', - id: '3bea1afc-fa05-4620-bd23-b2a2a59fd5e3', - keywords: ['Customer Support Executive'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'customer-support', - description: [ - 'You will assist our clients with any issues regarding our products and services, build a mutually beneficial relationship with them, and encourage them to try new products. You will also keep track of recurring issues and report clients’ feedback to other teams. If you are a fresh graduate, you can still apply for this role, provided that you value competence, integrity, and teamwork and are passionate about helping clients. By delivering world-class customer service, you will forge client loyalty and promote business growth.', - ], - responsibilities: [ - 'Resolve complex customer care issues through careful investigation in keeping with existing policies and in a clear, concise, friendly, and timely manner.', - - 'Respond to customer enquiries and complaints by phone, email, social media, and live chat.', - - 'Process applications and customer documentation according to relevant policies and regulations.', - - 'Collaborate with members of our IT team to identify new ways to improve our products and services for customers.', - - 'Perform regular testing on our products and services.', - 'Collaborate with customer support agents in different time zones to ensure optimum results and customer satisfaction.', - ], - qualifications: [ - 'Exceptional oral and written communication skills in English', - 'Analytical and problem solving skills', - ], - preferences: [ - 'University degree in marketing, IT, or a related field or equivalent practical experience in technical customer support', - - 'Experience in the financial services or IT industry', - 'Proficiency in other languages', - ], - }, - { - title: 'Client Support Executive', - id: '7fdf0e26-0387-4d4f-8781-6dcb36612b72', - keywords: ['Client Support Executive'], - location: melaka.name, - type: [job_types.full_time], - team: 'customer-support', - description: [ - 'You will assist our clients with any issues regarding our products and services, build a mutually beneficial relationship with them, and encourage them to try new products. You will also keep track of recurring issues and report clients’ feedback to other teams. If you are a fresh graduate, you can still apply for this role, provided that you value competence, integrity, and teamwork and are passionate about helping clients. By delivering world-class customer service, you will forge client loyalty and promote business growth.', - ], - responsibilities: [ - 'Resolve complex customer care issues through careful investigation and in keeping with existing policies and procedures.', - - 'Communicate solutions to customer issues in a clear, concise, friendly, and timely manner.', - - 'Respond to customer enquiries and complaints by phone, email, social media, and live chat daily.', - - 'Process applications and customer documentation according to relevant policies and regulations.', - - 'File records and documents of customer interactions according to existing guidelines.', - - 'Identify new marketing opportunities through customer feedback and contribute ideas to expand our global customer base.', - - 'Collaborate with members of our IT team to identify new ways to improve our products and services for customers.', - - 'Perform regular testing on our products and services.', - - 'Collaborate with client support agents in different time zones to ensure optimum results and customer satisfaction.', - ], - qualifications: ['Exceptional spoken and written communication skills in English'], - preferences: [ - 'University degree in marketing, IT, or a related field or equivalent practical experience in technical customer support', - - 'Experience in the financial services or IT industry', - - 'Proficiency in other languages', - ], - }, - { - title: 'Client Support Executive', - id: '8250602c-1429-4f0b-95c2-8cc34f046412', - keywords: ['Client Support Executive'], - location: ipoh.name, - type: [job_types.full_time], - team: 'customer-support', - description: [ - 'You will assist our clients with any issues regarding our products and services, build a mutually beneficial relationship with them, and encourage them to try new products. You will also keep track of recurring issues and report clients’ feedback to other teams. If you are a fresh graduate, you can still apply for this role, provided that you value competence, integrity, and teamwork and are passionate about helping clients. By delivering world-class customer service, you will forge client loyalty and promote business growth.', - ], - responsibilities: [ - 'Resolve complex customer care issues through careful investigation and in keeping with existing policies and procedures.', - - 'Communicate solutions to customer issues in a clear, concise, friendly, and timely manner.', - - 'Respond to customer enquiries and complaints by phone, email, social media, and live chat daily.', - - 'Process applications and customer documentation according to relevant policies and regulations.', - - 'File records and documents of customer interactions according to existing guidelines.', - - 'Identify new marketing opportunities through customer feedback and contribute ideas to expand our global customer base.', - - 'Collaborate with members of our IT team to identify new ways to improve our products and services for customers.', - - 'Perform regular testing on our products and services.', - - 'Collaborate with client support agents in different time zones to ensure optimum results and customer satisfaction.', - ], - qualifications: ['Exceptional spoken and written communication skills in English'], - preferences: [ - 'University degree in marketing, IT, or a related field or equivalent practical experience in technical customer support', - - 'Experience in the financial services or IT industry', - - 'Proficiency in other languages', - ], - }, - { - title: 'Customer Support Executive', - id: '909fc86d-3908-46d7-a782-ef499bb6125d', - keywords: ['Customer Support Executive'], - location: dubai.name, - type: [job_types.full_time], - team: 'customer-support', - description: [ - 'You will assist our clients with any issues regarding our products and services, build a mutually beneficial relationship with them, and encourage them to try new products. You will also keep track of recurring issues and report clients’ feedback to other teams. If you are a fresh graduate, you can still apply for this role, provided that you value competence, integrity, and teamwork and are passionate about helping clients. By delivering world-class customer service, you will forge client loyalty and promote business growth.\n', - ], - responsibilities: [ - 'Resolve complex customer care issues through careful investigation in keeping with existing policies and in a clear, concise, friendly, and timely manner.', - - ' -Respond to customer enquiries and complaints by phone, email, social media, and live chat.', - - 'Process applications and customer documentation according to relevant policies and regulations.', - - 'Collaborate with members of our IT team to identify new ways to improve our products and services for customers.', - - 'Perform regular testing on our products and services.', - 'Collaborate with customer support agents in different time zones to ensure optimum results and customer satisfaction.', - ], - qualifications: [ - 'Exceptional oral and written communication skills in English', - 'Analytical and problem solving skills', - ], - preferences: [ - 'University degree in marketing, IT, or a related field or equivalent practical experience in technical customer support', - - 'Experience in the financial services or IT industry', - 'Proficiency in other languages', - ], - }, - { - title: 'Customer Service Executive', - id: '5ab8d6b1-2653-4808-a15a-6aa154487c92', - keywords: ['Customer Service Executive'], - location: asuncion.name, - type: [job_types.full_time], - team: 'customer-support', - description: [ - 'You will assist our clients with any issues regarding our products and services, build a mutually beneficial relationship with them, and encourage them to try new products. You will also keep track of recurring issues and report clients’ feedback to other teams. If you are a fresh graduate, you can still apply for this role if you value competence, integrity, and teamwork and are passionate about helping clients. By delivering world-class customer service, you will forge client loyalty and promote business growth.', - ], - responsibilities: [ - 'Resolve complex customer care issues through careful investigation and in keeping with existing policies and procedures.', - - 'Communicate solutions to customer issues in a clear, concise, friendly, and timely manner.', - - 'Respond to customer enquiries by phone, email, social media, and live chat daily.', - - 'Process applications and customer documentation according to relevant policies and regulations.', - - 'File records and documents of customer interactions according to existing guidelines.', - - 'Identify new marketing opportunities through customer feedback and contribute ideas to expand our global customer base.', - - 'Collaborate with members of our IT team to identify new ways to improve our products and services for customers.', - - 'Perform regular testing on our products and services. ', - 'Collaborate with customer support agents in different time zones to ensure optimum results and customer satisfaction.', - ], - qualifications: [ - 'Exceptional oral and written communication skills in Spanish and/or Portuguese', - - 'Proficiency in oral and written English\n', - 'Analytical and problem solving skills', - ], - preferences: [ - 'University degree in marketing, computer science, or any related field', - 'Practical experience in technical customer support', - 'Experience in the financial services or IT industry', - 'Proficiency in additional languages other than the ones stated above', - ], - }, - { - title: 'Customer Support Executive - Russian speaker', - id: '739a07b1-8697-491b-be30-96a8c0943ce8', - keywords: ['Customer Support Executive - Russian speaker'], - location: malta.name, - type: [job_types.full_time], - team: 'customer-support', - description: [ - 'You will assist our Russian-speaking clients with any issues regarding our products and services, build a mutually beneficial relationship with them, and encourage them to try new products. You will also keep track of recurring issues and report clients’ feedback to other teams. If you are a fresh graduate, you can still apply for this role if you value competence, integrity, and teamwork and are passionate about helping clients. By delivering world-class customer service, you will forge client loyalty and promote business growth.\n', - ], - responsibilities: [ - 'Resolve complex customer care issues through careful investigation, in keeping with existing policies, and in a clear, concise, friendly, and timely manner.', - - 'Respond to customer enquiries by phone, email, social media, and live chat.', - 'Process applications and customer documentation according to relevant policies and regulations.', - - 'File records and documents of customer interactions according to existing guidelines.', - - 'Identify new marketing opportunities through customer feedback and contribute ideas to expand our global customer base.', - - 'Collaborate with members of our IT team to identify new ways to improve our products and services for customers.', - - 'Collaborate with customer support agents in different time zones to ensure optimum results and customer satisfaction.', - - 'Attend events and seminars organised by our affiliates.\n', - ], - qualifications: [ - 'Excellent English and Russian language skills, both oral and written', - 'Minimum of 5 years experience in a customer support role', - 'Proven track record of proactive problem-solving', - 'Experience working with affiliates and payment agents (digital currency exchanges)\n', - ], - preferences: [ - 'University degree in marketing, computer science, or a related field or equivalent practical experience in technical customer support', - - 'Experience in the financial services or IT industry', - ], - }, - { - title: 'Customer Support Executive - French speaker', - id: 'b65f0566-ef1c-445d-b626-573ea3aedaa9', - keywords: ['Customer Support Executive - French speaker'], - location: malta.name, - type: [job_types.full_time], - team: 'customer-support', - description: [ - 'You will assist our French-speaking clients with any issues regarding our products and services, build a mutually beneficial relationship with them, and encourage them to try new products. You will also keep track of recurring issues and report clients’ feedback to other teams. If you are a fresh graduate, you can still apply for this role if you value competence, integrity, and teamwork and are passionate about helping clients. By delivering world-class customer service, you will forge client loyalty and promote business growth.\n', - ], - responsibilities: [ - 'Resolve complex customer care issues through careful investigation and in keeping with existing policies and procedures.', - - 'Communicate solutions to customer issues in a clear, concise, friendly, and timely manner.', - - 'Respond to customer enquiries by phone, email, social media, and live chat daily.', - - 'Process applications and customer documentation according to relevant policies and regulations.', - - 'File records and documents of customer interactions according to existing guidelines.', - - 'Identify new marketing opportunities through customer feedback and contribute ideas to expand our global customer base.', - - 'Collaborate with members of our IT team to identify new ways to improve our products and services for customers.', - - 'Perform regular testing on our products and services. ', - 'Collaborate with customer support agents in different time zones to ensure optimum results and customer satisfaction.\n', - ], - qualifications: [ - 'Exceptional oral and written communication skills in French', - 'Proficiency in oral and written English\n', - 'Analytical and problem solving skills', - ], - preferences: [ - 'University degree in marketing, computer science, or any related field', - 'Practical experience in technical customer support', - 'Experience in the financial services or IT industry', - 'Proficiency in additional languages other than the ones stated above', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_devops.ts b/src/pages/careers/_model/_open-positions/_devops.ts deleted file mode 100644 index e99ec007614..00000000000 --- a/src/pages/careers/_model/_open-positions/_devops.ts +++ /dev/null @@ -1,99 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, dubai } from '../_locations/_locations' - -export const devops_positions = [ - { - title: 'DevOps Engineer', - id: '73196e24-1791-4d6e-acd5-8dad46527c34', - keywords: ['DevOps Engineer'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'devops', - description: [ - 'You will be deeply involved in every stage of the software lifecycle. You will work closely with developers and testers to facilitate the smooth execution of the continuous integration (CI) process. You must be passionate about connecting software development to day-to-day operations and improving the quality of our products and services.\n', - ], - responsibilities: [ - 'Maintain and extend our service monitoring. We use tools such as Datadog to detect and react to issues. We’ll need you to be proactive and find issues before they happen.', - - 'Keep things running. Systems do break from time to time. When they break, your job will be to make it work again. Once it works, walk the developers through the failure so they can prevent it from breaking again.', - - 'Keep our systems secure. We have a dedicated security team, but you’ll also need to be ready to fight off intrusions.', - - 'Defeat any attempts at breaking into our systems.', - - 'Help us improve continuously. If you have suggestions for making things better, we’d love to hear them.', - ], - qualifications: [ - 'Expertise in cloud solutions and virtualization infrastructure, including AWS, Google Cloud Platform, and KVM', - - 'Familiarity with Linux and open-source applications such as rsyslog, DHCP, iptables, Postfix, NGINX, and initialisation systems such as systemd and SysVinit', - - 'Extensive experience in TCP/IP networking, firewalls, and VPNs', - - 'Knowledge of hardware and software firewalls, intrusion detection methods, security systems, and DDoS protection', - - 'Thorough knowledge of bash scripting', - - 'Knowledge of Chef, Ansible, SaltStack, or similar configuration management tools', - - 'Experience in Site reliability engineering (SRE)', - - 'Experience in managing round-the-clock operations for incident resolution, including alerts, rotations, and escalations', - - 'Experience in designing and working with high-availability web service architecture', - - 'Experience in application containerization (preferably Docker)', - 'Experience in database administration (preferably PostgresSQL)', - ], - preferences: [ - 'Extensive knowledge of information security and data protection', - 'Experience with Terraform and Kubernetes', - 'Familiarity with Perl, Python, and other scripting languages', - 'Knowledge of industry-accepted IS standards', - - 'Experience in hardening Linux systems; CI tools such as Travis-CI, CircleCI, Jenkins etc.; documentation of processes and incidents; version control software (Git); and Windows Server Administration (IIS, MS-SQL)', - ], - }, - { - title: 'DevOps Engineer', - id: 'c59a9e9d-656d-40c8-bfda-7e015d9aa62c', - keywords: ['DevOps Engineer'], - location: dubai.name, - type: [job_types.full_time], - team: 'devops', - description: [ - 'You will be deeply involved in every stage of the software lifecycle. You will work closely with developers and testers to facilitate the smooth execution of the continuous integration (CI) process. You must be passionate about connecting software development to day-to-day operations and improving the quality of our products and services.\n', - ], - responsibilities: [ - "Maintain and extend our service monitoring. We use tools such as Datadog to detect and react to issues. We'll need you to be proactive and find issues before they happen. translate", - - 'Keep things running. Systems do break from time to time. When they break, your job will be to make it work again. Once it works, walk the developers through the failure so they can prevent it from breaking again.', - - "Keep our systems secure. We have a dedicated security team, but you'll also need to be ready to fight off intrusions. Defeat any attempts at breaking into our systems. translate", - "Help us improve continuously. If you have suggestions for making things better, we'd love to hear about it.", - ], - qualifications: [ - 'Expertise in cloud solutions and virtualization infrastructure, including AWS, Google Cloud Platform, and KVM', - - 'Familiarity with Linux and open-source applications such as rsyslog, DHCP, iptables, Postfix, NGINX, and initialisation systems such as systemd and SysVinit', - - 'Extensive experience in TCP/IP networking, firewalls, and VPNs', - - 'Knowledge of hardware and software firewalls, intrusion detection methods, security systems, and DDoS protection', - - 'Thorough knowledge of bash scripting', - - 'Knowledge of Chef, Ansible, SaltStack, or similar configuration management tools', - - 'Experience in Site Reliability Engineering (SRE); managing round-the-clock operations for incident resolution, including alerts, rotations, and escalations; designing and working with high-availability web service architecture; application containerization (preferably Docker); and database administration (preferably PostgreSQL)', - ], - preferences: [ - 'Extensive knowledge of information security and data protection', - 'Experience with Terraform and Kubernetes', - 'Familiarity with Perl, Python, and other scripting languages', - 'Knowledge of industry-accepted IS standards', - - 'Experience in hardening Linux systems; CI tools such as Travis-CI, CircleCI, Jenkins etc.; documentation of processes and incidents; version control software (Git); and Windows Server Administration (IIS, MS-SQL)', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_disaster-recovery.ts b/src/pages/careers/_model/_open-positions/_disaster-recovery.ts deleted file mode 100644 index b98fa9ed9f5..00000000000 --- a/src/pages/careers/_model/_open-positions/_disaster-recovery.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { cyberjaya } from '../_locations/_locations' -import { job_types } from '../_job_types/_job_types' - -export const disaster_recovery_positions = [ - { - title: 'Disaster Recovery Analyst', - id: '24612204-9a10-4811-ab9f-fce8970f190f', - keywords: ['Disaster Recovery Analyst'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'disaster-recovery', - description: [ - 'You will help with the development, maintenance, and execution of disaster recovery strategies and risk management procedures. You will identify vulnerabilities in our IT infrastructure and determine critical processes required for the successful resumption of business operations in the event of system failure or disasters. You have an in-depth understanding of IT resilience and a hands-on integrated multidisciplinary approach, so you can create business continuance scenarios and effective disaster recovery plans.', - ], - responsibilities: [ - 'Execute risk management, business continuity, and disaster recovery plans across the company.', - - 'Ensure the continuous implementation of a disaster recovery programme that observes disaster recovery policies, standards, procedures, and guidelines.', - - 'Identify the critical processes and systems that are core to our company’s continued business operation.', - - 'Conduct periodical checks to ensure that backups are created regularly and flawlessly.', - - 'Plan and execute periodical live disaster recovery testing to ensure the functionality of backups as well as the security and integrity of critical business processes.', - - 'Coordinate the vendor management of service providers who help with sustaining and improving our disaster recovery capabilities.', - - 'Provide rapid response and recovery by adhering to clear, actionable, and high-standard disaster recovery plans.', - - 'Execute response and recovery activities and status communications in the event of a major incident.', - - 'Help to devise and execute a methodology to ensure compliance with corporate business continuity standards.', - - 'Work with internal and external auditors by responding to requests and providing the relevant, required information.', - - 'Work with third-party suppliers to ensure access to data, and switch to alternative suppliers if necessary', - ], - qualifications: [ - 'A university degree in computer science or a related field', - 'At least 2 years of experience in executing disaster recovery plans', - 'Hands-on experience in Linux and cloud computing (AWS, GCP, and other IAAS)', - 'Experience in networking and configuration management tools such as Chef, Ansible, and SaltStack', - 'Hands-on experience in implementing high availability database clusters', - 'Extensive knowledge of industry-standard information security and disaster recovery best practices', - 'Familiarity with legacy and modern application architectures and related technologies (web applications, service-oriented architecture, microservices), network protocols, and storage and backup services', - 'Ability to predict, identify, and define potential threats', - 'Strong communication and collaboration skills and the ability to interface with all levels of the company', - 'Exceptional English communication skills (both oral and written)', - 'Extensive experience with databases', - ], - preferences: ['Comprehensive experience in database administration (PostgreSQL preferred)'], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_front-end.ts b/src/pages/careers/_model/_open-positions/_front-end.ts deleted file mode 100644 index 13d5faa859a..00000000000 --- a/src/pages/careers/_model/_open-positions/_front-end.ts +++ /dev/null @@ -1,295 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, dubai, asuncion, malta } from '../_locations/_locations' - -export const front_end_positions = [ - { - title: 'Front-end Developer', - id: '59cd28f1-7b33-4210-954b-52a897e2bc11', - keywords: ['Front-end Developer'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'front-end', - description: [ - 'You will take care of our application development with a strong focus on improving the user experience. You will advocate for clients’ needs when implementing new products and features on our web applications.', - ], - responsibilities: [ - 'Be meticulous, organised, results-driven, and proactive.', - - 'Communicate effectively with other team members to understand the big picture of the organisation and its goals.', - - 'Collaborate regularly with researchers, designers, and developers on the implementation of new features and products.', - - 'Provide technical leadership, leading by example throughout the development process.', - - 'Develop and maintain advanced features, tools, and applications according to best practices in UI/UX, Front-end development and hybrid mobile application \ndevelopment.', - - 'Test and debug our ever-evolving product line to improve their speed, scalability, and usability across multiple browsers, devices, and web standards.', - - 'Stay on top of the latest JavaScript frameworks, libraries, and tools in order to apply them when necessary to solve challenges related to web and mobile development.', - - 'Research and test new web technologies and make recommendations on opportunities to improve our user interface.', - - 'Ensure the design and development of each product is consistent with our style guide, and that everything works as planned with each release.', - ], - qualifications: [ - 'Extensive experience of JavaScript, HTML, and CSS', - - 'Experience with package managers (npm), task runners (Gulp, Webpack, Grunt), CSS\nprocessors (Sass, Stylus), and APIs (WebSocket)', - - 'Familiarity with various JavaScript standards, libraries, frameworks, compilers, and\ntranspilers including ES6, TypeScript, Babel, Web Workers, React, and Angular', - - 'Extensive knowledge in advanced coding techniques and cross-platform development', - - 'Ability to write high-quality, self-documenting code using test-driven development\ntechniques', - - 'Familiarity with testing and debugging processes, including unit testing and UI testing', - - 'Passion for Linux and other open-source platforms', - ], - preferences: [ - 'Knowledge of information security and data protection', - 'Experience in responsive and mobile web design', - 'Good grasp of user experience and user interface design', - 'Familiarity in search engine optimisation (SEO)', - 'Knowledge of back-end technologies', - ], - }, - { - title: 'Mobile App Developer', - id: '6dba8da2-79d8-4f48-8cf3-6b35a00e214e', - keywords: ['Mobile App Developer'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'front-end', - description: [ - 'You will be responsible for designing and developing applications for iOS and Android platforms while working closely with the Product Design team to plan new app features. You will handle debugging and troubleshooting to improve mobile app functionality and create advanced applications.', - ], - responsibilities: [ - 'Develop iOS and Android mobile applications, writing high-quality code and tests.', - - 'Collaborate with cross-functional teams to analyse data and decide on the best strategies to improve customers’ interaction with our mobile apps. ', - - 'Prioritise information security and process maintenance throughout the mobile app lifecycle.', - - 'Analyse, enhance, and support our existing mobile applications.', - - 'Work closely with QA, Design, and Product Management teams to build the best possible UX for our mobile apps', - ], - qualifications: [ - 'Experience in Flutter framework or a keen eagerness to master it', - - 'High proficiency and experience in one or more of the following programming languages: Java, Dart, ES6, Kotlin, Objective-C, or Swift', - - 'Distinct competence in mobile app development for at least one platform', - - 'In-depth understanding of design guidelines and patterns in the Android and iOS platforms and their differences', - - 'Strong knowledge of the performance tools and optimisation techniques in Android or iOS SDKs', - - 'Proven work experience as a mobile developer in Android and iOS', - ], - preferences: [ - 'Demonstrable portfolio of released applications on the App store and the Android market', - - 'Experience in implementing UI animations', - 'Experience in working with finance-related companies\n', - ], - }, - { - title: 'Front-end Developer', - id: 'e81a1c83-e92e-4933-868a-532672a34f01', - keywords: ['Front-end Developer'], - location: dubai.name, - type: [job_types.full_time], - team: 'front-end', - description: [ - 'You will take care of our application development with a strong focus on improving the user experience. You will advocate for clients’ needs when implementing new products and features on our web applications.', - ], - responsibilities: [ - 'Be meticulous, organised, results-driven, and proactive.', - - 'Communicate effectively with other team members to understand the big picture of the organisation and its goals.', - - 'Collaborate regularly with researchers, designers, and developers on the implementation of new features and products.', - - 'Provide technical leadership, leading by example throughout the development process.', - - 'Develop and maintain advanced features, tools, and applications according to best practices in UI/UX, front-end development and hybrid mobile application development.', - - 'Test and debug our ever-evolving product line to improve their speed, scalability, and usability across multiple browsers, devices, and web standards.', - - 'Stay on top of the latest JavaScript frameworks, libraries, and tools in order to apply them when necessary to solve challenges related to web and mobile development.', - - 'Research and test new web technologies and make recommendations on opportunities to improve our user interface.', - - 'Ensure the design and development of each product is consistent with our style guide, and that everything works as planned with each release.', - ], - qualifications: [ - 'Extensive experience of JavaScript, HTML, and CSS', - - 'Experience with package managers (npm), task runners (Gulp, Webpack, Grunt), CSS\nprocessors (Sass, Stylus), and APIs (WebSocket)', - - 'Familiarity with various JavaScript standards, libraries, frameworks, compilers, and transpilers including ES6, TypeScript, Babel, Web Workers, React, and Angular', - - 'Extensive knowledge in advanced coding techniques and cross-platform development', - - 'Ability to write high-quality, self-documenting code using test-driven development\ntechniques', - - 'Familiarity with testing and debugging processes, including unit testing and UI testing', - - 'Passion for Linux and other open-source platforms', - ], - preferences: [ - 'Knowledge of information security and data protection', - 'Experience in responsive and mobile web design', - 'Good grasp of user experience and user interface design', - 'Familiarity in search engine optimisation (SEO)', - 'Knowledge of back-end technologies', - ], - }, - { - title: 'Front-end Developer', - id: 'fa2b4ab6-6bf2-4578-9fad-7b55edf606bf', - keywords: ['Front-end Developer'], - location: asuncion.name, - type: [job_types.full_time], - team: 'front-end', - description: [ - 'You will take care of our application development with a strong focus on improving the user experience. You will advocate for clients’ needs when implementing new products and features on our web applications.', - ], - responsibilities: [ - 'Be meticulous, organised, results-driven, and proactive.', - - 'Communicate effectively with other team members to understand the big picture of the organisation and its goals.', - - 'Collaborate regularly with researchers, designers, and developers on the implementation of new features and products.', - - 'Provide technical leadership, leading by example throughout the development process.', - - 'Develop and maintain advanced features, tools, and applications according to best practices in UI/UX, Front-end development and hybrid mobile application \ndevelopment.', - - 'Test and debug our ever-evolving product line to improve their speed, scalability, and usability across multiple browsers, devices, and web standards.', - - 'Stay on top of the latest JavaScript frameworks, libraries, and tools in order to apply them when necessary to solve challenges related to web and mobile development.', - - 'Research and test new web technologies and make recommendations on opportunities to improve our user interface.', - - 'Ensure the design and development of each product is consistent with our style guide, and that everything works as planned with each release.', - ], - qualifications: [ - 'Extensive experience of JavaScript, HTML, and CSS', - - 'Experience with package managers (npm), task runners (Gulp, Webpack, Grunt), CSS\nprocessors (Sass, Stylus), and APIs (WebSocket)', - - 'Familiarity with various JavaScript standards, libraries, frameworks, compilers, and\ntranspilers including ES6, TypeScript, Babel, Web Workers, React, and Angular', - - 'Extensive knowledge in advanced coding techniques and cross-platform development', - - 'Ability to write high-quality, self-documenting code using test-driven development\ntechniques', - - 'Familiarity with testing and debugging processes, including unit testing and UI testing', - - 'Passion for Linux and other open-source platforms', - ], - preferences: [ - 'Knowledge of information security and data protection', - 'Experience in responsive and mobile web design', - 'Good grasp of user experience and user interface design', - 'Familiarity in search engine optimisation (SEO)', - 'Knowledge of back-end technologies', - ], - }, - { - title: 'Front-end Developer', - id: '33e334dc-c742-4b17-a356-bf109b134c1a', - keywords: ['Front-end Developer'], - location: malta.name, - type: [job_types.full_time], - team: 'front-end', - description: [ - 'You will take care of our application development with a strong focus on improving the user experience. You will advocate for clients’ needs when implementing new products and features on our web applications.', - ], - responsibilities: [ - 'Be meticulous, organised, results-driven, and proactive.', - - 'Communicate effectively with other team members to understand the big picture of the organisation and its goals.', - - 'Collaborate regularly with researchers, designers, and developers on the implementation of new features and products.', - - 'Provide technical leadership, leading by example throughout the development process.', - - 'Develop and maintain advanced features, tools, and applications according to best practices in UI/UX, Front-end development and hybrid mobile application \ndevelopment.', - - 'Test and debug our ever-evolving product line to improve their speed, scalability, and usability across multiple browsers, devices, and web standards.', - - 'Stay on top of the latest JavaScript frameworks, libraries, and tools in order to apply them when necessary to solve challenges related to web and mobile development.', - - 'Research and test new web technologies and make recommendations on opportunities to improve our user interface.', - - 'Ensure the design and development of each product is consistent with our style guide, and that everything works as planned with each release.', - ], - qualifications: [ - 'Extensive experience of JavaScript, HTML, and CSS', - - 'Experience with package managers (npm), task runners (Gulp, Webpack, Grunt), CSS\nprocessors (Sass, Stylus), and APIs (WebSocket)', - - 'Familiarity with various JavaScript standards, libraries, frameworks, compilers, and\ntranspilers including ES6, TypeScript, Babel, Web Workers, React, and Angular', - - 'Extensive knowledge in advanced coding techniques and cross-platform development', - - 'Ability to write high-quality, self-documenting code using test-driven development techniques', - - 'Familiarity with testing and debugging processes, including unit testing and UI testing', - - 'Passion for Linux and other open-source platforms', - ], - preferences: [ - 'Knowledge of information security and data protection', - 'Experience in responsive and mobile web design', - 'Good grasp of user experience and user interface design', - 'Familiarity in search engine optimisation (SEO)', - 'Knowledge of back-end technologies', - ], - }, - { - title: 'Mobile App Developer', - id: '10a93ae7-e217-4378-b894-ce56a2b5a68e', - keywords: ['Mobile App Developer'], - location: malta.name, - type: [job_types.full_time], - team: 'front-end', - description: [ - 'You will be responsible for designing and developing applications for iOS and Android platforms while working closely with the Product Design team to plan new app features. You will handle debugging and troubleshooting to improve mobile app functionality and create advanced applications.', - ], - responsibilities: [ - 'Develop iOS and Android mobile applications, writing high-quality code and tests.', - - 'Collaborate with cross-functional teams to analyse data and decide on the best strategies to improve customers’ interaction with our mobile apps. ', - - 'Prioritise information security and process maintenance throughout the mobile app lifecycle.', - - 'Analyse, enhance, and support our existing mobile applications.', - - 'Work closely with QA, Design, and Product Management teams to build the best possible UX for our mobile apps.', - ], - qualifications: [ - 'Experience in Flutter framework or a keen eagerness to master it', - - 'High proficiency and experience in one or more of the following programming languages: Java, Dart, ES6, Kotlin, Objective-C, or Swift', - - 'Distinct competence in mobile app development for at least one platform', - - 'In-depth understanding of design guidelines and patterns in the Android and iOS platforms and their differences', - - 'Strong knowledge of the performance tools and optimisation techniques in Android or iOS SDKs', - - 'Proven work experience as a mobile developer in Android and iOS', - ], - preferences: [ - 'Demonstrable portfolio of released applications on the App store and the Android market', - - 'Experience in implementing UI animations', - 'Experience in working with finance-related companies\n', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_hr-recruitment.ts b/src/pages/careers/_model/_open-positions/_hr-recruitment.ts deleted file mode 100644 index a961fe49225..00000000000 --- a/src/pages/careers/_model/_open-positions/_hr-recruitment.ts +++ /dev/null @@ -1,218 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, dubai, asuncion, malta } from '../_locations/_locations' - -export const hr_recruitment_positions = [ - { - title: 'HR Operations Executive', - id: 'f94ab35d-9e57-4a4e-862d-a114087a3795', - keywords: ['HR Operations Executive'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'hr-recruitment', - description: [ - 'You will play a key role in managing all HR-related tasks, ensuring the operational needs of our office are fulfilled, and enabling our staff to perform their duties effectively.', - ], - responsibilities: [ - 'Support talent management efforts, such as applying for work permits and on-boarding new hires.', - - 'Liaise with governmental authorities on behalf of the company and employees.', - - 'Administer human resource activities such as performance appraisals.', - - 'Provide administrative support to all internal departments, including sourcing vendors\nand planning events.', - - 'Manage office expenses and petty cash', - ], - qualifications: [ - 'Advanced/higher/graduate diploma or university degree', - - 'Extensive experience with Microsoft Office applications, as well as popular HR management and payroll systems', - - 'Sharp administrative and accounting skills', - - 'Excellent oral and written communication skills in English and Bahasa Malaysia\n', - ], - preferences: [ - 'Relevant work experience in a related field such as managing and onboarding expats, processing work permits, and dealing with Malaysian governmental authorities', - ], - }, - { - title: 'Office Coordinator', - id: 'b2f7812c-517c-4895-abee-88f46ca63345', - keywords: ['Office Coordinator'], - location: dubai.name, - type: [job_types.full_time], - team: 'hr-recruitment', - description: [ - 'You will help with the smooth running of our daily operations. Your competent support ensures our staff that their office needs are met promptly and efficiently. You will make sure that policies and procedures are executed to the highest standards. ', - ], - responsibilities: [ - 'Support talent management efforts, such as conducting induction programmes for new employees.', - - 'Manage office budgets and expenditure.', - 'Oversee and improve general administrative processes.', - - 'Be the first point of contact for all inbound phone calls and correspondence.', - - 'Keep track of our office supplies and place orders when necessary.', - 'Keep our employee records updated and accessible.', - - 'Support our staff and empower them to perform their best at work by keeping the office environment comfortable.', - - 'Be the first point of contact for our vendors and contractors.', - - 'Organise company events, team building activities, and company trips and perform ad hoc tasks as required.', - ], - qualifications: [ - 'An advanced diploma or bachelor’s degree', - 'Employment history in accounting, administration, or marketing', - 'Commendable experience in project management ', - 'Extensive experience in Microsoft Office applications', - 'Impressive organisational, administrative, and accounting skills', - 'Excellent oral and written communication skills in English\n', - ], - }, - { - title: 'HR Operations Executive', - id: '9b509e10-7fa0-4d1f-9911-745caee36411', - keywords: ['HR Operations Executive'], - location: asuncion.name, - type: [job_types.full_time], - team: 'hr-recruitment', - description: [ - 'You will play a key role in managing all HR-related tasks, ensuring the operational needs of our office are fulfilled, and enabling our staff to perform their duties effectively.', - ], - responsibilities: [ - 'Support recruitment and talent management efforts, such as applying for work permits and on-boarding new hires.', - - 'Liaise with governmental authorities on behalf of the company and employees.', - - 'Administer human resource activities such as performance appraisals.', - - 'Provide administrative support to all internal departments, including sourcing vendors\nand planning events.', - - 'Input accounting entries into Xero.com.', - 'Manage office expenses and petty cash.', - 'Coordinate with our head office on all finance-related matters.', - ], - qualifications: [ - 'Advanced/higher/graduate diploma or university degree', - - 'Extensive experience with Microsoft Office applications, as well as popular HR management and payroll systems', - - 'Sharp administrative and accounting skills', - 'Excellent oral and written communication skills in English and Spanish\n', - ], - preferences: ['Relevant work experience in a related field'], - }, - { - title: 'Talent Acquisition Specialist', - id: 'dd04f817-eb55-4fee-aee0-73fb88cc9eed', - keywords: ['Talent Acquisition Specialist'], - location: asuncion.name, - type: [job_types.full_time], - team: 'hr-recruitment', - description: [ - 'You will strategically identify and recruit A players by using leading recruitment methodologies such as Topgrading to further the company’s growth worldwide. A players are top talents who are smart, driven, and get things done while possessing traits that align with our company values: integrity, teamwork, competence, and customer focus.', - ], - responsibilities: [ - 'Work closely with hiring managers to understand different roles within the organisation and their requirements.', - - 'Find and recruit candidates using various online and offline channels.', - - 'Assess applicants by using hiring and interviewing methodologies such as Topgrading to determine their technical and cultural fit.', - - 'Plan and manage online technical assessments alongside hiring managers and team leads.', - - 'Schedule and coordinate interview with candidates.', - - 'Spearhead recruitment activities such as career fairs and campus recruitment drives.', - - 'Maintain our applicant database, and prepare recruitment analytics and hiring reports.', - - 'Collaborate with the product design team to create branding materials for recruitment purposes.', - ], - qualifications: [ - 'A university degree or other relevant professional qualifications', - 'Excellent proficiency in oral and written English with interpersonal skills', - - 'Ability to identify top talent and assess a candidate’s attitude, character, and skills', - - 'Comprehensive knowledge of ethical and professional recruitment methodologies and techniques such as Topgrading', - - 'Strong decision-making skills and the ability to work independently', - 'Proficiency of office software such as Word, Excel, etc.', - 'Ability to quickly learn new systems and procedures', - ], - preferences: [ - 'Experience as a recruiter in the financial or IT industries', - 'Knowledge of applicable employment laws and regulations\n', - ], - }, - { - title: 'Office Coordinator', - id: '1843a99d-2dc4-48a2-9845-6058f69dad35', - keywords: ['Office Coordinator'], - location: asuncion.name, - type: [job_types.full_time], - team: 'hr-recruitment', - description: [ - 'You will help with the smooth running of our daily operations. Your competent support ensures our staff that their office needs are met promptly and efficiently. You will make sure that policies and procedures are executed to the highest standards. ', - ], - responsibilities: [ - 'Support talent management efforts, such as conducting induction programmes for new employees.', - - 'Manage office budgets and expenditure.', - 'Oversee and improve general administrative processes.', - - 'Be the first point of contact for all inbound phone calls and correspondence.', - - 'Keep track of our office supplies and place orders when necessary.', - 'Keep our employee records updated and accessible.', - - 'Support our staff and empower them to perform their best at work by keeping the office environment comfortable.', - - 'Be the first point of contact for our vendors and contractors.', - - 'Organise company events, team building activities, and company trips and perform ad hoc tasks as required.', - ], - qualifications: [ - 'An advanced diploma or bachelor’s degree', - 'Employment history in accounting, administration, or marketing', - 'Commendable experience in project management ', - 'Extensive experience in Microsoft Office applications', - 'Impressive organisational, administrative, and accounting skills', - 'Excellent oral and written communication skills in English and Spanish\n', - ], - }, - { - title: 'Office Operations Administrator', - id: '7ae92e0a-17f8-4c44-88b6-c9be1e894a0c', - keywords: ['Office Operations Administrator'], - location: malta.name, - type: [job_types.full_time], - team: 'hr-recruitment', - description: [ - 'You will help with the smooth running of our office and its daily operations, while providing our staff with adequate support when needed. You will also welcome our guests with a smile and handle incoming calls and correspondence from vendors, contractors, and others.\n', - ], - responsibilities: [ - 'Maintain a pleasant and friendly company image by welcoming guests to our office and being the first point of contact for all inbound phone calls and correspondence.', - - 'Keep track of our office supplies and place orders when necessary.', - 'Keep our employee records updated and accessible.', - 'Support our staff and help them perform their best at work.', - 'Assist in the organising of company events and outings.', - 'Assist in payroll and tax filings.', - ], - qualifications: [ - 'An advanced/higher/graduate diploma or bachelor’s degree', - 'Relevant work experience in a related field', - 'Extensive experience in Microsoft Office applications', - 'Well-honed organisational, administrative, and accounting skills', - 'Excellent oral and written communication skills in English and Maltese', - ], - preferences: [ - 'Oral and written proficiency in multiple European languages, including Italian, is an advantage', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_internal-audit.ts b/src/pages/careers/_model/_open-positions/_internal-audit.ts deleted file mode 100644 index 6a9fc1eb608..00000000000 --- a/src/pages/careers/_model/_open-positions/_internal-audit.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya } from '../_locations/_locations' - -export const internal_audit_positions = [ - { - title: 'Internal Audit Executive', - id: 'b84082d8-2382-48f9-a99f-7dcd832cf146', - keywords: ['Internal Audit Executive'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'internal-audit', - description: [ - 'You will provide an objective and independent evaluation of our company’s operations. You will use a methodical approach to make sure that our risk management, governance, and internal control processes are operating effectively. Delivering first-rate internal auditing, you will handle issues that are fundamentally important in the future of our company. \n', - ], - responsibilities: [ - 'Evaluate and improve the effectiveness of internal controls, risk management, regulatory compliance, financial and operational processes. ', - - 'Assist in preparing audit plans and programmes which includes operational activities, objectives, scope, and methodology. ', - - 'Perform audit assignments and identify control gaps, risks and opportunities for improvement. ', - - 'Summarise audit findings and work with department heads to create effective and efficient solutions. ', - - 'Prepare reports expressing audit opinions on the adequacy and effectiveness of the internal controls and operational efficiency. ', - - 'Follow up on the recommendations and timelines for corrective actions with department heads. ', - - 'Assist and/or advise management during the internal controls implementation phase. \n', - ], - qualifications: [ - 'A university degree in Accounting/Finance or its equivalent', - 'Exceptional English communication skills (both oral and written)', - 'Advanced knowledge of Microsoft Office', - 'A strong understanding of internal controls and business processes', - 'Exceptional ability to work and excel in a team-oriented environment', - 'Ability to work independently and multitask', - 'A meticulous, organised, results-driven, and proactive personality\n', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_it-admin.ts b/src/pages/careers/_model/_open-positions/_it-admin.ts deleted file mode 100644 index 3a64ee3c784..00000000000 --- a/src/pages/careers/_model/_open-positions/_it-admin.ts +++ /dev/null @@ -1,87 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, malta } from '../_locations/_locations' - -export const it_admin_positions = [ - { - title: 'System Administrator', - id: '9570f25a-5066-41f5-bb1c-f272ae49d134', - keywords: ['System Administrator'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'it-admin', - description: [ - 'You will make sure that our IT infrastructure is working smoothly and securely. You will enjoy the challenges that this job offers as opportunities to use your talent and enhance your experience. With your technical expertise, you will build and operate a reliable and low-latency digital foundation that will help us deliver the excellent service our customers deserve. ', - ], - responsibilities: [ - 'Configure, monitor, and maintain our IT infrastructure to make sure it is running smoothly.', - - 'Install new software and upgrade computer systems across the company.', - 'Test our IT systems regularly to prevent downtime and other threats.', - 'Perform company-wide software and hardware troubleshooting.', - 'Make sure that the data is backed up regularly and efficiently.', - - 'Implement firewalls and educate employees on how to increase their digital security.', - - 'Choose secure, scalable systems from what vendors offer.', - 'Talk to users and vendors to find the best solution for a system problem.', - 'Predict future capacity requirements by analysing user needs.', - - 'Be the point-of-contact for the employees with problems related to the network or the system', - ], - qualifications: [ - 'A diploma or degree in computer science or information technology or relevant experience in the field of IT operations/administration', - - 'Experience in troubleshooting computer software, hardware, and internet applications and networks', - - 'Experience in firewall appliances such as Fortigate or similar devices (e.g. Cisco, Pfsense)', - - 'Knowledge of Mac or Linux technologies and associated security features', - - 'Firm grasp of VPN concepts and experience in setting up site-to-site networks \n', - ], - preferences: [ - 'Experience in one or more of the following: DRAC; ARUBA or similar enterprise WiFi AP management; and end-user device security audit and policy implementation', - ], - }, - { - title: 'System Administrator', - id: 'b26c26ea-f19f-49fc-94b1-dc92586f0222', - keywords: ['System Administrator'], - location: malta.name, - type: [job_types.full_time], - team: 'it-admin', - description: [ - 'You will make sure that our IT infrastructure is working smoothly and securely. You will enjoy the challenges that this job offers as opportunities to use your talent and enhance your experience. With your technical expertise, you will build and operate a reliable and low-latency digital foundation that will help us deliver the excellent service our customers deserve. \n', - ], - responsibilities: [ - 'Configure, monitor, and maintain our IT infrastructure to make sure it is running smoothly.', - - 'Install new software and upgrade computer systems across the company.', - 'Test our IT systems regularly to prevent downtime and other threats.', - 'Perform company-wide software and hardware troubleshooting.', - 'Make sure that the data is backed up regularly and efficiently.', - - 'Implement firewalls and educate employees on how to increase their digital security.', - - 'Choose secure, scalable systems from what vendors offer.', - 'Talk to users and vendors to find the best solution for a system problem.', - 'Predict future capacity requirements by analysing user needs.', - - 'Be the point-of-contact for the employees with problems related to the network or the system.\n', - ], - qualifications: [ - 'A diploma or degree in computer science or information technology or relevant experience in the field of IT operations/administration', - - 'Experience in troubleshooting computer software, hardware, and internet applications and networks', - - 'Experience in firewall appliances such as Fortigate or similar devices (e.g. Cisco, Pfsense)', - - 'Knowledge of Mac or Linux technologies and associated security features', - - 'Firm grasp of VPN concepts and experience in setting up site-to-site networks \n', - ], - preferences: [ - 'Experience in one or more of the following: DRAC; ARUBA or similar enterprise WiFi AP management; and end-user device security audit and policy implementation', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_marketing.ts b/src/pages/careers/_model/_open-positions/_marketing.ts deleted file mode 100644 index 2655ddbef3f..00000000000 --- a/src/pages/careers/_model/_open-positions/_marketing.ts +++ /dev/null @@ -1,795 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, dubai, asuncion } from '../_locations/_locations' - -export const marketing_positions = [ - { - title: 'Affiliate Marketing Manager - Thai speaker', - id: '281ed07f-2290-456a-9ab1-57f36cd3e004', - keywords: ['Affiliate Marketing Manager - Thai speaker'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'marketing', - description: ['You will drive growth and business development in Thailand.'], - responsibilities: [ - 'Grow our affiliate networks in Thailand.', - - 'Perform market research and data analysis to uncover trends, prospects, and\ncompetitors that lead to new growth opportunities.', - - 'Generate meaningful insights that help you to find, recruit, and train affiliates that are\naligned with our values and business strategies.', - - 'Monitor and analyse affiliate activity, track important data and metrics such as the\nnumber of conversions per affiliate, and make data-driven recommendations to increase affiliate performance.', - - 'Devise branding, marketing, and messaging strategies to help affiliates improve their\nuser acquisition and retention efforts.', - - 'Localise affiliate marketing tactics and promotional materials for your designated\nmarkets to ensure maximum effectiveness and ROI.', - ], - qualifications: [ - 'University degree in marketing, business administration, or any other related discipline', - - 'At least 5 years of experience in affiliate marketing, growth hacking, business development, and other closely-related skills', - - 'Exceptional oral and written communication skills in English ', - 'Passion for e-commerce or online trading', - 'Friendly and approachable personality', - 'Proactive and get-things-done approach to working', - 'Ability to think critically and exercise good judgment in any situation\n', - 'Proficiency in Thai', - ], - preferences: ['Experience in the financial services industry\n'], - }, - { - title: 'Affiliate Marketing Manager - Vietnamese speaker', - id: '3f48859e-0abd-4852-a3da-9eaf7baec42e', - keywords: ['Affiliate Marketing Manager - Vietnamese speaker'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'marketing', - description: ['You will drive growth and business development in Vietnam.'], - responsibilities: [ - 'Grow our affiliate networks in Vietnam.', - - 'Perform market research and data analysis to uncover trends, prospects, and\ncompetitors that lead to new growth opportunities.', - - 'Generate meaningful insights that help you to find, recruit, and train affiliates that are\naligned with our values and business strategies.', - - 'Monitor and analyse affiliate activity, track important data and metrics such as the\nnumber of conversions per affiliate, and make data-driven recommendations to increase affiliate performance.', - - 'Devise branding, marketing, and messaging strategies to help affiliates improve their\nuser acquisition and retention efforts.', - - 'Localise affiliate marketing tactics and promotional materials for your designated\nmarkets to ensure maximum effectiveness and ROI.\n', - ], - qualifications: [ - 'University degree in marketing, business administration, or any other related discipline', - - 'At least 5 years of experience in affiliate marketing, growth hacking, business development, and other closely-related skills', - - 'Exceptional oral and written communication skills in English', - 'Passion for e-commerce or online trading', - 'Friendly and approachable personality', - 'Proactive and get-things-done approach to working', - 'Ability to think critically and exercise good judgment in any situation\n', - 'Proficiency in Vietnamese', - ], - preferences: ['Experience in the financial services industry\n'], - }, - { - title: 'PPC Specialist', - id: '486c6028-328e-417d-afbb-c02bbf67c437', - keywords: ['PPC Specialist'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will be an analytical thinker who can recognise problems and opportunities by looking at data. You will also be a reliable decision-maker who is skilful at identifying and implementing effective improvements to achieve PPC goals. Our ideal candidate is a self-starter that exudes passion for their field and has a proven record of delivering PPC results. ', - ], - responsibilities: [ - 'Develop, manage, and maintain effective PPC strategies that translate into significant conversion rates.', - 'Create strong ad campaigns on Google Ads and other advertising platforms.', - 'Devise, monitor, and administer web analytics dashboards and key reporting tools.', - 'Create relevant, exhaustive, and expansive keyword lists and prepare strategies for effective targeting, campaign structuring, and other aspects of paid search.', - 'Optimise our keyword bids by analysing and improving PPC metrics such as cost per click (CPC), cost per acquisition (CPA), impression share, and quality score.', - 'Propose plans for enhancing landing pages and devise tight keyword groups to attract the right customers.', - 'Keep up-to-date with the latest PPC-related developments', - ], - qualifications: [ - 'A university degree in marketing, communications, new media, or related fields', - 'Excellent command of working with online advertising platforms such as Google Ads, Facebook, Twitter, and Bing', - 'Strong analytical skills and hands-on experience with popular analytics tools such as Google Analytics, Metabase, Tableau, Open Web Analytics, Taplytics, and App Annie', - ], - preferences: [ - 'Certificate in Google Ads, YouTube Advertising, or Google Analytics', - 'Background in an international work environment\n', - ], - }, - { - title: 'Digital Marketing Manager', - id: '9f8dc04b-539e-47c4-8ebd-eba8401a2483', - keywords: ['Digital Marketing Manager'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - `You will be a strategic thinker, a creative problem solver, and a geek for data. You'll be the mastermind behind campaigns that increase brand recognition, trust, and customer acquisition. You will grow and lead a team of digital marketers to drive robust marketing results. Our ideal candidate is collaborative, an effective communicator, and experienced in a variety of marketing channels.`, - ], - responsibilities: [ - 'Develop marketing campaigns that span across the web, social media, email, search engine marketing, and other online and offline media.', - 'Identify and acquire new segments, driving loyalty, and increasing the lifetime value of customers.', - 'Establish, track, and improve response rates, conversion rates, pipeline, and ROI across marketing campaigns.', - 'Build strong working relationships with key internal teams, including Customer Support, Business Intelligence, and Product Design.', - 'Work with our copywriters and designers to ideate content for marketing campaigns.', - 'Work with the Business Intelligence team to track and analyse campaign effectiveness.', - 'Identify new trends in digital marketing, evaluate new technologies, and ensure that our brand is at the forefront of industry developments in mobile marketing. ', - ], - qualifications: [ - 'A university degree in marketing, communications, or business', - 'Excellent understanding of data to drive impactful actions', - - 'Strong understanding of technology trends, market best practice, and digital marketing tools', - - 'Good balance of creativity and analytical skills', - - 'A passion for being up-to-date on the latest online marketing channels and tools\n', - ], - }, - { - title: 'Marketing Design Manager', - id: '9b542292-5b9e-499b-8430-50fb64dd96e2', - keywords: ['Marketing Design Manager'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will be an effective problem solver and a conceptual thinker who is able to define the creative direction for our marketing and business development campaigns. You will grow, oversee, and inspire a team of graphic designers to create visually appealing, on-brand, and on-strategy designs. team management and motivational skills are a must, as is the ability to articulate your ideas clearly.', - ], - responsibilities: [ - 'Lead the team to define and execute design based on our marketing and business development goals. ', - - 'Direct the creation of visuals and graphics for landing pages, brochures, ads, webinars, presentations, and more.', - - 'Oversee the day-to-day operations of the team. ', - - 'Organise the marketing design function, providing leadership and coaching to the team as needed.', - - 'Conceptualise and implement visual guidelines for various projects, balancing our style guide with stakeholder requirements.', - - 'Ensure that all design materials used across all marketing channels are optimised for planned goals', - ], - qualifications: [ - 'A university degree in visual communication, graphic design, multimedia, or any other related discipline', - - 'In-depth understanding of marketing fundamentals and best practices', - 'Superb design skills with an exceptional eye for detail', - - 'Awareness of cultural nuances and the need to adapt design according to a particular target market', - - 'Proven ability to manage a large number of tasks and projects at a given time', - - 'Strong oral and written English communication skills', - - 'Exceptional people management skills with proven ability to manage, lead, coach, and mentor your team', - - 'Experience conducting performance reviews, as well as recruiting and onboarding new team members', - ], - preferences: [ - 'Experience working on campaigns with a global reach in a creative agency will confer an advantage', - ], - }, - { - title: 'Digital Marketing Executive', - id: 'd1f8b707-1d69-4515-8884-e32982e2d702', - keywords: ['Digital Marketing Executive'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You are a creative thinker, an innovator, and a dependable member of the marketing team. You are skilled in creating campaigns that increase brand recognition, trust, and customer acquisition. Our ideal candidate has excellent verbal, written, and interpersonal communication skills.', - ], - responsibilities: [ - 'Develop in-depth knowledge of our target audience and company values.', - 'Assist in developing and managing digital marketing campaigns.', - 'Write marketing content drafts for a variety of channels. ', - 'Work with our copywriters and designers to optimise marketing content. ', - - 'Conceptualise, edit, and publish digital content such as videos, infographics, and posts.', - - 'Work on printed materials to supplement online products. ', - - 'Work with the Business Intelligence team to track and analyse website traffic flow and provide regular internal reports. ', - - 'Organise webinars and webcasts. ', - - 'Identify new trends in digital marketing, evaluate new technologies, and ensure that our brand is at the forefront of industry developments in mobile marketing. ', - ], - qualifications: [ - 'A university degree in marketing, communications, or business', - - 'Familiar with Search Engine Optimisation (SEO), Pay-Per-Click (PPC), and Social Media Marketing concepts', - - 'Strong analytical and communication skills', - - 'A passion for being up-to-date on the latest digital marketing channels and tools', - - 'Good balance of creativity and analytical skills', - ], - }, - { - title: 'Chief Marketing Officer', - id: '2e8b5211-927b-4889-a94d-a226a33903ef', - keywords: ['Chief Marketing Officer'], - location: dubai.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will drive the business forward in terms of brand awareness, product adoption, and revenue by overseeing the planning, development, and execution of our marketing and business development operations worldwide.\n', - ], - responsibilities: [ - 'Oversee and organise a multi-disciplinary team comprising world-class talents in online marketing, communication, design, strategic partnerships, and more.', - - 'Define our global marketing strategy to accomplish specific goals and drive business growth.', - - 'Take ownership of marketing metrics that matter to the business, including those related to acquisition (CPA), conversion, retention, churn, lifetime value (CLV), and revenue.', - - 'Manage organic and paid marketing campaigns to meet our goals across the board.', - - 'Collaborate with the people who build our products to identify new ideas and opportunities.', - - 'Analyse data and generate meaningful insights that we can use to drive our marketing campaigns.', - - 'Establish KPIs for yourself and the rest of the team in line with company goals.', - ], - qualifications: [ - 'A university degree in marketing, business administration, or any other related discipline', - - 'High-level strategic, creative, and analytical thinking that leads to actionable tactics and results to drive business growth', - - 'Experience in various technical aspects of digital marketing, including SEO, PPC, A/B testing, conversion rate optimisation, content marketing, display advertising, funnel optimisation, and affiliate marketing –– plus all relevant metrics for each acquisition channel', - - 'Expertise in branding, communication, advertising, and design with strong project management skills to direct large marketing campaigns (both digital and non-digital) from start to finish', - - 'Advanced hands-on experience with Google’s data and marketing tools such as Marketing Platform, Ads, and Search Console', - - 'Experience with market research tools and methods to distil key consumer insights', - - 'Prior experience overseeing digital marketing for a gaming, forex, or online trading company', - - 'Strong oral and written English communication skills', - - 'Exceptional people management skills with proven ability to manage, lead, coach, and mentor your team', - - 'Experience conducting performance reviews, as well as recruiting and onboarding new team members', - ], - }, - { - title: 'Marketing Design Manager', - id: '8d79131f-648a-467b-9635-f40f6351179e', - keywords: ['Marketing Design Manager'], - location: dubai.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will be an effective problem solver and a conceptual thinker who is able to define the creative direction for our marketing and business development campaigns. You will grow, oversee, and inspire a team of graphic designers to create visually appealing, on-brand, and on-strategy designs. team management and motivational skills are a must, as is the ability to articulate your ideas clearly.', - ], - responsibilities: [ - 'Lead the Marketing Design team to define and execute design based on our marketing and business development goals. ', - - 'Direct the creation of visuals and graphics for landing pages, brochures, ads, webinars, presentations, videos content, gifs, tutorials and more.', - - 'Oversee the day-to-day operations of the Marketing Design team. ', - - 'Organise the marketing design function, providing leadership and coaching to the team as needed.', - - 'Conceptualise and implement visual guidelines for various projects, balancing our style guide with stakeholder requirements.', - - 'Ensure that all design materials used across all marketing channels are optimised for planned goals.', - ], - qualifications: [ - 'A university degree in visual communication, graphic design, multimedia, or any other related discipline', - - 'In-depth understanding of marketing fundamentals and best practices', - 'Superb design skills with an exceptional eye for detail', - - 'Awareness of cultural nuances and the need to adapt design according to a particular target market', - - 'Proven ability to manage a large number of tasks and projects at a given time', - - 'Strong oral and written English communication skills', - - 'Exceptional people management skills with proven ability to manage, lead, coach, and mentor your team', - - 'Experience conducting performance reviews, as well as recruiting and onboarding new team members', - ], - preferences: [ - 'Experience working on campaigns with a global reach in a creative agency will confer an advantage', - ], - }, - { - title: 'Global Affiliates and Introducing Broker Manager', - id: '31fac880-155e-4e8b-8433-655fe7571c27', - keywords: ['Global Affiliates and Introducing Broker Manager'], - location: dubai.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will drive growth and business development across high-potential markets around the world through strategic partnerships.', - ], - responsibilities: [ - 'Lead the team to initiate and nurture relationships with our business partners, such as affiliates, Introducing Brokers (IBs), payment agents, and third-party app developers.', - - 'Manage and coach the team, comprising team leads and country managers for each region: South America, the CIS, Asia, Africa, and Europe.', - - 'Define our global partnership strategy, from the channels and tools we use to our outreach and relationship management initiatives.', - - 'Conduct market research and competitor analysis to identify new markets to expand our partnership network.', - - 'Travel to key markets to establish new partnerships and support existing partners.', - - 'Collaborate with the marketing design and online communication teams to define branding, marketing, and messaging strategies to help our partners improve their user acquisition and retention efforts.', - ], - qualifications: [ - 'A university degree in marketing, business administration, or any other related discipline', - - 'At least 10 years of experience in affiliate marketing, business development, and other closely-related skills', - - 'Exceptional oral and written English communication skills', - 'Willingness to travel extensively to meet potential and existing partners', - 'Passion for meeting new people', - 'Friendly and approachable personality', - 'Ability to think critically and exercise good judgment in any situation', - ], - preferences: [ - 'Proficiency in an additional language', - 'Experience in the financial services industry\n', - ], - }, - { - title: 'Global Affiliates and Introducing Broker Executive', - id: '370677e3-e0d3-4644-9ff9-ae2c762440e4', - keywords: ['Global Affiliates and Introducing Broker Executive'], - location: dubai.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will be involved in engaging with our international affiliates to drive revenue growth in key markets. You will play a key role in sourcing, on-boarding, and earning the trust of new affiliates.', - ], - responsibilities: [ - 'Grow our affiliate networks in a highly-competitive industry.\nIdentify new growth opportunities, prospects, and competitors via market research and data analysis.', - - 'Generate meaningful insights that help you to source, recruit, and support affiliates that are aligned with our values and business strategies.', - - 'Make data-driven recommendations to increase affiliate performance. ', - - 'Monitor and analyse affiliate activity, using metrics such as number of conversions per affiliate.', - - 'Devise branding, marketing, and messaging strategies to help affiliates improve their\nclient acquisition and retention efforts.', - - 'Localise affiliate marketing tactics and promotional materials for designated\nmarkets to ensure maximum effectiveness and ROI.', - ], - qualifications: [ - 'A university degree in marketing, business administration, or any other related discipline.', - - 'Outstanding market research skills and a keen understanding of the consumer journey.', - - 'Experience in affiliate marketing, growth hacking, and business development.', - - 'Experience in using a wide range of digital marketing tools and affiliate management\nplatforms.', - - 'An assertive, sales-driven personality and the ability to adapt quickly and achieve\npowerful results.', - - 'Strong oral and written communication skills in English.', - 'Knowledge and experience in the financial services industry.', - 'A passion for finance and technology.', - ], - preferences: ['IT knowledge or experience', 'Proficiency in an additional language \n'], - }, - { - title: 'Global Affiliates and Introducing Broker Executive - Africa', - id: '956ddd91-adf3-49a6-94a5-ada84da21a93', - keywords: ['Global Affiliates and Introducing Broker Executive - Africa'], - location: dubai.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will be involved in engaging with our international affiliates to grow our affiliate networks in Africa, a highly-competitive industry. You will play a key role in sourcing, on-boarding, and earning the trust of new affiliates, and help us grow our brand.', - ], - responsibilities: [ - 'Identify new growth opportunities, prospects, and competitors via market research and data analysis.', - - ' Generate meaningful insights that help you to source, recruit, and support affiliates that are aligned with our values and business strategies.', - - 'Make data-driven recommendations to increase affiliate performance. ', - - 'Monitor and analyse affiliate activity, using metrics such as number of conversions per affiliate.', - - 'Devise branding, marketing, and messaging strategies to help affiliates improve their\nclient acquisition and retention efforts.', - - 'Localise affiliate marketing tactics and promotional materials for designated\nmarkets to ensure maximum effectiveness and ROI.', - ], - qualifications: [ - 'A university degree in marketing, business administration, or any other related discipline', - - 'Outstanding market research skills and a keen understanding of the consumer journey', - - 'Experience in affiliate marketing, growth hacking, and business development', - - 'Experience in using a wide range of digital marketing tools and affiliate management platforms', - - 'An assertive, sales-driven personality and the ability to adapt quickly and achieve powerful results', - - 'Strong oral and written communication skills in English', - 'Knowledge and experience in the financial services industry', - 'A passion for finance and technology', - 'Proficiency in French and/or African languages', - ], - preferences: ['IT knowledge or experience'], - }, - { - title: 'Search Engine Marketing Manager', - id: '33b64883-7668-4090-9ca4-514f1d338012', - keywords: ['Search Engine Marketing Manager'], - location: dubai.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will be directly involved in the marketing goals and objectives of the business. You will head our marketing initiatives and broaden our reach on search engine result pages using the most cost-effective methods. Attentiveness, thoughtfulness, and accuracy are crucial for success in this role.', - ], - responsibilities: [ - 'Research and analyse trends to identify the most cost-effective SEM methods.', - - 'Implement strategies to increase inbound traffic and build our online presence in target markets.', - - 'Thoroughly monitor our website traffic and tweak SEM campaigns to improve traffic i.e. ensure our website is listed within the first search results page of leading search engines.', - - 'Monitor and report on the progress and effectiveness of our SEM campaigns.', - 'Ensure our campaigns stay within budget.', - 'Work closely with other teams to achieve marketing objectives.', - ], - qualifications: [ - 'At least 1 year of experience in SEM', - 'Experience with advertising campaigns on Google, Yahoo, Bing, Yandex, etc', - 'Experience in working with semantic core and keyword optimisation', - - 'Familiar with advertising formulas such as conversion rate (CR), click-through rate (CTR), return on investment (ROI), lifetime value (LTV), average revenue per user (ARPU), etc', - - 'Good oral and written communication skills in English', - ], - preferences: [ - 'Education in the field of online marketing', - 'Experience in gaming or financial markets\n', - ], - }, - { - title: 'Social Media Marketing Manager', - id: '61ae40fa-7880-4704-a0bf-d913d5211aca', - keywords: ['Social Media Marketing Manager'], - location: dubai.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will be directly involved in the marketing goals and objectives of the business. You will head our marketing initiatives and broaden our reach on various social media platforms using the most cost-effective methods. Attentiveness, thoughtfulness, and accuracy are crucial for success in this role.', - ], - responsibilities: [ - 'Implement SMM campaigns across various social media channels. ', - - 'Drive short- and long-term lead generation strategies to improve lead quality and conversion in our target markets', - - 'Build awareness and online reputation of our brand on social media networks.', - - 'Monitor and report on the progress and effectiveness of our SMM campaigns.', - 'Work closely with other teams to support the enhancement of online assets.', - 'Drive continued innovation and best practice implementation.', - 'Research and analyse SMM campaigns by our competitors.', - ], - qualifications: [ - 'At least 1 year of experience in SMM', - 'Experience in running ads on YouTube, Facebook, Twitter, and Instagram', - 'Experience in marketing via Telegram, WhatsApp, Viber, and WeChat', - 'Experience in creating and implementing content plans', - 'Familiar with targeting and audience segmentation', - 'Ability to generate hypotheses and perform A/B testing', - 'Ability to collect and analyse statistics', - 'Ability to write interesting and competent ads in at least one language', - 'Good oral and written communication skills in English', - ], - preferences: ['Proficiency with other languages other than English'], - }, - { - title: 'Global Affiliates and Introducing Broker Executive - CIS countries', - id: '0576814b-3e18-44c2-abc6-7b799da07e3d', - keywords: ['Global Affiliates and Introducing Broker Executive - CIS countries'], - location: dubai.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will be involved in sourcing, on-boarding, and earning the trust of new affiliates, and help us grow our brand. You will help us grow our affiliate networks in the CIS countries, a highly competitive market. \n', - ], - responsibilities: [ - 'Identify new growth opportunities, prospects, and competitors via market research and data analysis.', - - 'Generate meaningful insights that help you to source, recruit, and support affiliates that\nare aligned with our values and business strategies.', - - 'Make data-driven recommendations to increase affiliate performance.', - - 'Monitor and analyse affiliate activity, using metrics such as the number of conversions per affiliate.', - - 'Devise branding, marketing, and content strategies to help affiliates improve their\nclient acquisition and retention efforts.', - - 'Localise affiliate marketing tactics and promotional materials for the CIS countries to ensure maximum effectiveness and ROI.', - ], - qualifications: [ - 'A university degree in marketing, business administration, or any other related discipline', - - 'Experience in affiliate marketing, growth hacking, and business development', - - 'Experience in using a wide range of digital marketing tools and affiliate management platforms', - - 'An assertive, sales-driven personality and the ability to adapt quickly and achieve powerful results', - - 'Strong oral and written communication skills in English and Russian', - 'Knowledge and experience in the financial services industry', - 'A passion for finance and technology', - ], - }, - { - title: 'Digital Marketing Executive', - id: 'a0765fa0-e054-4d42-a7f0-8d43e146aed4', - keywords: ['Digital Marketing Executive'], - location: dubai.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You are a creative thinker, an innovator, and a dependable member of the marketing team. You are skilled in creating campaigns that increase brand recognition, trust, and customer acquisition. Our ideal candidate has excellent verbal, written, and interpersonal communication skills.\n', - ], - responsibilities: [ - 'Develop in-depth knowledge of our target audience and company values.', - 'Assist in developing and managing digital marketing campaigns.', - 'Write marketing content drafts for a variety of channels. ', - 'Work with our copywriters and designers to optimise marketing content. ', - - 'Conceptualise, edit, and publish digital content such as videos, infographics, and posts', - - 'Work on printed materials to supplement online products. ', - - 'Work with the Business Intelligence team to track and analyse website traffic flow and provide regular internal reports. ', - - 'Organise webinars and webcasts. ', - - 'Identify new trends in digital marketing, evaluate new technologies, and ensure that our brand is at the forefront of industry developments in mobile marketing. ', - ], - qualifications: [ - 'A university degree in marketing, communications, or business', - - 'Familiar with Search Engine Optimisation (SEO), Pay-Per-Click (PPC), and Social Media Marketing concepts', - - 'Strong analytical and communication skills', - - 'A passion for being up-to-date on the latest digital marketing channels and tools', - - 'Good balance of creativity and analytical skills', - ], - }, - { - title: 'Marketing Design Manager', - id: '0800c02e-d93f-4b68-b4fe-ebf89e4f913f', - keywords: ['Marketing Design Manager'], - location: dubai.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will be an effective problem solver and a conceptual thinker who is able to define the creative direction for our marketing and business development campaigns. You will grow, oversee, and inspire a team of graphic designers to create visually appealing, on-brand, and on-strategy designs. team management and motivational skills are a must, as is the ability to articulate your ideas clearly.', - ], - responsibilities: [ - 'Lead the Marketing Design team to define and execute design based on our marketing and business development goals. ', - - 'Direct the creation of visuals and graphics for landing pages, brochures, ads, webinars, presentations, and more.', - - 'Oversee the day-to-day operations of the Marketing Design team. ', - - 'Organise the marketing design function, providing leadership and coaching to the team as needed.', - - 'Conceptualise and implement visual guidelines for various projects, balancing our style guide with stakeholder requirements.', - - 'Ensure that all design materials used across all marketing channels are optimised for planned goals.', - ], - qualifications: [ - 'A university degree in visual communication, graphic design, multimedia, or any other related discipline', - - 'In-depth understanding of marketing fundamentals and best practices', - 'Superb design skills with an exceptional eye for detail', - - 'Awareness of cultural nuances and the need to adapt design according to a particular target market', - - 'Proven ability to manage a large number of tasks and projects at a given time', - - 'Strong oral and written English communication skills', - - 'Exceptional people management skills with proven ability to manage, lead, coach, and mentor your team', - - 'Experience conducting performance reviews, as well as recruiting and onboarding new team members', - ], - preferences: [ - 'Experience working on campaigns with a global reach in a creative agency will confer an advantage', - ], - }, - { - title: 'PPC Specialist', - id: '66ee1b0a-92e3-4447-8680-b34fab08a929', - keywords: ['PPC Specialist'], - location: dubai.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will be an analytical thinker who can recognise problems and opportunities by looking at data. You will also be a reliable decision-maker who is skilful at identifying and implementing effective improvements to achieve PPC goals. Our ideal candidate is a self-starter that exudes passion for their field and has a proven record of delivering PPC results. ', - ], - responsibilities: [ - 'Develop, manage, and maintain effective PPC strategies that translate into significant conversion rates.', - - 'Create strong ad campaigns on Google Ads and other advertising platforms.', - - 'Devise, monitor, and administer web analytics dashboards and key reporting tools.', - - 'Create relevant, exhaustive, and expansive keyword lists and prepare strategies for effective targeting, campaign structuring, and other aspects of paid search.', - - 'Optimise our keyword bids by analysing and improving PPC metrics such as cost per click (CPC), cost per acquisition (CPA), impression share, and quality score.', - - 'Propose plans for enhancing landing pages and devise tight keyword groups to attract the right customers.', - - 'Keep up-to-date with the latest PPC-related developments.', - ], - qualifications: [ - 'A university degree in marketing, communications, new media, or related fields', - - 'Excellent command of working with online advertising platforms such as Google Ads (formerly AdWords), Facebook, Twitter, and Bing', - - 'Strong analytical skills and hands-on experience with popular analytics tools such as Google Analytics, Metabase, Tableau, Open Web Analytics, Taplytics, and App Annie', - ], - preferences: [ - 'Certificate in Google Ads, YouTube Advertising, or Google Analytics', - 'Background in an international work environment\n', - ], - }, - { - title: 'Affiliate Marketing Manager', - id: '6aeb03ad-7c84-4c51-9654-5ab7c973ae03', - keywords: ['Affiliate Marketing Manager'], - location: asuncion.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will drive growth and business development across high-potential markets in South America.', - ], - responsibilities: [ - 'Grow our affiliate networks across South America.', - - 'Travel around the region to meet potential and existing affiliates on-site in their country of residence.', - - 'Perform market research and data analysis to uncover trends, prospects, and competitors that lead to new growth opportunities.', - - 'Generate meaningful insights that help you to find, recruit, and train affiliates that are aligned with our values and business strategies.', - - 'Monitor and analyse affiliate activity, track important data and metrics such as the number of conversions per affiliate, and make data-driven recommendations to increase affiliate performance.', - - 'Devise branding, marketing, and messaging strategies to help affiliates improve their user acquisition and retention efforts.', - - 'Localise affiliate marketing tactics and promotional materials for your designated markets to ensure maximum effectiveness and ROI.', - ], - qualifications: [ - 'University degree in marketing, business administration, or any other related discipline', - - 'At least 5 years of experience in affiliate marketing, growth hacking, business development, and other closely-related skills', - - 'Exceptional oral and written communication skills in English and Spanish', - 'Passion for e-commerce or online trading', - 'Friendly and approachable personality', - 'Proactive and get-things-done approach to working', - 'Ability to think critically and exercise good judgment in any situation', - ], - preferences: [ - 'Proficiency in Portuguese', - 'Experience in the financial services industry\n', - ], - }, - { - title: 'Search Engine Marketing Manager', - id: 'c96fac67-94d1-428f-955d-29bef6f99140', - keywords: ['Search Engine Marketing Manager'], - location: asuncion.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will be directly involved in the marketing goals and objectives of the business. You will head our marketing initiatives and broaden our reach on search engine result pages using the most cost-effective methods. Attentiveness, thoughtfulness, and accuracy are crucial for success in this role.', - ], - responsibilities: [ - 'Research and analyse trends to identify the most cost-effective SEM methods.', - - 'Implement strategies to increase inbound traffic and build our online presence in target markets.', - - 'Thoroughly monitor our website traffic and tweak SEM campaigns to improve traffic i.e. ensure our website is listed within the first search results page of leading search engines.', - - 'Monitor and report on the progress and effectiveness of our SEM campaigns.', - 'Ensure our campaigns stay within budget.', - 'Work closely with other teams to achieve marketing objectives.', - ], - qualifications: [ - 'At least 1 year of experience in SEM', - 'Experience with advertising campaigns on Google, Yahoo, Bing, Yandex, etc.', - 'Experience in working with semantic core and keyword optimisation', - - 'Familiar with advertising formulas such as conversion rate (CR), click-through rate (CTR), return on investment (ROI), lifetime value (LTV), average revenue per user (ARPU), etc.', - - 'Good oral and written communication skills in English', - ], - preferences: [ - 'Education in the field of online marketing', - 'Experience in gaming or financial markets\n', - ], - }, - { - title: 'Social Media Marketing Manager', - id: '1c554803-3a6f-4e48-97ed-2bcba6ccce9f', - keywords: ['Social Media Marketing Manager'], - location: asuncion.name, - type: [job_types.full_time], - team: 'marketing', - description: [ - 'You will be directly involved in the marketing goals and objectives of the business. You will head our marketing initiatives and broaden our reach on various social media platforms using the most cost-effective methods. Attentiveness, thoughtfulness, and accuracy are crucial for success in this role.', - ], - responsibilities: [ - 'Implement SMM campaigns across various social media channels. ', - - 'Drive short- and long-term lead generation strategies to improve lead quality and conversion in our target markets', - - 'Build awareness and online reputation of our brand on social media networks.', - - 'Monitor and report on the progress and effectiveness of our SMM campaigns.', - 'Work closely with other teams to support the enhancement of online assets.', - 'Drive continued innovation and best practice implementation.', - 'Research and analyse SMM campaigns by our competitors.', - ], - qualifications: [ - 'At least 1 year of experience in SMM', - 'Experience in running ads on YouTube, Facebook, Twitter, and Instagram', - 'Experience in marketing via Telegram, WhatsApp, Viber, and WeChat', - 'Experience in creating and implementing content plans', - 'Familiar with targeting and audience segmentation', - 'Ability to generate hypotheses and perform A/B testing', - 'Ability to collect and analyse statistics', - 'Ability to write interesting and competent ads in at least one language', - 'Good oral and written communication skills in English', - ], - preferences: ['Proficiency with other languages other than English'], - }, - { - title: 'Marketing Executive', - id: '7c7f74c4-8f7d-4f6f-ad8e-548e02f74ca3', - keywords: ['Marketing Executive'], - location: asuncion.name, - type: [job_types.full_time], - team: 'marketing', - description: ['You will create and execute online PPC campaigns.'], - responsibilities: [ - 'Plan, coordinate, and execute a wide range of promotional campaigns through various channels, including social media, blogs, emails, etc.', - - 'Promote our business by establishing long-term relationships with new and existing affiliates and partners.', - - 'Define key metrics to monitor and report on the performance of promotional campaigns and channels. ', - - 'Assess current trends and brand awareness through market research and analytics.', - - 'Use data and analytics to develop new marketing initiatives and strengthen conversion and engagement.', - - 'Resolve enquiries directed to the Marketing team by affiliates and other stakeholders. ', - - 'Deliver a quality brand image by continually monitoring branding operations across marketing materials.', - ], - qualifications: [ - 'University degree in marketing, journalism, communication, or a business-related discipline', - - 'Exceptional English communication skills (both oral and written)', - 'Knowledge of affiliate marketing and email marketing', - ], - preferences: [ - 'Experience in the financial services industry', - 'Experience in content writing', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_other.ts b/src/pages/careers/_model/_open-positions/_other.ts deleted file mode 100644 index 05e03789557..00000000000 --- a/src/pages/careers/_model/_open-positions/_other.ts +++ /dev/null @@ -1,100 +0,0 @@ -import { melaka, ipoh } from '../_locations/_locations' -import { job_types } from '../_job_types/_job_types' - -export const other_positions = [ - { - title: 'Head of Office', - id: '15875000-c55b-43d9-b69d-1654822faa3b', - keywords: ['Head of Office'], - location: melaka.name, - type: [job_types.full_time], - description: [ - 'You will apply your knowledge, experience, and skills to build and lead a strong, dedicated team. Collaborating seamlessly with our main office at Cyberjaya, you will create a workforce that can secure customer satisfaction and handle accounting and payment processes with precision and care. Your role will be pivotal in developing our Melaka office into an efficient shared service provider that will help our companies around the world to achieve organisational goals and secure customer engagement to reach long-term loyalty.', - ], - responsibilities: [ - 'Be the inspiring leader that will drive the Melaka office to continuously improve customer experience, accounting operations, and payment processes.', - - 'Recruit dynamic, talented, and committed teams and train them to get a firm understanding of our products and services, clients’ needs, payments procedures, and accounting requirements.', - - 'Recognise trends and key performance indicators using customer feedback data to enhance customer satisfaction and improve our response times.', - - 'Take responsibility for all day-to-day operations, make high-level decisions, and lead a motivated team.', - - 'Identify and recommend process improvements to improve prioritisation efficiency in the customer support funnel.', - - 'Design and manage payment operations processes according to clients’ needs and our business strategies.', - - 'Ensure that the accounting team delivers accurate and timely reports, observing high accounting standards and using reliable data.', - - 'Constantly assess and improve your operational approach to our shared service model processes and tools.', - - "Work closely with the leadership team to strategise and develop the Deriv Group's short-, mid-, and long-term strategic business objectives, missions, and visions.", - - 'Foster effective communication with the other Deriv Group offices as needed.', - - 'Promote a supportive work environment and cultivate a thriving office culture.', - ], - qualifications: [ - 'A university degree in any related field', - - 'More than 5 years of staff management experience', - - 'More than 7 years of Customer Support experience', - - 'Excellent project management skills', - - 'Firm understanding of Customer Support processes', - - 'Outstanding communication skills, both verbal and written', - ], - preferences: ['Good understanding of IT concepts', 'Work experience in FinTech industry'], - }, - - { - title: 'Head of Office', - id: 'b061db99-013a-41e4-b66c-bfa6b4e1c4af', - keywords: ['Head of Office'], - location: ipoh.name, - type: [job_types.full_time], - description: [ - 'You will apply your knowledge, experience, and skills to build and lead a strong, dedicated team. Collaborating seamlessly with our main office at Cyberjaya, you will create a workforce that can secure customer satisfaction and handle accounting and payment processes with precision and care. Your role will be pivotal in developing our Ipoh office into an efficient shared service provider that will help our companies around the world to achieve organisational goals and secure customer engagement to reach long-term loyalty.', - ], - responsibilities: [ - 'Be the inspiring leader that will drive the Ipoh office to continuously improve customer experience, accounting operations, and payment processes.', - - 'Recruit dynamic, talented, and committed teams and train them to get a firm understanding of our products and services, clients’ needs, payments procedures, and accounting requirements.', - - 'Recognise trends and key performance indicators using customer feedback data to enhance customer satisfaction and improve our response times.', - - 'Take responsibility for all day-to-day operations, make high-level decisions, and lead a motivated team.', - - 'Identify and recommend process improvements to improve prioritisation efficiency in the customer support funnel.', - - 'Design and manage payment operations processes according to clients’ needs and our business strategies.', - - 'Ensure that the accounting team delivers accurate and timely reports, observing high accounting standards and using reliable data.', - - 'Constantly assess and improve your operational approach to our shared service model processes and tools.', - - "Work closely with the leadership team to strategise and develop the Deriv Group's short-, mid-, and long-term strategic business objectives, missions, and visions.", - - 'Foster effective communication with the other Deriv Group offices as needed.', - - 'Promote a supportive work environment and cultivate a thriving office culture.', - ], - qualifications: [ - 'A university degree in any related field', - - 'More than 5 years of staff management experience', - - 'More than 7 years of Customer Support experience', - - 'Excellent project management skills', - - 'Firm understanding of Customer Support processes', - - 'Outstanding communication skills, both verbal and written', - ], - preferences: ['Good understanding of IT concepts', 'Work experience in FinTech industry'], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_product-design.ts b/src/pages/careers/_model/_open-positions/_product-design.ts deleted file mode 100644 index 1dfb2866ae4..00000000000 --- a/src/pages/careers/_model/_open-positions/_product-design.ts +++ /dev/null @@ -1,173 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, dubai, asuncion, malta } from '../_locations/_locations' - -export const product_design_positions = [ - { - title: 'Graphic Designer - Marketing', - id: '258e889d-c246-4b77-9732-32f773f2ff81', - keywords: ['Graphic Designer - Marketing'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'product-design', - description: [ - 'You will be an experienced and motivated designer who can deliver visually appealing, on-brand, and on-strategy designs for marketing and business development campaigns. You’ll take ownership of project details, timelines, and creative solutions, incorporating feedback and art direction to enhance your work. A successful candidate is a great communicator, detail-oriented, and highly creative.', - ], - responsibilities: [ - 'Create designs for print and digital, including landing pages, brochures, ads, webinars, presentations, and more.', - 'Work with the Content team to ensure that copy and design combine effectively to achieve campaign goals.', - 'Collaborate with the Product Design team to further develop our brand. ', - 'Ensure a consistent look and appeal of the company design principles through our style guide. ', - 'Work with the Business Intelligence team to explore qualitative and quantitative data to influence design decisions. ', - ], - qualifications: [ - 'A university degree in Visual Communication, Graphic Design, Multimedia, or any other related discipline', - 'Superb design skills with an exceptional eye for detail', - 'Remarkable skills in digital and social media design', - 'Strong understanding of typography', - 'Ability to adapt designs based on the customer’s context, emotions, goals and motivations ', - 'In-depth knowledge of marketing fundamentals and best practices', - 'Strong oral and written English communication skill', - ], - preferences: ['Experience working on campaigns with a global reach '], - }, - { - title: 'Graphic Designer', - id: '76acb25f-1709-4ad0-8d31-c09382cc1ab3', - keywords: ['Graphic Designer'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'product-design', - description: [ - 'You will produce captivating designs that will inform the audience and call them to action. With your keen eye for aesthetics, you will conceptualise creative solutions for visual challenges. You will play an essential role in building the user interface that brings our products and users together.\n', - ], - responsibilities: [ - 'Develop the design rationale and explain visual choices to cross-functional teams\nverbally and visually.', - - 'Produce high-quality visual designs, including icons, graphics, and marketing\nmaterials, for desktop, web, and mobile devices with various resolutions.', - - 'Create designs that emphasise our brand, reflect our voice, and inject beauty and\nlife into our products.', - - 'Lay out mockups and wireframes for app screens and web pages. ', - - 'Collaborate with the Content team to create cohesive designs that will amplify the verbal message.', - - 'Keep up with the latest trends and techniques in design, UI, and UX.', - ], - qualifications: [ - 'BA/BS in Design (e.g. Human-computer Interaction, Graphic, Visual Communication, Product, or Industrial Design) or equivalent practical experience', - - 'Experience with design systems that work across a complex product', - 'Interaction design sensibility', - 'Proficiency in Adobe Photoshop, Illustrator, InDesign, and Sketch 3.0', - - 'Strong core skills in establishing visual hierarchy, layout, typography, and colour\neffectively and use visual design to organise information and guide people\nthrough tasks', - - 'Ability to create style guides to be used cross-functionally', - ], - }, - { - title: 'Graphic Designer - Marketing', - id: 'fd8819b4-5093-415e-ba7e-bc22d8c600eb', - keywords: ['Graphic Designer - Marketing'], - location: dubai.name, - type: [job_types.full_time], - team: 'product-design', - description: [ - 'You will be an experienced and motivated designer who can deliver visually appealing, on-brand, and on-strategy designs for marketing and business development campaigns. You’ll take ownership of project details, timelines, and creative solutions, incorporating feedback and art direction to enhance your work. A successful candidate is a great communicator, detail-oriented, and highly creative.', - ], - responsibilities: [ - 'Create designs for print and digital, including landing pages, brochures, ads, webinars, presentations, and more.', - - 'Work with the Content team to ensure that copy and design combine effectively to achieve campaign goals.', - - 'Collaborate with the Product Design team to further develop our brand. ', - - 'Ensure a consistent look and appeal of the company design principles through our style guide. ', - - 'Work with the Business Intelligence team to explore qualitative and quantitative data to influence design decisions. \n', - ], - qualifications: [ - 'A university degree in Visual Communication, Graphic Design, Multimedia, or any other related discipline', - - 'Superb design skills with an exceptional eye for detail', - 'Remarkable skills in digital and social media design', - 'Strong understanding of typography', - - 'Ability to adapt designs based on the customer’s context, emotions, goals and motivations ', - - 'In-depth knowledge of marketing fundamentals and best practices', - 'Strong oral and written English communication skills', - ], - preferences: ['Experience working on campaigns with a global reach '], - }, - { - title: 'Graphic Designer', - id: 'bdfcb7ed-83f5-47fa-92f3-5bdc1ed2c724', - keywords: ['Graphic Designer'], - location: asuncion.name, - type: [job_types.full_time], - team: 'product-design', - description: [ - 'You will produce captivating designs that will inform the audience and call them to action. With your keen eye for aesthetics, you will conceptualise creative solutions for visual challenges. You will play an essential role in building the user interface that brings our products and users together.\n', - ], - responsibilities: [ - 'Develop the design rationale and explain visual choices to cross-functional teams\nverbally and visually.', - - 'Produce high-quality visual designs, including icons, graphics, and marketing\nmaterials, for desktop, web, and mobile devices with various resolutions.', - - 'Create designs that emphasise our brand, reflect our voice, and inject beauty and\nlife into our products.', - - 'Lay out mockups and wireframes for app screens and web pages. ', - - 'Collaborate with the Content team to create cohesive designs that will amplify the verbal message.', - - 'Keep up with the latest trends and techniques in design, UI, and UX.', - ], - qualifications: [ - 'BA/BS in Design (e.g. Human-computer Interaction, Graphic, Visual Communication, Product, or \nIndustrial Design) or equivalent practical experience', - - 'Experience with design systems that work across a complex product', - 'Interaction design sensibility', - 'Proficiency in Adobe Photoshop, Illustrator, InDesign, and Sketch 3.0', - - 'Strong core skills in establishing visual hierarchy, layout, typography, and colour\neffectively and use visual design to organise information and guide people\nthrough tasks', - - 'Ability to create style guides to be used cross-functionally', - ], - }, - { - title: 'Graphic Designer', - id: 'da137a9f-41ea-424e-aae6-0777eab1a3a0', - keywords: ['Graphic Designer'], - location: malta.name, - type: [job_types.full_time], - team: 'product-design', - description: [ - 'You will produce captivating designs that will inform the audience and call them to action. With your keen eye for aesthetics, you will conceptualise creative solutions for visual challenges. You will play an essential role in building the user interface that brings our products and users together.\n', - ], - responsibilities: [ - 'Develop the design rationale and explain visual choices to cross-functional teams\nverbally and visually.', - - 'Produce high-quality visual designs, including icons, graphics, and marketing\nmaterials, for desktop, web, and mobile devices with various resolutions.', - - 'Create designs that emphasise our brand, reflect our voice, and inject beauty and\nlife into our products.', - - 'Lay out mockups and wireframes for app screens and web pages. ', - - 'Collaborate with the Content team to create cohesive designs that will amplify the verbal message.', - - 'Keep up with the latest trends and techniques in design, UI, and UX.', - ], - qualifications: [ - 'BA/BS in Design (e.g. Human-computer Interaction, Graphic, Visual Communication, Product, or \nIndustrial Design) or equivalent practical experience', - - 'Experience with design systems that work across a complex product', - 'Interaction design sensibility', - 'Proficiency in Adobe Photoshop, Illustrator, InDesign, and Sketch 3.0', - - 'Strong core skills in establishing visual hierarchy, layout, typography, and colour effectively and use visual design to organise information and guide people through tasks', - - 'Ability to create style guides to be used cross-functionally', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_project-management.ts b/src/pages/careers/_model/_open-positions/_project-management.ts deleted file mode 100644 index 1ca6173cd9a..00000000000 --- a/src/pages/careers/_model/_open-positions/_project-management.ts +++ /dev/null @@ -1,79 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, dubai } from '../_locations/_locations' - -export const project_management_positions = [ - { - title: 'Senior Project Manager', - id: 'b6f45666-6ab0-41c0-a52a-9e214976b4e8', - keywords: ['Senior Project Manager'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'project-management', - description: [ - 'You will plan and initiate projects, direct project execution, and ensure that the final result meets client expectations and our standards. You will devise strategies for the efficient collaboration of different departments to achieve excellent results.\n', - ], - responsibilities: [ - 'Conduct the day-to-day management of our projects to deliver project goals on schedule, within budget, and of the highest quality.', - - 'Establish the efficient assignment of resources, the clear definition of responsibilities, and maintain communication across collaborating teams.', - - 'Manage conflict and resolve disputes with tact, and keep teams motivated. ', - 'Ensure rigorous quality control for all products.', - 'Identify potential roadblocks and create resolution strategies.', - - 'Collaborate with all the departments and management to make sure that projects are progressing in sync with our short- and long-term goals', - ], - qualifications: [ - 'University degree in an IT- or business-related field', - 'More than 5 years of work experience', - 'Decision-making, team-building, and problem-solving skills', - - 'Strong tendency to take initiative, welcome responsibility, and cherish learning opportunities', - - 'Experience in conducting end-to-end UX research, including usability testing and A/B testing', - ], - preferences: [ - 'Product design experience with a focus on financial software ', - 'Related certificates such as PMI and PRINCE2', - - 'Stellar record of managing projects from start to finish, on time, and within budget\n', - ], - }, - { - title: 'Senior Project Manager', - id: '4c4c9c5e-979c-49a1-a417-717dab4a0e0a', - keywords: ['Senior Project Manager'], - location: dubai.name, - type: [job_types.full_time], - team: 'project-management', - description: [ - 'You will plan and initiate projects, direct project execution, and ensure that the final result meets client expectations and our standards. You will devise strategies for the efficient collaboration of different departments to achieve excellent results.', - ], - responsibilities: [ - 'Conduct the day-to-day management of our projects to deliver project goals on schedule, within budget, and of the highest quality.', - - 'Establish the efficient assignment of resources, the clear definition of responsibilities, and maintain communication across collaborating teams.', - - 'Manage conflict and resolve disputes with tact, and keep teams motivated. ', - 'Ensure rigorous quality control for all products.', - 'Identify potential roadblocks and create resolution strategies.', - - 'Collaborate with all the departments and management to make sure that projects are progressing in sync with our short- and long-term goals', - ], - qualifications: [ - 'University degree in an IT- or business-related field', - 'More than 5 years of work experience', - 'Decision-making, team-building, and problem-solving skills', - - 'Strong tendency to take initiative, welcome responsibility, and cherish learning opportunities', - - 'Experience in conducting end-to-end UX research, including usability testing and A/B testing', - ], - preferences: [ - 'Product design experience with a focus on financial software ', - 'Related certificates such as PMI and PRINCE2', - - 'Stellar record of managing projects from start to finish, on time, and within budget', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_quality-assurance.ts b/src/pages/careers/_model/_open-positions/_quality-assurance.ts deleted file mode 100644 index bf5a1b41335..00000000000 --- a/src/pages/careers/_model/_open-positions/_quality-assurance.ts +++ /dev/null @@ -1,138 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { dubai, labuan, cyberjaya } from '../_locations/_locations' - -export const quality_assurance_positions = [ - { - title: 'Software Tester', - id: 'ffb327f8-6b17-46a3-a302-10b4b4a9b8d0', - keywords: ['Software Tester'], - location: dubai.name, - type: [job_types.full_time], - team: 'quality-assurance', - description: [ - 'You will engage in quality control throughout the product development lifecycle of all our products, services and systems. You will help come up with test plans and ensure their execution on each stage, from planning until release. We process over a million transactions per day, and we need you to help deliver the best version of every product, fully optimised, free from bugs, and polished for client utilisation. \n', - ], - responsibilities: [ - 'Perform high-quality automated and manual tests on our website, applications, backend infrastructure, and related systems.', - - 'Collaborate closely with the rest of the QA and IT teams to create, design, and run several types of testing based on different objectives.', - - 'Integrate various types of testing into our existing workflows, both internal and external.', - - 'Ensure the integrity of releases by coordinating testing procedures and activities.', - - 'Track and keep a detailed record of every bug that you discover.', - - 'Identify, document, and investigate issues reported by our clients and the Client Support team.', - - 'Replicate reported issues and work with our IT teams to find the root cause, understand the problem, and help come up with solutions.', - ], - qualifications: [ - 'Bachelor’s degree in computer science, or an equivalent combination of technical education, training, and work experience', - - 'Ability to write high-quality, self-documenting code using test-driven development techniques', - - 'Minimum of two years experience in a software or web application testing role', - - 'Experience in designing and executing test plans (both automated and manual)', - - 'Experience with agile development methods such as Scrum or Kanban', - 'Passion for Linux and other open-source platforms', - 'Familiarity with Git', - ], - preferences: [ - 'Experience with Postgres or another RDBMS', - 'Extensive knowledge of JavaScript , AJAX, JSON, and CSS', - - 'Proficiency with one or more programming languages, such as Python, PHP, C/C++, or Perl (preferred)', - ], - }, - { - title: 'Software Tester', - id: 'a2fe71d7-6e3f-41b7-9a0a-f9f05be4a5f4', - keywords: ['Software Tester'], - location: labuan.name, - type: [job_types.full_time], - team: 'quality-assurance', - description: [ - 'You will engage in quality control throughout the product development lifecycle of all our products, services and systems. You will help come up with test plans and ensure their execution on each stage, from planning until release. We process over a million transactions per day, and we need you to help deliver the best version of every product, fully optimised, free from bugs, and polished for client utilisation. ', - ], - responsibilities: [ - 'Perform high-quality automated and manual tests on our website, applications, backend infrastructure, and related systems.', - - 'Collaborate closely with the rest of the QA and IT teams to create, design, and run several types of testing based on different objectives.', - - 'Integrate various types of testing into our existing workflows, both internal and external.', - - 'Ensure the integrity of releases by coordinating testing procedures and activities.', - - 'Track and keep a detailed record of every bug that you discover.', - 'Identify, document, and investigate issues reported by our clients.', - - 'Replicate reported issues and work with our IT teams to find the root cause, understand the problem, and help come up with solutions.', - ], - qualifications: [ - 'Bachelor’s degree in computer science, or an equivalent combination of technical education, training, and work experience', - - 'Ability to write high-quality, self-documenting code using test-driven development \ntechniques', - - 'Minimum of two years experience in a software or web application testing role', - - 'Experience in designing and executing test plans (both automated and manual)', - - 'Experience with agile development methods such as Scrum or Kanban', - 'Passion for Linux and other open-source platforms', - 'Familiarity with Git', - ], - preferences: [ - 'Experience with Postgres or another RDBMS', - 'Extensive knowledge of JavaScript, AJAX, JSON, and CSS', - - 'Proficiency with one or more programming languages, such as Python, PHP, C/C++, or Perl (preferred)\n', - ], - }, - { - title: 'Software Tester', - id: '5ec747d3-ba6e-447e-81da-228b40b98184', - keywords: ['Software Tester'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'quality-assurance', - description: [ - 'You will engage in quality control throughout the product development lifecycle of all our products, services and systems. You will help come up with test plans and ensure their execution on each stage, from planning until release. We process over a million transactions per day, and we need you to help deliver the best version of every product, fully optimised, free from bugs, and polished for client utilisation. ', - ], - responsibilities: [ - 'Perform high-quality automated and manual tests on our website, applications, backend infrastructure, and related systems.', - - 'Collaborate closely with the rest of the QA and IT teams to create, design, and run several types of testing based on different objectives.', - - 'Integrate various types of testing into our existing workflows, both internal and external.', - - 'Ensure the integrity of releases by coordinating testing procedures and activities.', - - 'Track and keep a detailed record of every bug that you discover.', - 'Identify, document, and investigate issues reported by our clients.', - - 'Replicate reported issues and work with our IT teams to find the root cause, understand the problem, and help come up with solutions.', - ], - qualifications: [ - 'Bachelor’s degree in computer science, or an equivalent combination of technical education, training, and work experience', - - 'Ability to write high-quality, self-documenting code using test-driven development techniques', - - 'Minimum of two years experience in a software or web application testing role', - - 'Experience in designing and executing test plans (both automated and manual)', - - 'Experience with agile development methods such as Scrum or Kanban', - 'Passion for Linux and other open-source platforms', - 'Familiarity with Git', - ], - preferences: [ - 'Experience with Postgres or another RDBMS', - 'Extensive knowledge of JavaScript, AJAX, JSON, and CSS', - - 'Proficiency with one or more programming languages, such as Python, PHP, C/C++, or Perl (preferred)\n', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_quants.ts b/src/pages/careers/_model/_open-positions/_quants.ts deleted file mode 100644 index be7bc65f3cf..00000000000 --- a/src/pages/careers/_model/_open-positions/_quants.ts +++ /dev/null @@ -1,127 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { cyberjaya, malta } from '../_locations/_locations' - -export const quants_positions = [ - { - title: 'Quantitative Analyst', - id: '0c5258b7-30a7-4ebc-aa14-30b05f2a1d08', - keywords: ['Quantitative Analyst'], - location: cyberjaya.name, - type: [job_types.full_time], - team: 'quants', - description: [ - 'You will be involved in developing derivatives pricing, risk management models, and algorithms. You will play a key role in the future growth, profitability, and risk management of the company. \nSince all transactions on our platform are fully automated, you will ensure that our pricing and risk management algorithms are robust, considering critical factors such as real-time pricing parameters, data feed irregularities, and latencies.\n', - ], - responsibilities: [ - 'Apply mathematical models to real-world scenarios.', - - 'Solve complex and abstract mathematical problems to optimise pricing and manage risk.', - - 'Analyse trading patterns to identify new market opportunities.', - - 'Communicate effectively with other team members to understand the big picture of the organisation and its goals.', - - 'Develop derivatives pricing, as well as risk management models and algorithms using C/C++, R, MATLAB, Perl, Python, etc.', - - 'Review, develop, and enhance options pricing, volatility forecasts, and risk management programs.', - - 'Perform data mining using SQL databases, R/S-Plus, OLAP, and other analytical tools.', - - 'Monitor website trading activity and minimise abuse.', - 'Generate periodic and special reports that summarise client trading trends.', - ], - qualifications: [ - 'An advanced university degree in physics, financial engineering, or mathematics.', - - 'Knowledge of probability theory, stochastic calculus, numerical methods, Monte-Carlo simulation, differential equations, econometrics, derivatives pricing, and statistical modelling.', - - 'Experience in using financial information sources such as Bloomberg and Reuters.', - - 'Expertise in the application of object-oriented programming languages (C++ and Perl), coupled with the ability to produce high-quality code.', - ], - }, - { - title: 'Quantitative Analyst', - id: '7edf8b37-52f0-4a3d-a7ac-e9253105e708', - keywords: ['Quantitative Analyst'], - location: malta.name, - type: [job_types.full_time], - team: 'quants', - description: [ - 'You will be involved in developing derivatives pricing, risk management models, and algorithms. You will play a key role in the future growth, profitability, and risk management of the company. \nSince all transactions on our platform are fully automated, you will ensure that our pricing and risk management algorithms are robust, considering critical factors such as real-time pricing parameters, data feed irregularities, and latencies.\n', - ], - responsibilities: [ - 'Apply mathematical models to real-world scenarios.', - - 'Solve complex and abstract mathematical problems to optimise pricing and manage risk.', - - 'Analyse trading patterns to identify new market opportunities.', - - 'Communicate effectively with other team members to understand the big picture of the organisation and its goals.', - - 'Develop derivatives pricing, as well as risk management models and algorithms using C/C++, R, MATLAB, Perl, Python, etc.', - - 'Review, develop, and enhance options pricing, volatility forecasts, and risk management programs.', - - 'Perform data mining using SQL databases, R/S-Plus, OLAP, and other analytical tools.', - - 'Monitor website trading activity and minimise abuse.', - 'Generate periodic and special reports that summarise client trading trends.', - ], - qualifications: [ - 'An advanced university degree in physics, financial engineering, or mathematics.', - - 'Knowledge of probability theory, stochastic calculus, numerical methods, Monte-Carlo simulation, differential equations, econometrics, derivatives pricing, and statistical modelling.', - - 'Experience in using financial information sources such as Bloomberg and Reuters.', - - 'Expertise in the application of object-oriented programming languages (C++ and Perl), coupled with the ability to produce high-quality code.', - ], - }, - { - title: 'Senior Financial Market Analyst', - id: 'ef0e7cd0-acb4-4177-9bef-6e41a910796a', - keywords: ['Senior Financial Market Analyst'], - location: malta.name, - type: [job_types.full_time], - team: 'quants', - description: [ - 'You will manage the day-to-day risk of our trading books, conduct complex quantitative analysis, carry out performance testing, develop advanced data analytics tools, and support other related operations that have a direct impact on the profitability and future growth of our company. This includes decisions on new markets to launch in, and the spreads and margins we might offer. You must also be able to analyse and interpret large volumes of data and communicate your research and findings in a clear and concise manner.\n', - ], - responsibilities: [ - 'Create mathematical/statistical models for pricing, analyse fat tails to assess margin requirements, and manage the risk for exotic options, Forex, and CFDs.', - - 'Create data analytics tools for trading/quantitative analysis.', - - 'Conduct performance testing including backtesting, stress testing analysis, and benchmarking.', - - 'Develop risk management models and algorithms using MATLAB/Python/R/C++.', - 'Manage the day-to-day risk of our trading books.', - - 'Set up liquidity connections via bridges and gateways for MT4 and MT5 brokers.', - - 'Conduct research on competitors and industry trends to identify new products and potential markets.', - - 'Develop mathematical/statistical models for pricing and risk management for all products.', - - 'Use advanced data analytics skills to study trends/pattern in financial markets.', - - 'Help in developing advanced risk management tools for various markets (forex, equities, commodities).', - - 'Prepare daily, weekly, and monthly financial reports.', - - 'Generate periodic and special reports on client trading activity and significant trends that impact our client behaviour.', - ], - qualifications: [ - 'An advanced university degree in physics, financial engineering, or mathematics is preferred', - - 'Experience in Forex spot trading or exotic options pricing, volatility forecasts, high-frequency trading, and the analysis of market inefficiencies', - - 'Firm grasp of advanced risk management concepts, including hedging, Greeks (first and second generation), Value at Risk models, and others', - - 'Experience in using financial information sources such as Bloomberg and Reuters', - - 'Strong analytical skills and the ability to communicate your findings in a clear, concise, and effective manner', - ], - }, -] diff --git a/src/pages/careers/_model/_open-positions/_security.ts b/src/pages/careers/_model/_open-positions/_security.ts deleted file mode 100644 index ca551df22bf..00000000000 --- a/src/pages/careers/_model/_open-positions/_security.ts +++ /dev/null @@ -1 +0,0 @@ -export const security_positions = [] diff --git a/src/pages/careers/_model/_open-positions/_system-integrator.ts b/src/pages/careers/_model/_open-positions/_system-integrator.ts deleted file mode 100644 index 1ab0e281602..00000000000 --- a/src/pages/careers/_model/_open-positions/_system-integrator.ts +++ /dev/null @@ -1,85 +0,0 @@ -import { job_types } from '../_job_types/_job_types' -import { malta, labuan } from '../_locations/_locations' - -export const system_integrator_positions = [ - { - title: 'Systems Integrator', - id: '78fac39f-bb6f-4d4c-a05e-c27ceb772603', - keywords: ['Systems Integrator'], - location: malta.name, - type: [job_types.full_time], - team: 'systems-integrator', - description: [ - 'You will make sure that our new products and services work in harmony with our current system. You will use your strong command of IT and keen interest in business to make unique contributions to high-impact projects and data analyses.\n', - ], - responsibilities: [ - 'Analyse the integration of the new APIs, crypto facilities, and other products and services.', - - 'Participate in devising innovative payments solution strategies by competitor mapping and analysis.', - - 'Maximise the efficacy of our existing partners within each market by using design, functionalities, source PSPs, regular partner reviews, and service level agreements.', - - 'Identify the best strategic partners to help us succeed in developing online solutions.', - - 'Prepare risk and fraud documentation for our third-party stakeholders.', - - 'Develop stable online infrastructure services that will support our cutting-edge products.', - - 'Collaborate with the Product team to achieve high-level business requirements.', - - 'Work closely with every department to facilitate a seamless introduction of new products and services. ', - ], - qualifications: [ - 'University degree in IT, business, or commerce', - - 'Firm understanding of payment processes and a lively interest in cryptocurrencies', - - 'Proficiency in Microsoft Excel\n', - ], - preferences: [ - 'Ability to analyse online financial transactions, particularly e-wallets and cryptocurrencies', - - 'Experience in software testing or QA \n', - ], - }, - { - title: 'Systems Integrator', - id: '210e00b1-5343-4f4b-931e-aa61a511f5f4', - keywords: ['Systems Integrator'], - location: labuan.name, - type: [job_types.full_time], - team: 'systems-integrator', - description: [ - 'You will make sure that our new products and services work in harmony with our current system. You will use your strong command of IT and keen interest in business to make unique contributions to high-impact projects and data analyses.\n', - ], - responsibilities: [ - 'Analyse the integration of the new APIs, crypto facilities, and other products and services.', - - 'Participate in devising innovative payments solution strategies by competitor mapping and analysis.', - - 'Maximise the efficacy of our existing partners within each market by using design, functionalities, source PSPs, regular partner reviews, and service level agreements.', - - 'Identify the best strategic partners to help us succeed in developing online solutions.', - - 'Prepare risk and fraud documentation for our third-party stakeholders.', - - 'Develop stable online infrastructure services that will support our cutting-edge products.', - - 'Collaborate with the Product team to achieve high-level business requirements.', - - 'Work closely with every department to facilitate a seamless introduction of new products and services. ', - ], - qualifications: [ - 'University degree in IT, business, or commerce', - - 'Firm understanding of payment processes and a lively interest in cryptocurrencies', - - 'Proficiency in Microsoft Excel\n', - ], - preferences: [ - 'Ability to analyse online financial transactions, particularly e-wallets and cryptocurrencies', - - 'Experience in software testing or QA \n', - ], - }, -] diff --git a/src/pages/dbot/_dbot-video.tsx b/src/pages/dbot/_dbot-video.tsx deleted file mode 100644 index 785493efda4..00000000000 --- a/src/pages/dbot/_dbot-video.tsx +++ /dev/null @@ -1,212 +0,0 @@ -import React from 'react' -import { graphql, useStaticQuery } from 'gatsby' -import styled, { css } from 'styled-components' -import { Localize, localize } from 'components/localization' -import { Header, QueryImage } from 'components/elements' -import device from 'themes/device' -import { LinkButton } from 'components/form' - -type StepCommonType = { - no_margin?: boolean -} - -type StepType = StepCommonType & { - current_step: string - image_name: string -} - -const query = graphql` - query { - step_1: file(relativePath: { eq: "dbot-video/dbot-step1.png" }) { - ...fadeIn - } - step_2: file(relativePath: { eq: "dbot-video/dbot-step2.png" }) { - ...fadeIn - } - step_3: file(relativePath: { eq: "dbot-video/dbot-step3.png" }) { - ...fadeIn - } - step_4: file(relativePath: { eq: "dbot-video/dbot-step4.png" }) { - ...fadeIn - } - step_5: file(relativePath: { eq: "dbot-video/dbot-step5.png" }) { - ...fadeIn - } - } -` -const Container = styled.section` - width: 100%; - display: flex; - flex-direction: row; - justify-content: flex-start; - margin-top: 4rem; - align-items: center; - - @media ${device.tabletL} { - flex-direction: column-reverse; - justify-content: center; - } -` -const Tab = styled.div` - width: 100%; - margin-top: 2.4rem; -` -const TabsWrapper = styled.div` - width: 40.7rem; - margin-right: 2.6rem; - - div:first-child { - margin-top: 0; - } - - @media ${device.tabletL} { - width: 80%; - margin: 2rem 0 0; - } - @media ${device.mobileL} { - width: 100%; - } -` -const VideoWrapper = styled.div` - max-width: 79.2rem; - width: 100%; -` -const StepCommon = css` - font-weight: 500; - cursor: pointer; - padding-left: 1.8rem; - @media ${device.tabletL} { - text-align: start; - border: none; - margin-top: ${(props) => (props.no_margin ? '0' : '2rem')}; - } -` -const Step = styled(Header)` - ${StepCommon} - ${(props) => - props.current_step === props.image_name - ? 'color: var(--color-black-3); border-left: 4px solid var(--color-red)' - : 'opacity: 0.2; border-left: 4px solid rgb(0, 0, 0, 0)'}; -` -const GoToLiveDemo = styled(LinkButton)` - border: 2px solid var(--color-red); - font-weight: bold; - line-height: 1.43; - width: fit-content; - margin-top: 4rem; - - @media ${device.tabletL} { - max-width: 100%; - margin: 4rem auto; - font-size: 1.75rem; - } -` -const GotoLiveWrapper = styled.div` - margin-top: 4rem; - - @media ${device.tabletL} { - margin: 4rem auto; - } -` - -const DtraderTabs = () => { - const data = useStaticQuery(query) - const [current_step, setStep] = React.useState('step_1') - const clickHandler = (incoming_step: string) => { - if (incoming_step === current_step) return - setStep(incoming_step) - } - - return ( - - - - clickHandler('step_1')} - > - - - - - clickHandler('step_2')} - > - - - - - clickHandler('step_3')} - > - - - - - clickHandler('step_4')} - > - - - - - clickHandler('step_5')} - > - - - - - - - - - - - - - - ) -} - -export default DtraderTabs diff --git a/src/pages/dtrader/_dtrader-tabs.tsx b/src/pages/dtrader/_dtrader-tabs.tsx deleted file mode 100644 index 2d220133d66..00000000000 --- a/src/pages/dtrader/_dtrader-tabs.tsx +++ /dev/null @@ -1,286 +0,0 @@ -import React from 'react' -import styled, { css } from 'styled-components' -import { Localize } from 'components/localization' -import { Header } from 'components/elements' -import { ReactComponent as Macbook } from 'images/svg/dtrader/macbook.svg' -import device from 'themes/device' -import { isBrowser } from 'common/utility' -import { LinkButton } from 'components/form' - -type StepCommonType = { - no_margin?: boolean -} - -const Container = styled.section` - width: 100%; - display: flex; - flex-direction: row; - justify-content: space-between; - align-items: flex-start; - margin-top: 4rem; - - @media ${device.tabletL} { - margin-top: 0; - flex-direction: column-reverse; - justify-content: center; - } -` -const Tab = styled.div` - width: 100%; - margin-top: 2.4rem; - @media ${device.tablet} { - margin-top: 0; - } -` -const TabsWrapper = styled.div` - display: flex; - flex-direction: column; - width: 100%; - max-width: 38.4rem; - margin-top: 6rem; - - div:first-child { - margin-top: 0; - } - @media ${device.tabletL} { - flex-direction: column; - justify-content: flex-start; - margin-top: 0; - } -` - -const StepCommon = css` - font-weight: 500; - cursor: pointer; - padding-left: 1.8rem; - @media ${device.tabletL} { - text-align: start; - border: none; - margin-top: ${(props) => (props.no_margin ? '0' : '2rem')}; - } -` -const Step = styled(Header)` - ${StepCommon} - margin-top: 0; - ${(props) => - props.start_time < props.current_time && props.current_time < props.end_time - ? 'color: var(--color-black-3); border-left: 4px solid var(--color-red)' - : 'opacity: 0.2; border-left: 4px solid rgb(0, 0, 0, 0)'}; - pointer-events: ${(props) => - props.start_time < props.current_time && props.current_time < props.end_time - ? ' none;' - : ''}; -` - -const VideoWrapper = styled.div` - position: relative; - width: 100%; - height: 49rem; - - @media ${device.mobileL} { - height: 24rem; - margin-top: 2rem; - } -` -const MacbookFrame = styled(Macbook)` - position: absolute; - width: 100%; - height: 100%; -` -const Video = styled.video` - position: absolute; - width: 77%; - top: 5.5%; - height: 77%; - left: 11.5%; -` -const GoToLiveDemo = styled(LinkButton)` - border: 2px solid var(--color-red); - font-weight: bold; - line-height: 1.43; - width: fit-content; - - @media ${device.tabletL} { - max-width: 100%; - font-size: 1.75rem; - } -` -const GotoLiveWrapper = styled.div` - margin-top: 4rem; - - @media ${device.tabletL} { - margin: 4rem auto; - } -` - -class DtraderTabs extends React.Component { - my_ref = React.createRef() - interval_ref = undefined - state = { - current_time: 0, - progress_percentage: 0, - transition: true, - handler: 0, - is_ios: true, - } - handler = async (entries) => { - let entry - for (entry of entries) { - if (entry.isIntersecting) { - if (!this.state.is_ios) { - this.updatePlay() - } - - this.my_ref.current.ontimeupdate = () => { - if (this.my_ref.current) { - this.setState({ - current_time: this.my_ref.current.currentTime, - }) - } - } - this.progressHandler() - this.interval_ref = window.setInterval(this.progressHandler, 300) - } else { - this.my_ref.current.pause() - window.clearInterval(this.interval_ref) - } - } - } - observer = isBrowser() && new IntersectionObserver(this.handler) - componentDidMount() { - const node = this.my_ref.current - this.updatePlay() - this.observer.observe(node) - - const is_ios = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window['MSStream'] - - this.setState({ is_ios }) - } - componentWillUnmount() { - window.clearInterval(this.interval_ref) - this.observer.disconnect() - } - - updatePlay = async () => { - if (!this.my_ref.current['is_playing']) { - try { - await this.my_ref.current.play() - } catch (err) { - // eslint-disable-next-line no-console - console.log(err) - } - } - } - componentDidUpdate(prev_props, prev_state) { - if (this.state.transition === false) { - requestAnimationFrame(() => { - this.setState({ - transition: true, - }) - }) - } - if (prev_state.handler !== this.state.handler) { - this.updatePlay() - } - } - clickHandler = (time) => { - this.my_ref.current.currentTime = time - this.my_ref.current.pause() - this.setState({ transition: false, handler: time }) - this.progressHandler() - } - progressHandler = () => { - this.setState({ - progress_percentage: Math.ceil( - (this.my_ref.current.currentTime * 100) / this.my_ref.current.duration, - ), - }) - } - - render() { - return ( - - - - { - this.clickHandler(0) - this.updatePlay() - }} - > - - - - - { - this.clickHandler(7) - this.updatePlay() - }} - > - - - - - { - this.clickHandler(13) - this.updatePlay() - }} - > - - - - - - - - - - - - - - - ) - } -} - -export default DtraderTabs