From 59a514ac7c5488a0a701b90ce0bc3630e5c16ffc Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 11:12:24 +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 0dc0c1b..32c6001 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 11:12:27 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 74 +++++++++++++++------------------------ 1 file changed, 29 insertions(+), 45 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 32c6001..1c19661 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": "Home", - "href": "#home" + "name": "Home", "href": "#home" }, { - "name": "Shop", - "href": "#shop" + "name": "Shop", "href": "#shop" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "FAQ", - "href": "#faq" + "name": "FAQ", "href": "#faq" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Testimonial", - "href": "#testimonial" + "name": "Testimonial", "href": "#testimonial" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" } ]; @@ -42,47 +35,38 @@ export default function Layout() { + logo="FragranceLab" + logoImageSrc="http://img.b2bpic.net/free-vector/ramadan-mubarak-greeting-card-set_53876-92890.jpg" + ctaButton={{ + text: "Shop Now", href: "#shop"}} + navItems={navItems} + />
+ ]} + /> ); -- 2.49.1