Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Push back apps deadline #548

Merged
merged 2 commits into from
Jan 11, 2025
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
4 changes: 2 additions & 2 deletions apps/api/src/routers/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

router = APIRouter()

DEADLINE = datetime(2025, 1, 11, 8, 1, tzinfo=timezone.utc)
DEADLINE = datetime(2025, 1, 13, 8, 1, tzinfo=timezone.utc)


class IdentityResponse(BaseModel):
Expand Down Expand Up @@ -225,7 +225,7 @@ async def _apply_flow(

log.info("%s submitted an application", user.uid)
return (
"Thank you for submitting an application to IrvineHacks 2024! Please "
"Thank you for submitting an application to IrvineHacks 2025! Please "
+ "visit https://irvinehacks.com/portal to see your application status."
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ async function ApplicationsClosed() {
return (
<div className="rounded-2xl p-10 text-display text-[#432810] bg-white text-center w-8/12 max-[800px]:w-9/12 max-[400px]:w-11/12">
<h1 className="text-4xl p-10 font-semibold max-[800px]:p-0">
Applications for IrvineHacks 2025 closed on January 10th.
Applications for IrvineHacks 2025 closed on January 12th.
</h1>
<hr className="my-10 w-full h-0.5 bg-[#432810]" />
{identity.uid === null && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,11 @@ export default async function ConfirmationDetails({
26, and that IrvineHacks will not be providing transportation or
overnight accommodations. {roleText}
</p>
<strong className="text-lg text-[#FF2222]">
<s aria-hidden className="text-lg text-[#FF2222]">
Applications are due on January 10th, 2025 at 11:59PM PST.
</s>
<strong className="text-lg text-[#FF2222]">
Applications are due on January 12th, 2025 at 11:59PM PST.
</strong>
<Button
className="text-2xl"
Expand Down
2 changes: 1 addition & 1 deletion apps/site/src/lib/components/forms/shared/Title/Title.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function Title({ applicationType }: TitleProps) {
{applyTitle}
</h1>
<h2 className="text-[var(--color-offwhite)] text-center font-body text-xl my-6 sm:text-2xl md:text-4xl">
Applications close on January 10th, 11:59PM PST
Applications close on January 12th, 11:59PM PST
</h2>
</>
);
Expand Down
2 changes: 1 addition & 1 deletion apps/site/src/lib/utils/hasDeadlinePassed.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default function hasDeadlinePassed() {
const pstDeadline = "2025-01-11T00:00:59";
const pstDeadline = "2025-01-13T00:00:59";
const utcOffset = "-08:00";

const deadline = new Date(pstDeadline + utcOffset);
Expand Down
Loading