Merge version_1_1781994130882 into main #2

Merged
bender merged 1 commits from version_1_1781994130882 into main 2026-06-20 22:23:50 +00:00

View File

@@ -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 (
<StyleProvider buttonVariant="shift" siteBackground="gridDots" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="الكابتن"
logoImageSrc="http://img.b2bpic.net/free-vector/basketball-logo-template_23-2149588968.jpg"
ctaButton={{
text: "تسوق الآن", href: "#products"}}
navItems={navItems} />
logo="الكابتن"
logoImageSrc="http://img.b2bpic.net/free-vector/basketball-logo-template_23-2149588968.jpg"
ctaButton={{ text: "تسوق الآن", href: "#products" }}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="الكابتن للمنتجات الرياضية"
columns={[
{
title: "روابط سريعة", items: [
brand="الكابتن للمنتجات الرياضية"
columns={[
{
label: "الرئيسية", href: "#hero"},
title: "روابط سريعة", items: [
{ label: "الرئيسية", href: "#hero" },
{ label: "المنتجات", href: "#products" }
]
},
{
label: "المنتجات", href: "#products"},
],
},
{
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"
/>
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"
/>
</SectionErrorBoundary>
</StyleProvider>
);