Skip to content

Commit b436961

Browse files
authored
Merge pull request #166 from waterloop/update-term
changed recruitment blurb so its open now
2 parents 8f0218e + 3dcaac8 commit b436961

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/pages/Recruitment/Recruitment.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,20 +35,20 @@ const Recruitment: React.FC = () =>{
3535
const date: Date = new Date();
3636
const currentMonth: number = date.getMonth() + 1; // NOTE: Recruitment is not consistent, this logic will not work, it would be better to have a controllable toggle on the CMS to open and close recruitment
3737
let currentCycle: string = "";
38-
let nextCycle: string = "";
38+
// let nextCycle: string = "";
3939
const currentYear: number = date.getFullYear();
40-
let nextYear: number = -1;
40+
// let nextYear: number = -1;
4141
if ([1,2,3].includes(currentMonth)) {
4242
currentCycle = "Winter";
43-
nextCycle = "May";
43+
// nextCycle = "May";
4444
} else if ([4,5,6,7,8].includes(currentMonth)) {
4545
currentCycle = "Spring";
46-
nextCycle = "September";
46+
// nextCycle = "September";
4747
} else {
4848
currentCycle = "Fall";
49-
nextCycle = "January";
49+
// nextCycle = "January";
5050
}
51-
nextYear = (currentCycle === "Fall") ? currentYear+1: currentYear;
51+
// nextYear = (currentCycle === "Fall") ? currentYear+1: currentYear;
5252
return (
5353
<>
5454
<Hero
@@ -76,15 +76,15 @@ const Recruitment: React.FC = () =>{
7676
</>
7777
) : (
7878
<FlexContainer>
79-
<h3>Our new member recruitment for {currentCycle} {currentYear} has closed</h3>
80-
<p>
79+
<h3>Our new member recruitment for {currentCycle} {currentYear} is now open</h3>
80+
{/* <p>
8181
We will be recruiting again at the start of {nextCycle} {nextYear}. Sign up below to be notified when postings go live!
8282
</p>
8383
<p>
8484
Missed recruitment but still want to join our team? Reach out to us at <a href = "mailto:[email protected]">[email protected]</a>!
85-
</p>
85+
</p> */}
8686
<p>
87-
Do you have prior expertise in linear induction motors, high power PCB design, or other relevant technical topics? We'd love to learn from you as an advisor; reach out to us at <a href = "mailto:[email protected]">[email protected]</a> if you're interested!
87+
Want to learn about linear induction motors, high power PCBS, or other technical and business topics? Fill out out our <a href = "https://forms.gle/jfcf6xypJukN9xjf7">Application Form</a> here.<br/>
8888
</p>
8989
<SignUpButton onClick={() => window.open('http://wloop.fly.dev/subscribe')} text="Sign up" backgroundColor="yellow" textColor="black" />
9090
</FlexContainer>

0 commit comments

Comments
 (0)