From ccc9fd6d4c372eb19b29d516ea5e65294125753c Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 12:01:21 +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 93eb368..c0a0a0c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 17 Jun 2026 12:01:24 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 96 ++++++++++++--------------------------- 1 file changed, 28 insertions(+), 68 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c0a0a0c..5efcdb0 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,90 +7,50 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "Products", - "href": "#products" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Stats", - "href": "#stats" - } -]; + { "name": "Home", "href": "#hero" }, + { "name": "Products", "href": "#products" }, + { "name": "Services", "href": "#services" }, + { "name": "About", "href": "#about" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Testimonials", "href": "#testimonials" }, + { "name": "Stats", "href": "#stats" } + ]; return ( + logo="Al-BARI FABRICS" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=uv6cwm" + ctaButton={{ + text: "Get Quote", href: "#contact"}} + navItems={navItems} + />
+ ]} + />
);