From 9e66a469beb634b15918689c669a4cc3fa02a301 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 18:42:26 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 44d3503..d2d0f2f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -85,6 +85,10 @@ export default function Layout() { ]} copyright="© 2024 Оксфорд Медікал. Всі права захищені." imageSrc="http://img.b2bpic.net/free-photo/nobody-doctors-office-with-modern-funiture-medical-facility-empty-examination-cabinet-healthcare-specialist-close-up-white-desk-with-laptop-stethoscope-pens_482257-28596.jpg?_wi=2" + links={[ + { label: "Політика конфіденційності", href: "#" }, + { label: "Умови використання", href: "#" } + ]} /> -- 2.49.1 From c8625806f906ab0d35d4544f03fe1d1013d623c4 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 15 Jun 2026 18:42:30 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 94 +++++++++++---------------------------- 1 file changed, 27 insertions(+), 67 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d2d0f2f..cf6831c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,89 +7,49 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Послуги", - "href": "#features" - }, - { - "name": "Лікарі", - "href": "#team" - }, - { - "name": "Відгуки", - "href": "#testimonials" - }, - { - "name": "Контакти", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { name: "Послуги", href: "#features" }, + { name: "Лікарі", href: "#team" }, + { name: "Відгуки", href: "#testimonials" }, + { name: "Контакти", href: "#contact" } + ]; return ( + logo="Оксфорд Медікал" + ctaButton={{ + text: "Записатися", href: "tel:0675115500"}} + navItems={navItems} />
+ ]} + copyright="© 2024 Оксфорд Медікал. Всі права захищені." + imageSrc="http://img.b2bpic.net/free-photo/nobody-doctors-office-with-modern-funiture-medical-facility-empty-examination-cabinet-healthcare-specialist-close-up-white-desk-with-laptop-stethoscope-pens_482257-28596.jpg" + links={[ + { label: "Послуги", href: "#features" }, + { label: "Лікарі", href: "#team" } + ]} + />
); -- 2.49.1