From b4fec7257327c8d1b6bf640e2004026ee1814058 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 20 Jun 2026 12:10:04 +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 d43857c..2884d85 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 20 Jun 2026 12:10:07 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 86 ++++++++++++--------------------------- 1 file changed, 26 insertions(+), 60 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 2884d85..110496d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,82 +7,48 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "الرئيسية", - "href": "#hero" - }, - { - "name": "من نحن", - "href": "#about" - }, - { - "name": "القائمة", - "href": "#products" - }, - { - "name": "الأسعار", - "href": "#pricing" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { name: "الرئيسية", href: "#hero" }, + { name: "من نحن", href: "#about" }, + { name: "القائمة", href: "#products" }, + { name: "الأسعار", href: "#pricing" }, + { name: "Features", href: "#features" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "Faq", href: "#faq" } + ]; return ( + logo="دجاج مقرمش" + logoImageSrc="http://img.b2bpic.net/free-vector/restaurant-logo-template_23-2150528977.jpg" + ctaButton={{ + text: "اطلب الآن", href: "#contact"}} + navItems={navItems} + />
+ ]} + />
); -- 2.49.1