From d1cf7c7fcc2f52d22e871b2944f577f81559779d Mon Sep 17 00:00:00 2001 From: Ian Dai <56898254+IanWearsHat@users.noreply.github.com> Date: Mon, 15 Jan 2024 20:12:47 -0800 Subject: [PATCH] Created waitlisted and accepted messages for portal (#231) * Created waitlisted and accepted messages. * Updated apostrophe --- .../app/(main)/portal/@applicant/Message.tsx | 33 +++++++++++++------ 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/apps/site/src/app/(main)/portal/@applicant/Message.tsx b/apps/site/src/app/(main)/portal/@applicant/Message.tsx index 6222fd22..492f125b 100644 --- a/apps/site/src/app/(main)/portal/@applicant/Message.tsx +++ b/apps/site/src/app/(main)/portal/@applicant/Message.tsx @@ -7,9 +7,8 @@ interface MessageProps { function Message({ status }: MessageProps) { const submittedMessage = (
- Thank you for submitting your application! We are currently - reviewing applications on a rolling basis, and you will hear back - from us soon! + Thank you for submitting your application! We are currently reviewing + applications on a rolling basis, and you will hear back from us soon!
); @@ -18,15 +17,29 @@ function Message({ status }: MessageProps) { [PortalStatus.reviewed]: submittedMessage, [PortalStatus.rejected]: (- Thank you for applying to IrvineHacks this year. We have read - through many applications so far, and unfortunately are unable - to offer you a spot at our event. We highly encourage you to - continue developing your skills and passion for technology. We - would love to see you apply again next year! + Thank you for applying to IrvineHacks this year. We have read through + many applications so far, and unfortunately are unable to offer you a + spot at our event. We highly encourage you to continue developing your + skills and passion for technology. We would love to see you apply again + next year! +
+ ), + [PortalStatus.waitlisted]: ( ++ Thank you for applying to IrvineHacks this year. We have read through + many applications so far, and are able to offer you a spot on the event + waitlist. Once a spot for IrvineHacks opens up, we will contact you via + email to confirm. +
+ ), + [PortalStatus.accepted]: ( ++ Congratulations on your acceptance to IrvineHacks 2024! Please look for + an email confirming your acceptance. It is crucial that you read through + all additional info in your confirmation email. We look forward to + seeing you at IrvineHacks!
), - [PortalStatus.waitlisted]: <>>, - [PortalStatus.accepted]: <>>, [PortalStatus.confirmed]: <>>, };