From e2d5467f617f9447fd90ae5e92e0dbc5d2c2362a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 04:09:03 +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 9513eba..07738a0 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 04:09:06 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 126 +++++++++++++++----------------------- 1 file changed, 51 insertions(+), 75 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 07738a0..e59babf 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,99 +7,75 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Services", - "href": "#features" - }, - { - "name": "Portal", - "href": "#contact" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { + "name": "Home", "href": "#hero" + }, + { + "name": "About", "href": "#about" + }, + { + "name": "Services", "href": "#features" + }, + { + "name": "Portal", "href": "#contact" + }, + { + "name": "Metrics", "href": "#metrics" + }, + { + "name": "Testimonials", "href": "#testimonials" + }, + { + "name": "Faq", "href": "#faq" + } + ]; return ( + logo="Rx Med Care" + logoImageSrc="http://img.b2bpic.net/free-vector/plus-health-circles-outline-glyph-flat_78370-4786.jpg" + ctaButton={{ + text: "Contact Us", href: "#contact"}} + navItems={navItems} + />
+ label: "Terms", href: "#"}, + ]} + />
); -- 2.49.1