From d562bf8d0e47d958bf1063283e27c5669498dfec Mon Sep 17 00:00:00 2001 From: Shekhar Vaidya Date: Mon, 17 Aug 2026 23:28:21 +0530 Subject: [PATCH] fix(frontend): Windows 10 lifecycle text/badge were stale (dated Oct 2025, now Aug 2026) Homepage's featured card said "Security support until October 2025" -- that date has already passed, so it read as a future deadline that wasn't. Updated to reflect actual status (mainstream support ended, consumer ESU runs through Oct 2026) -- kept tight to match the other three cards' description length so the grid stays even (the first draft ran long enough to wrap to 3 lines and grow that one card's height past its siblings). Also found products.json still tagged both Windows 10 22H2 variants (2618, 2378) as "EOL SOON" -- inconsistent with the homepage's own "EOL"/"END OF LIFE" badge for the same product, and equally stale for the same reason. products.json's badge field renders verbatim on the product detail page, so this was live and user-facing. Co-Authored-By: Claude Sonnet 4.6 --- frontend/public/data/products.json | 4 ++-- frontend/src/pages/HomePage.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/public/data/products.json b/frontend/public/data/products.json index e4b9c13..d94f324 100644 --- a/frontend/public/data/products.json +++ b/frontend/public/data/products.json @@ -12,7 +12,7 @@ }, "2378": { "name": "Windows 10 22H2 Home China (19045.2006)", - "badge": "EOL SOON", + "badge": "EOL", "archs": [ "x64" ], @@ -22,7 +22,7 @@ }, "2618": { "name": "Windows 10 22H2 v1 (19045.2965)", - "badge": "EOL SOON", + "badge": "EOL", "archs": [ "x64", "x86" diff --git a/frontend/src/pages/HomePage.tsx b/frontend/src/pages/HomePage.tsx index a227ebe..b24cc6e 100644 --- a/frontend/src/pages/HomePage.tsx +++ b/frontend/src/pages/HomePage.tsx @@ -35,7 +35,7 @@ const featured = [ name: 'Windows 10', version: '22H2', build: '19045.2965', - description: 'The final Windows 10 feature update. Security support until October 2025.', + description: 'The final Windows 10 feature update. Support ended Oct 2025; ESU through Oct 2026.', badge: 'eol' as const, archs: ['x64', 'x86'], },