From 77f3838f48ae870c726777189785feef5cf15c2d Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 10:13:47 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3e5941a..8e8d483 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 10:13:50 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 102 ++++++++++++++------------------------ 1 file changed, 38 insertions(+), 64 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 8e8d483..8c97ff6 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Magazine", - "href": "#magazine" + "name": "Magazine", "href": "#magazine" }, { - "name": "Radio", - "href": "#radio" + "name": "Radio", "href": "#radio" }, { - "name": "Shop", - "href": "#shop" + "name": "Shop", "href": "#shop" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Offices", - "href": "#offices" + "name": "Offices", "href": "#offices" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Newsletter", - "href": "#newsletter" + "name": "Newsletter", "href": "#newsletter" } ]; @@ -42,68 +35,49 @@ export default function Layout() { + logo="Monocle" + logoImageSrc="http://img.b2bpic.net/free-vector/abstract-arrows-logo_23-2147512604.jpg" + ctaButton={{ + text: "Subscribe", href: "#"}} + navItems={navItems} + />
+ label: "Terms of Service", href: "#"}, + ]} + /> ); -- 2.49.1