Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -72,21 +72,21 @@ const EligibilityStatus: FC<EligibilityStatusProps> = ({ eligibleBoth }) => {
</div>

<p className="mb-4 text-balance text-center text-base text-white dark:text-blue-50-dark">
Ready to get started? Try the{" "}
The contest is live.{" "}
<Link
href={BRIDGEWATER_2026.contestQuestionsUrl}
className="font-semibold text-white underline dark:text-blue-50-dark"
>
Start forecasting
</Link>
.{" "}
<button
onClick={() => setCurrentModal({ type: "onboarding" })}
className="cursor-pointer font-semibold text-white underline hover:text-blue-100 dark:text-blue-50-dark dark:hover:text-blue-100-dark"
>
forecasting tutorial
</button>{" "}
or explore some{" "}
<Link
href={BRIDGEWATER_2026.practiceQuestionsUrl}
className="font-semibold text-white underline dark:text-blue-50-dark"
>
warm-up questions
</Link>{" "}
to sharpen your skills!
Try the tutorial
</button>
.
</p>

<div className="mb-4 flex items-start gap-2 text-xs text-blue-200 dark:text-blue-200-dark">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
faCircleQuestion,
faClipboardList,
faMugHot,
faFlagCheckered,
IconDefinition,
} from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
Expand All @@ -27,9 +27,9 @@ const FooterLinks: FC = () => {
href={BRIDGEWATER_2026.contestRulesUrl}
/>
<FooterLinkCard
icon={faMugHot}
title="Warm-up Questions"
href={BRIDGEWATER_2026.practiceQuestionsUrl}
icon={faFlagCheckered}
title="Start Forecasting"
href={BRIDGEWATER_2026.contestQuestionsUrl}
/>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ The most accurate forecasters will be eligible for $30,000 in prizes and potenti
The competition features two tracks: an undergraduate track for current students and an open track for all participants. Register today and be notified as soon as questions open. The earlier you forecast, the better your odds to beat the competition and win cash prizes!`,
howItWorksUrl: "/bridgewater/how-it-works",
contestRulesUrl: "/bridgewater/contest-rules",
contestQuestionsUrl: "/tournament/bridgewater/",
practiceQuestionsUrl: "/tournament/bridgewater-warmup/", // This will be updated to the actual tournament page
} as const;