Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion src/app/(protected)/register/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ export default function RegistrationPage() {
travel_cost: 0,
travel_method: "",
travel_additional: "",

});

const [races, setRaces] = useState<string[]>([]);
Expand Down Expand Up @@ -536,6 +535,41 @@ export default function RegistrationPage() {
</p>
</header>

{/* Important Notice Box */}
<div className="mb-8 p-6 bg-red-900/30 border-2 border-red-600 rounded-lg">
<h2 className="text-lg font-bold text-red-400 mb-3">
Important: Limited Capacity Application
</h2>
<p className="text-red-200 text-sm mb-3">
HackPSU has a limited number of spots available.
This year, we are operating on an application-based admissions
system.
</p>
<ul className="space-y-2 text-red-200 text-sm">
<li>
•{" "}
<span className="font-bold">
Application decisions will be made approximately one month
before the event
</span>
</li>
<li>
•{" "}
<span className="font-bold">
Acceptance is required to attend
</span>{" "}
— you cannot participate without being accepted
</li>
<li>
•{" "}
<span className="font-bold">
After acceptance, you must RSVP on your Profile page
</span>{" "}
to confirm your attendance
</li>
</ul>
</div>

<form onSubmit={handleSubmit} className="space-y-8">
{/* Personal Information */}
<div ref={personalInfoRef}>
Expand Down
Loading