From b721f4b1375eb5d9a4b0988c80d0655646a47dd9 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 15:44:43 +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 b9859ba..6e64637 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Tue, 16 Jun 2026 15:44:47 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 86 ++++++++++++--------------------------- 1 file changed, 26 insertions(+), 60 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6e64637..3d13c49 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,82 +7,48 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "Reviews", - "href": "#testimonials" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { name: "About", href: "#about" }, + { name: "Services", href: "#services" }, + { name: "Reviews", href: "#testimonials" }, + { name: "Pricing", href: "#pricing" }, + { name: "Hero", href: "#hero" }, + { name: "Metrics", href: "#metrics" }, + { name: "Faq", href: "#faq" } + ]; return ( + logo="Takla" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=5bsjb4" + ctaButton={{ + text: "Book Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + />
); -- 2.49.1