From 19d7f39a59bf86d6dd9a2c59ef0b6ae4c19c1034 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 11:36:07 +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 b65d9e1..a69cb2b 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 11:36:10 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 107 ++++++++++++++------------------------ 1 file changed, 40 insertions(+), 67 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a69cb2b..87a9163 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": "Tours", - "href": "#products" + "name": "Tours", "href": "#products" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Services", - "href": "#features" + "name": "Services", "href": "#features" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Team", - "href": "#team" + "name": "Team", "href": "#team" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -42,71 +35,51 @@ export default function Layout() { + logo="Kenya Wild Explorer" + logoImageSrc="http://img.b2bpic.net/free-vector/flat-design-ibiza-label-collection_23-2149404376.jpg" + ctaButton={{ + text: "Book Now", href: "#contact"}} + navItems={navItems} />
+ ]} + /> ); -- 2.49.1