Path: blob/main/components/dashboard/src/onboarding/job-roles.ts
2500 views
/**1* Copyright (c) 2023 Gitpod GmbH. All rights reserved.2* Licensed under the GNU Affero General Public License (AGPL).3* See License.AGPL.txt in the project root for license information.4*/56export const JOB_ROLE_OTHER = "other";78export const getJobRoleOptions = () => {9return [10{ value: "", label: "Please select one" },11{ value: "software-eng", label: "Software Engineering" },12{ value: "data", label: "Data / Analytics" },13{ value: "academics", label: "Academia (Student, Researcher)" },14{ value: "enabling", label: "DevOps / Platform / DevX" },15{ value: "team-lead", label: "A Team Lead or Function Lead role" },16{ value: "devrel", label: "DevRel" },17{ value: "product-design", label: "Product" },18{ value: JOB_ROLE_OTHER, label: "Other" },19];20};212223