2023-10-11 07:35:24 +00:00
|
|
|
export interface OptionType {
|
2021-09-12 16:36:43 +00:00
|
|
|
label?: string;
|
|
|
|
|
value?: string;
|
2023-10-11 07:35:24 +00:00
|
|
|
}
|
2021-09-12 16:36:43 +00:00
|
|
|
|
2023-10-16 12:07:06 +00:00
|
|
|
type OptionTypeWithSubtext = OptionType & {
|
|
|
|
|
subtext?: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const proficiencyOptions: OptionTypeWithSubtext[] = [
|
|
|
|
|
{
|
|
|
|
|
label: "Brand New",
|
2023-10-17 14:53:54 +00:00
|
|
|
subtext: "I've never written code before.",
|
2023-10-16 12:07:06 +00:00
|
|
|
value: "Brand New",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "Novice",
|
2023-10-17 14:53:54 +00:00
|
|
|
subtext: "Learning the ropes. Basic understanding of coding concepts.",
|
2023-10-16 12:07:06 +00:00
|
|
|
value: "Novice",
|
|
|
|
|
},
|
2023-09-29 04:50:06 +00:00
|
|
|
{
|
2023-10-16 12:07:06 +00:00
|
|
|
label: "Intermediate",
|
2023-10-17 14:53:54 +00:00
|
|
|
subtext: "Can tackle moderately complex projects.",
|
2023-10-16 12:07:06 +00:00
|
|
|
value: "Intermediate",
|
2023-09-29 04:50:06 +00:00
|
|
|
},
|
|
|
|
|
{
|
2023-10-16 12:07:06 +00:00
|
|
|
label: "Advanced",
|
2023-10-17 14:53:54 +00:00
|
|
|
subtext: "Mastery in development. Experienced with complex coding tasks.",
|
2023-09-29 04:50:06 +00:00
|
|
|
value: "Advanced",
|
|
|
|
|
},
|
|
|
|
|
];
|
2023-10-16 12:07:06 +00:00
|
|
|
|
2023-12-25 12:24:46 +00:00
|
|
|
export const useCaseOptions: OptionTypeWithSubtext[] = [
|
2023-10-16 12:07:06 +00:00
|
|
|
{
|
|
|
|
|
label: "Work Project",
|
|
|
|
|
value: "work project",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "Personal Project",
|
|
|
|
|
value: "personal project",
|
|
|
|
|
},
|
|
|
|
|
];
|