Skip to content

Commit 023756e

Browse files
committed
Updated ps categories in custom
1 parent cf04f45 commit 023756e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/components/Register.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,24 +1027,24 @@ export default function RegisterPage() {
10271027

10281028
{/* Category */}
10291029
<div className="flex flex-col gap-2">
1030-
<label htmlFor="customProblemCategory" className="text-sm font-medium text-foreground">
1031-
Category *
1030+
<label htmlFor="customProblemCategory" className="text-sm font-semibold text-amber-900 dark:text-amber-100 flex items-center gap-2">
1031+
<span>Hackathon Theme *</span>
1032+
<div className="w-1 h-1 bg-amber-600 rounded-full"></div>
10321033
</label>
10331034
<Select
10341035
id="customProblemCategory"
10351036
value={problemStatement.category}
10361037
onChange={(e) => setProblemStatement(prev => ({ ...prev, category: e.target.value }))}
1037-
placeholder="Select a category"
1038+
placeholder="Choose from HACKOVERFLOW-2K25 official themes"
10381039
options={[
1039-
{ value: "healthcare", label: "Healthcare" },
1040-
{ value: "education", label: "Education" },
1041-
{ value: "environment", label: "Environment" },
1042-
{ value: "transportation", label: "Transportation" },
1043-
{ value: "agriculture", label: "Agriculture" },
1044-
{ value: "finance", label: "Finance" },
1045-
{ value: "social", label: "Social Impact" },
1046-
{ value: "technology", label: "Technology" },
1047-
{ value: "other", label: "Other" }
1040+
{ value: "AI & Machine Learning", label: "AI & Machine Learning" },
1041+
{ value: "Web3 & Blockchain", label: "Web3 & Blockchain" },
1042+
{ value: "Healthcare Technology", label: "Healthcare Technology" },
1043+
{ value: "Sustainable Development", label: "Sustainable Development" },
1044+
{ value: "FinTech Innovation", label: "FinTech Innovation" },
1045+
{ value: "Education Technology", label: "Education Technology" },
1046+
{ value: "IoT & Smart Devices", label: "IoT & Smart Devices" },
1047+
{ value: "Open Innovation", label: "Open Innovation" }
10481048
]}
10491049
/>
10501050
</div>

0 commit comments

Comments
 (0)