From 9dc7e860cb86cf745877bf0336186135a17abdd2 Mon Sep 17 00:00:00 2001 From: Chris Parsons <438676+chrisparsons83@users.noreply.github.com> Date: Fri, 27 Feb 2026 23:00:42 -0800 Subject: [PATCH] feat: show live draft alert banner on league page (#42) Adds a pulsing yellow alert banner between the league header and content sections when the season status is "draft", with a link to the draft room. Co-authored-by: Claude Sonnet 4.6 --- app/routes/leagues/$leagueId.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/app/routes/leagues/$leagueId.tsx b/app/routes/leagues/$leagueId.tsx index 0de83b9..a90d8f7 100644 --- a/app/routes/leagues/$leagueId.tsx +++ b/app/routes/leagues/$leagueId.tsx @@ -98,6 +98,26 @@ export default function LeagueHome({ loaderData }: Route.ComponentProps) { )} + {season?.status === "draft" && ( +
+
+ + + + + Draft is live! + + Your league draft is currently in progress. + +
+ +
+ )} +
{/* Left Column - 2/3 width on desktop */}