From 8b82ab09a998f44ebf55808707ac78c325e30cc8 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 12:46:57 +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 480f8a2..fe87302 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 12:47:00 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 115 +++++++++++--------------------------- 1 file changed, 33 insertions(+), 82 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index fe87302..f9c2aa0 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,106 +7,57 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Services", - "href": "#features" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Products", - "href": "#products" - }, - { - "name": "Social Proof", - "href": "#social-proof" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Services", href: "#features" }, + { name: "Contact", href: "#contact" }, + { name: "Products", href: "#products" }, + { name: "Social Proof", href: "#social-proof" }, + { name: "Metrics", href: "#metrics" } + ]; return ( + logo="ROMEJIA SRL" + logoImageSrc="http://img.b2bpic.net/free-photo/golden-lightning-bolt-icon-glowing-textured-brown-background_84443-91489.jpg" + ctaButton={{ + text: "Get Quote", href: "#contact"}} + navItems={navItems} + />
+ ]} + />
); -- 2.49.1