From d58ee4c679fdbbc5a0a6eb47d38fc3794b72778c Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 28 Feb 2026 22:29:16 +0000 Subject: [PATCH] Add a single featured article to the bottom of the homepage grid Move the WideCard component to display a single featured article at the end of the homepage grid layout, consuming two columns on smaller screens. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 517dfa7b-26ac-463d-a6e1-a58c6df97188 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: eab6ad47-19af-45fd-9e98-a28298c6a4e4 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/f209e72a-0939-48fa-84fc-57854de71967/517dfa7b-26ac-463d-a6e1-a58c6df97188/0ZGabQy Replit-Helium-Checkpoint-Created: true --- client/src/pages/home.tsx | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx index 9a3a6af..1b7dd12 100644 --- a/client/src/pages/home.tsx +++ b/client/src/pages/home.tsx @@ -523,14 +523,6 @@ export default function Home() { - {widePickedArticles.length > 0 && ( -
- {widePickedArticles.map((a) => ( - - ))} -
- )} - {gridRows.map((row, ri) => (
{row.map((item, ci) => @@ -540,6 +532,11 @@ export default function Home() { ? : null )} + {ri === gridRows.length - 1 && widePickedArticles.length > 0 && ( +
+ +
+ )}
))}