From 2d010f73a44b9fcce62cb55e56ee9478effd047f Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Mon, 2 Mar 2026 17:28:59 +0000 Subject: [PATCH] Rearrange content layout to place advertisements correctly Update the layout configuration in `home.tsx` to ensure advertisements appear directly after article content in the bottom section. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 517dfa7b-26ac-463d-a6e1-a58c6df97188 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 366cf91b-e383-4f2e-8861-f7cc8be03e95 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/f209e72a-0939-48fa-84fc-57854de71967/517dfa7b-26ac-463d-a6e1-a58c6df97188/nFw7xof Replit-Helium-Checkpoint-Created: true --- client/src/pages/home.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx index 6e2035e..ef26f24 100644 --- a/client/src/pages/home.tsx +++ b/client/src/pages/home.tsx @@ -550,8 +550,8 @@ export default function Home() { type: "article" as const, el: , })), - { type: "widget", el: }, { type: "ad", el:
}, + { type: "widget", el: }, ]; return items; }, [bottomArticles, focalPoints]);