Skip to content
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 src/pages/ApplyPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -271,10 +271,10 @@ const ApplyPage = () => {
role="Executive Team"
description="Work behind the scenes for 1 academic year to organize project teams, run
workshops and events, and grow our club culture. Be a visionary that helps this club fulfill its goals!"
statusIsOpen={true}
statusIsOpen={false}
closedStatus="APPLICATIONS CLOSED"
applicationLink="https://docs.google.com/forms/d/e/1FAIpQLSdaqiGpPQ5z7221SB61eMFLrS4Vb1ZLuQRD-_fZ71e-E5m1Gw/viewform"
deadline="Applications due October 31st, 2025 @ 11:59 PM MT"
deadline=""
/>
</ul>
</div>
Expand Down
19 changes: 11 additions & 8 deletions src/pages/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,19 @@ import ApplyButton from "components/ApplyButton";
import AnnouncementBanner from "components/AnnouncementBanner/AnnouncementBanner";

const HomePage = () => {
const showAnnouncement = false; // toggle visibility
return (
<div className="homePage">
<AnnouncementBanner
message="🎉 Executive Team Applications are now open for the 2025-26 academic year!"
link={{
text: "Apply Here!",
to: "/apply",
external: false
}}
/>
{showAnnouncement && (
<AnnouncementBanner
message="🎉 Executive Team Applications are now open for the 2025-26 academic year!"
link={{
text: "Apply Here!",
to: "/apply",
external: false,
}}
/>
)}
<header className="homePage__hero" id="homePageTop">
<Particle />
<div className="homePage__logoContainer">
Expand Down