import CountDownTimer from "../../CountDown/CountDownTimer.js"; import "./JoinTheClub.css"; import "./messageToDisplayAfter.css"; /** * @param {null} null - requires nothing * @returns {React.JSX.Element} page - returns the page content * @description Recuitment Page on our website * @author Brock * @todo css */ const JoinTheClub = () => { const recuitmentDate = new Date(2024, 9, 17, 0, 0, 0, 0).getTime(); //september 17 2024 return (
{recuitmentDate && (

We Currently are not recuiting please check back when this timer is finished

)}
); }; /** * @param {null} null - requires nothing * @returns {React.JSX.Element} page - component that is displayed after timer is finished * @description shows recuitment link * @author Brock */ const messageToDisplayAfter = () => { return (

Recuitment Form is OPEN!

Appy using the link below

QR Code for Jotform form

Apply Here!

); }; export default JoinTheClub;