diff --git a/apps/web/components/shell/icons.tsx b/apps/web/components/shell/icons.tsx index 6142049e..4a54d753 100644 --- a/apps/web/components/shell/icons.tsx +++ b/apps/web/components/shell/icons.tsx @@ -135,6 +135,22 @@ export function CodeIcon(props: SVGProps) { ); } +/** + * House-on-stack-of-coins glyph for "The Bet" nav entry. The literal + * subject of the bet is Tim's house, so the icon leans on that visual. + * Tim 2026-06-05. + */ +export function HouseStackIcon(props: SVGProps) { + return ( + + + + + + + ); +} + export function MoleculeIcon(props: SVGProps) { return ( diff --git a/apps/web/components/shell/nav-links.tsx b/apps/web/components/shell/nav-links.tsx index c24f9b97..557da9da 100644 --- a/apps/web/components/shell/nav-links.tsx +++ b/apps/web/components/shell/nav-links.tsx @@ -29,6 +29,7 @@ import { CodeIcon, ShareIcon, MoleculeIcon, + HouseStackIcon, } from "./icons"; export interface NavLink { @@ -116,6 +117,16 @@ export const PRIMARY_DESKTOP: readonly NavLink[] = [ icon: , matchPrefix: "/pools", }, + // "The Bet" sits after Pools so the headline-grabbing hook is one + // click away on every page (Tim 2026-06-05). The page itself is + // `/the-bet` (the long-form letter and the NZ$1.5M house wager). + { + label: "The Bet", + i18nKey: "nav.the_bet", + href: "/the-bet", + icon: , + matchPrefix: "/the-bet", + }, ]; /** @@ -148,6 +159,7 @@ export const DRAWER_PRIMARY: readonly NavLink[] = [ { label: "3D Molecule", i18nKey: "nav.molecule_3d", href: "/world-cup-2026/molecule", icon: , matchPrefix: "/world-cup-2026/molecule" }, { label: "Leaderboard", i18nKey: "nav.leaderboard", href: "/leaderboard", icon: , matchPrefix: "/leaderboard" }, { label: "Pools", i18nKey: "nav.pools", href: "/syndicates", icon: , matchPrefix: "/syndicates" }, + { label: "The Bet", i18nKey: "nav.the_bet", href: "/the-bet", icon: , matchPrefix: "/the-bet" }, { label: "My Profile", i18nKey: "nav.profile_my", href: "/profile", icon: , matchPrefix: "/profile" }, { label: "Share & Save", i18nKey: "nav.share_save", href: "/world-cup-2026/save-share", icon: , matchPrefix: "/world-cup-2026/save-share" }, ];