From 9d1210618ad8b56c3629beeaf1c59c37bd5754e8 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 11:46:32 +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 131f6d0..73c56d6 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -44,6 +44,7 @@ export default function Layout() { Date: Wed, 17 Jun 2026 11:46:36 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 39 ++++++++++++--------------------------- 1 file changed, 12 insertions(+), 27 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 73c56d6..f8d0c9d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "Services", - "href": "#features" + "name": "Services", "href": "#features" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Product", - "href": "#product" + "name": "Product", "href": "#product" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -44,11 +37,9 @@ export default function Layout() {
@@ -60,17 +51,11 @@ export default function Layout() { copyright="© 2024 Precision Electrical Solutions." socialLinks={[ { - icon: Twitter, - href: "#", - }, + icon: "Twitter", href: "#"}, { - icon: Facebook, - href: "#", - }, + icon: "Facebook", href: "#"}, { - icon: Linkedin, - href: "#", - }, + icon: "Linkedin", href: "#"}, ]} /> -- 2.49.1