From bd35bbfc5b3a8c8cb62ca650723c7b92e1084828 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 21:38:08 +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 af495f1..3ac618b 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 21:38:11 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 76 ++++++++++++--------------------------- 1 file changed, 22 insertions(+), 54 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3ac618b..c33852b 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": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Bento", - "href": "#bento" + "name": "Bento", "href": "#bento" }, { - "name": "Testimonial", - "href": "#testimonial" + "name": "Testimonial", "href": "#testimonial" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -59,63 +50,40 @@ export default function Layout() { brand="DevSync" columns={[ { - title: "Platform", - items: [ + title: "Platform", items: [ { - label: "Infrastructure", - href: "#", - }, + label: "Infrastructure", href: "#"}, { - label: "Security", - href: "#", - }, + label: "Security", href: "#"}, { - label: "Integrations", - href: "#", - }, + label: "Integrations", href: "#"}, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About", - href: "#", - }, + label: "About", href: "#"}, { - label: "Blog", - href: "#", - }, + label: "Blog", href: "#"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy", - href: "#", - }, + label: "Privacy", href: "#"}, { - label: "Terms", - href: "#", - }, + label: "Terms", href: "#"}, ], }, ]} copyright="© 2024 DevSync Platform Inc." links={[ { - label: "Twitter", - href: "#", - }, + label: "Twitter", href: "#"}, { - label: "GitHub", - href: "#", - }, + label: "GitHub", href: "#"}, ]} /> -- 2.49.1