From eb63aab6f10a6dd9c4846f8aaa84e12cb48f4d2c Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 16:48:59 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 44b2e58..756140f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 13 Jun 2026 16:49:02 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 95 +++++++++++++-------------------------- 1 file changed, 31 insertions(+), 64 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 756140f..c3f0f88 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,86 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "الرئيسية", - "href": "#hero" - }, - { - "name": "خدماتنا", - "href": "#services" - }, - { - "name": "أعمالنا", - "href": "#portfolio" - }, - { - "name": "آراء العملاء", - "href": "#testimonials" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Faq", - "href": "#faq" - }, - { - "name": "Booking", - "href": "#booking" - } -]; + { name: "الرئيسية", href: "#hero" }, + { name: "خدماتنا", href: "#services" }, + { name: "أعمالنا", href: "#portfolio" }, + { name: "آراء العملاء", href: "#testimonials" }, + { name: "Metrics", href: "#metrics" }, + { name: "Faq", href: "#faq" }, + { name: "Booking", href: "#booking" } + ]; return ( + logo="أصباغلي" + logoImageSrc="http://img.b2bpic.net/free-psd/construction-project-facebook-template_23-2151220203.jpg" + ctaButton={{ + text: "احجز موعدك الآن", href: "#booking"}} + navItems={navItems} + />
+ ]} + links={[ + { label: "الرئيسية", href: "#hero" }, + { label: "خدماتنا", href: "#services" } + ]} + copyright="جميع الحقوق محفوظة © 2024 أصباغلي" + />
); -- 2.49.1