51 lines
833 B
TypeScript
51 lines
833 B
TypeScript
export type OptionType = {
|
|
label?: string;
|
|
value?: string;
|
|
};
|
|
|
|
export const roleOptions: OptionType[] = [
|
|
{
|
|
label: "Frontend (HTML/JS/React)",
|
|
value: "frontend engineer",
|
|
},
|
|
{
|
|
label: "Backend (APIs/Databases)",
|
|
value: "backend engineer",
|
|
},
|
|
{
|
|
label: "Fullstack",
|
|
value: "fullstack engineer",
|
|
},
|
|
{
|
|
label: "SQL Queries & Basic Coding",
|
|
value: "business analyst",
|
|
},
|
|
{
|
|
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",
|
|
},
|
|
];
|