From d5f951d3c71d1c75fe2245bc00703bed52383dee Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 20:35: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 82fedc8..fc1b0f7 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -47,6 +47,7 @@ export default function Layout() { href: "#contact", }} logo="Philips Mechanical" + logoImageSrc="https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=128&h=128&q=80&fit=crop" navItems={navItems} />
-- 2.49.1 From 4146dc6c884e8a5934d743f37711beace41bfa42 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 17 Jun 2026 20:35:50 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 65 ++++++++++++--------------------------- 1 file changed, 19 insertions(+), 46 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index fc1b0f7..77256cb 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": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Reviews", - "href": "#testimonials" + "name": "Reviews", "href": "#testimonials" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Why Choose Us", - "href": "#why-choose-us" + "name": "Why Choose Us", "href": "#why-choose-us" }, { - "name": "Case Study", - "href": "#case-study" + "name": "Case Study", "href": "#case-study" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,50 +49,32 @@ export default function Layout() { brand="Philips Mechanical" columns={[ { - title: "Company", - items: [ + title: "Company", items: [ { - label: "Services", - href: "#services", - }, + label: "Services", href: "#services"}, { - label: "About", - href: "#about", - }, + label: "About", href: "#about"}, { - label: "Reviews", - href: "#testimonials", - }, + label: "Reviews", href: "#testimonials"}, ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { - label: "Call Us", - href: "tel:5550123456", - }, + label: "Call Us", href: "tel:5550123456"}, { - label: "Email", - href: "mailto:hello@philips.com", - }, + label: "Email", href: "mailto:hello@philips.com"}, { - label: "Hours", - href: "#", - }, + label: "Hours", href: "#"}, ], }, ]} copyright="© 2024 Philips Mechanical." links={[ { - label: "Privacy", - href: "#", - }, + label: "Privacy", href: "#"}, { - label: "Terms", - href: "#", - }, + label: "Terms", href: "#"}, ]} /> -- 2.49.1