diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 44d3503..cf6831c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,85 +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" } + ]} + />
);