From 1a89d185160727c63c70f744f322bcbcfb620557 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 2 Jul 2026 23:07:04 +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 ebe7b26..f80a4db 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Thu, 2 Jul 2026 23:07:07 +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 f80a4db..ce8dfe6 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": "Dashboard", - "href": "#hero" + "name": "Dashboard", "href": "#hero" }, { - "name": "Employees", - "href": "#team" + "name": "Employees", "href": "#team" }, { - "name": "CRM", - "href": "#features" + "name": "CRM", "href": "#features" }, { - "name": "Payroll", - "href": "#pricing" + "name": "Payroll", "href": "#pricing" }, { - "name": "Product", - "href": "#product" + "name": "Product", "href": "#product" }, { - "name": "Testimonial", - "href": "#testimonial" + "name": "Testimonial", "href": "#testimonial" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -60,33 +51,21 @@ export default function Layout() { { items: [ { - label: "Dashboard", - href: "#", - }, + label: "Dashboard", href: "#"}, { - label: "CRM", - href: "#", - }, + label: "CRM", href: "#"}, { - label: "Payroll", - href: "#", - }, + label: "Payroll", href: "#"}, ], }, { items: [ { - label: "Security", - href: "#", - }, + label: "Security", href: "#"}, { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} -- 2.49.1