Merge version_1_1781548858445 into main #2

Merged
bender merged 2 commits from version_1_1781548858445 into main 2026-06-15 18:42:34 +00:00

View File

@@ -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 (
<StyleProvider buttonVariant="shift" siteBackground="noise" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarInline
logo="Оксфорд Медікал"
ctaButton={{
text: "Записатися",
href: "tel:0675115500",
}}
navItems={navItems} />
logo="Оксфорд Медікал"
ctaButton={{
text: "Записатися", href: "tel:0675115500"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Оксфорд Медікал"
columns={[
{
title: "Адреса",
items: [
brand="Оксфорд Медікал"
columns={[
{
label: "вул. Академіка Корольова, 34а",
href: "#",
title: "Адреса", items: [
{ label: "вул. Академіка Корольова, 34а", href: "#" },
{ label: "Одеса, Одеська область", href: "#" },
],
},
{
label: "Одеса, Одеська область",
href: "#",
title: "Зв'язок", items: [
{ label: "067 511 5500", href: "tel:0675115500" },
{ label: "odessa.oxford-med.com.ua", href: "https://odessa.oxford-med.com.ua" },
],
},
],
},
{
title: "Зв'язок",
items: [
{
label: "067 511 5500",
href: "tel:0675115500",
},
{
label: "odessa.oxford-med.com.ua",
href: "https://odessa.oxford-med.com.ua",
},
],
},
]}
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"
/>
]}
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" }
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);