From fd662a46c6004f5a381ddc6471e36f681a0d2fa7 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 20 Jun 2026 12:10:07 +0000 Subject: [PATCH] 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} + />
+ ]} + />
);