File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ export async function RecruitmentBanner() {
19
19
< UserRoundIcon className = "h-4 w-4" />
20
20
< AlertTitle > Recruitment open!</ AlertTitle >
21
21
< AlertDescription >
22
- Apply to become a part of Armada { DateTime . now ( ) . year }
22
+ Apply to become a part of Armada{ " " }
23
+ { /* 2 months since pg recruitment usually starts in nov/dec */ }
24
+ { DateTime . now ( ) . plus ( { months : 2 } ) . year } { " " }
23
25
</ AlertDescription >
24
26
</ Alert >
25
27
</ Link >
Original file line number Diff line number Diff line change @@ -24,7 +24,8 @@ export default async function ExhibitorLayout({
24
24
< NavigationMenu
25
25
aside = {
26
26
< Link
27
- href = { `https://ais.armada.nu/fairs/${ DateTime . now ( ) . year } /recruitment` } >
27
+ /* 2 months to account for pg recruitment which usually starts the previous year in nov/dec */
28
+ href = { `https://ais.armada.nu/fairs/${ DateTime . now ( ) . plus ( { months : 2 } ) . year } /recruitment` } >
28
29
< Button variant = { "outline" } > Apply for Armada</ Button >
29
30
</ Link >
30
31
}
You can’t perform that action at this time.
0 commit comments