From 7f75c56f49b25ec2c6883edae541a16e83df6dba Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 01:27: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 2483332..86f91dd 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 01:27:28 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 125 ++++++++++++++------------------------ 1 file changed, 46 insertions(+), 79 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 86f91dd..6eb933a 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": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Partner Venues", - "href": "#partner-venues" + "name": "Partner Venues", "href": "#partner-venues" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -42,85 +35,59 @@ export default function Layout() { + logo="VenueRwanda" + logoImageSrc="http://img.b2bpic.net/free-vector/black-white-logo-with-white-square_698780-1019.jpg" + ctaButton={{ + text: "Apply Now", href: "#contact"}} + navItems={navItems} + />
+ label: "Terms of Service", href: "#"}, + ]} + /> ); -- 2.49.1