From be37ae25088117dfd0cdc3fc4e9f2ebdf62cef7c Mon Sep 17 00:00:00 2001 From: AR 15 M4 Date: Mon, 23 Mar 2026 16:39:03 +0500 Subject: [PATCH] fix(preview): add navigation block placeholder as first block MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The header is the first block on the real site — added it to the preview BLOCKS array so it shows as placeholder before Hero. Co-Authored-By: Claude Sonnet 4.6 --- apps/web/app/pages/preview/PreviewClient.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/web/app/pages/preview/PreviewClient.tsx b/apps/web/app/pages/preview/PreviewClient.tsx index db367a3..cc91458 100644 --- a/apps/web/app/pages/preview/PreviewClient.tsx +++ b/apps/web/app/pages/preview/PreviewClient.tsx @@ -36,6 +36,12 @@ const BLOCKS: Array<{ ready: boolean; component?: React.ReactNode; }> = [ + { + id: "navigation", + name: "Шапка / Навигация", + href: "/components/navigation", + ready: false, + }, { id: "hero", name: "Hero-баннер",