diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 44b2e58..c3f0f88 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,84 +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 أصباغلي" + />
);