From 77f3069cf747c326eaa7006fa50eeb820e68b180 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 10:58:41 +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 707eec5..0b93c36 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -44,6 +44,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 10:58:44 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 62 +++++++++++++++------------------------ 1 file changed, 24 insertions(+), 38 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 0b93c36..0c9fa24 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": "Collections", - "href": "#products" + "name": "Collections", "href": "#products" }, { - "name": "Our Story", - "href": "#about" + "name": "Our Story", "href": "#about" }, { - "name": "Trust", - "href": "#testimonials" + "name": "Trust", "href": "#testimonials" }, { - "name": "Help", - "href": "#faq" + "name": "Help", "href": "#faq" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Social Proof", - "href": "#social-proof" + "name": "Social Proof", "href": "#social-proof" } ]; @@ -43,36 +36,29 @@ export default function Layout() { + logo="Eurolark" + logoImageSrc="http://img.b2bpic.net/free-vector/minimal-logo-designs-set_53876-94204.jpg" + ctaButton={{ + text: "Shop Now", href: "#products"}} + navItems={navItems} + />
+ brand="Eurolark Kuwait" + copyright="© 2024 Eurolark Travel. All rights reserved." + socialLinks={[ + { + icon: "Instagram", href: "#"}, + { + icon: "Twitter", href: "#"}, + { + icon: "Facebook", href: "#"}, + ]} + /> ); -- 2.49.1