From e2ca4efc5cf2e9f516db3ed62165ec832f8d9e33 Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Fri, 27 Feb 2026 22:57:43 -0800 Subject: [PATCH] feat: show live draft alert banner on league page 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 */}