From 97937abdc153fe3fcecbde270a5bfa86f8598272 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 20 Jun 2026 22:23:47 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 86 +++++++++++++++------------------------ 1 file changed, 33 insertions(+), 53 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e631f25..0a14a13 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,73 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "الرئيسية", "href": "#hero" - }, - { - "name": "المنتجات", "href": "#products" - }, - { - "name": "من نحن", "href": "#about" - }, - { - "name": "تواصل معنا", "href": "#contact" - }, - { - "name": "Features", "href": "#features" - }, - { - "name": "Metrics", "href": "#metrics" - }, - { - "name": "Testimonials", "href": "#testimonials" - } -]; + { name: "الرئيسية", href: "#hero" }, + { name: "المنتجات", href: "#products" }, + { name: "من نحن", href: "#about" }, + { name: "تواصل معنا", href: "#contact" }, + { name: "Features", href: "#features" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="الكابتن" + logoImageSrc="http://img.b2bpic.net/free-vector/basketball-logo-template_23-2149588968.jpg" + ctaButton={{ text: "تسوق الآن", href: "#products" }} + navItems={navItems} + />
+ title: "خدماتنا", items: [ + { label: "توصيل سريع", href: "#" }, + { label: "ضمان الجودة", href: "#" } + ] + } + ]} + copyright="© 2024 الكابتن للمنتجات الرياضية. جميع الحقوق محفوظة." + links={[ + { label: "سياسة الخصوصية", href: "#" }, + { label: "شروط الاستخدام", href: "#" } + ]} + imageSrc="http://img.b2bpic.net/free-vector/basketball-logo-template_23-2149588968.jpg" + />
); -- 2.49.1