generated from acm-ucr/acm-ucr-website
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from acm-ucr/khandrew1/fixBuild
fix build error
- Loading branch information
Showing
6 changed files
with
58 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,42 @@ | ||
export const nameOptions = { | ||
type: "text", | ||
title: "Name", | ||
placeholder: "Enter a Name", | ||
maxLength: 250, | ||
}; | ||
import { Questions } from "@/types/questions"; | ||
|
||
export const majorOptions = { | ||
title: "Major", | ||
options: ["Computer Science", "Computer Engineering", "Data Science"], | ||
value: "", | ||
disabled: false, | ||
}; | ||
|
||
export const graduationOptions = { | ||
title: "Graduation Year", | ||
options: ["2025", "2026", "2027", "2028"], | ||
}; | ||
|
||
export const questionOptions = { | ||
title: "Why do you want to join ACM Ignite?", | ||
placeholder: "I want to join ACM Ignite because...", | ||
}; | ||
|
||
export const techStackOptions = { | ||
title: "Tech Stack", | ||
options: ["Typescript", "Javascript", "C/C++"], | ||
value: "", | ||
disabled: false, | ||
}; | ||
export const questions: Questions[] = [ | ||
{ | ||
type: "text", | ||
title: "Name", | ||
placeholder: "Enter a Name", | ||
maxLength: 250, | ||
disabled: false, | ||
value: "", | ||
}, | ||
{ | ||
type: "select", | ||
title: "Major", | ||
options: ["Computer Science", "Computer Engineering", "Data Science"], | ||
value: "", | ||
disabled: false, | ||
}, | ||
{ | ||
title: "Graduation Year", | ||
options: [2025, 2026, 2027, 2028], | ||
type: "radio", | ||
disabled: false, | ||
value: "", | ||
}, | ||
// eventually should be an input thing here, its not in yet though | ||
{ | ||
title: "Why do you want to join ACM Ignite?", | ||
placeholder: "I want to join ACM Ignite because...", | ||
type: "textarea", | ||
maxLength: 250, | ||
disabled: false, | ||
value: "", | ||
}, | ||
{ | ||
type: "select", | ||
title: "Tech Stack", | ||
options: ["Typescript", "Javascript", "C/C++"], | ||
value: "", | ||
disabled: false, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters