PromucFlow_constructor/app/client/src/pages/setup/constants.ts

64 lines
1.2 KiB
TypeScript
Raw Normal View History

export type OptionType = {
label?: string;
value?: string;
};
export const roleOptions: OptionType[] = [
{
2023-03-15 11:19:30 +00:00
label: "Frontend (HTML/JS/React)",
value: "frontend engineer",
},
{
2023-03-15 11:19:30 +00:00
label: "Backend (APIs/Databases)",
value: "backend engineer",
},
{
2023-03-15 11:19:30 +00:00
label: "Fullstack",
value: "fullstack engineer",
},
{
2023-03-15 11:19:30 +00:00
label: "SQL Queries & Basic Coding",
value: "business analyst",
},
{
2023-03-15 11:19:30 +00:00
label: "Non Technical",
value: "non technical",
},
{
label: "Other",
value: "other",
},
];
export const useCaseOptions: OptionType[] = [
{
label: "Just Exploring",
value: "just exploring",
},
{
label: "Personal Project",
value: "personal project",
},
{
label: "Work Project",
value: "work project",
},
{
label: "Other",
value: "other",
},
];
export const proficiencyOptions = [
{
label: "Just dipping my toes 🌱 (Brand new to this)",
value: "Beginner",
},
{ label: "Novice (Limited to no experience)", value: "Novice" },
{ label: "Intermediate (Some coding adventures)", value: "Intermediate" },
{
label: "Advanced (Comfortable with programming quests)",
value: "Advanced",
},
];