diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d43857c..110496d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,81 +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} + />
+ ]} + />
);