From 10c43defe0a20492e6a90ba3fc0f747f2425e10b Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 18 Jun 2026 10:23:12 +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 58f70e7..425f674 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Thu, 18 Jun 2026 10:23:15 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 95 +++++++++++++++------------------------ 1 file changed, 36 insertions(+), 59 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 425f674..353cf02 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Gallery", - "href": "#gallery" + "name": "Gallery", "href": "#gallery" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -42,63 +35,47 @@ export default function Layout() { + logo="Milmo Salon" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=dxui8c" + ctaButton={{ + text: "Book Appointment", href: "tel:795980526"}} + navItems={navItems} + />
+ ]} + leftText="© 2024 Milmo Salon. Wszelkie prawa zastrzeżone." + rightText="Stworzone z pasją." + /> ); -- 2.49.1