From 0ca8168067e18480168f79268825e0720c1d2863 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 20:33:56 +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 2de9df8..ae61801 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 20:33:59 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 51 ++++++++++++--------------------------- 1 file changed, 15 insertions(+), 36 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index ae61801..d2227dc 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": "Products", - "href": "#products" + "name": "Products", "href": "#products" }, { - "name": "Analytics", - "href": "#metrics" + "name": "Analytics", "href": "#metrics" }, { - "name": "Team", - "href": "#team" + "name": "Team", "href": "#team" }, { - "name": "Support", - "href": "#faq" + "name": "Support", "href": "#faq" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Social", - "href": "#social" + "name": "Social", "href": "#social" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -60,33 +51,21 @@ export default function Layout() { { items: [ { - label: "Products", - href: "#products", - }, + label: "Products", href: "#products"}, { - label: "About", - href: "#team", - }, + label: "About", href: "#team"}, { - label: "Support", - href: "#faq", - }, + label: "Support", href: "#faq"}, ], }, { items: [ { - label: "Legal", - href: "#", - }, + label: "Legal", href: "#"}, { - label: "Privacy", - href: "#", - }, + label: "Privacy", href: "#"}, { - label: "Terms", - href: "#", - }, + label: "Terms", href: "#"}, ], }, ]} -- 2.49.1