Merge version_1_1781369276671 into main #1

Merged
bender merged 2 commits from version_1_1781369276671 into main 2026-06-13 16:49:05 +00:00

View File

@@ -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 (
<StyleProvider buttonVariant="bubble" siteBackground="aurora" heroBackground="horizonGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="أصباغلي"
ctaButton={{
text: "احجز موعدك الآن",
href: "#booking",
}}
navItems={navItems} />
logo="أصباغلي"
logoImageSrc="http://img.b2bpic.net/free-psd/construction-project-facebook-template_23-2151220203.jpg"
ctaButton={{
text: "احجز موعدك الآن", href: "#booking"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="أصباغلي"
columns={[
{
title: "روابط سريعة",
items: [
brand="أصباغلي"
columns={[
{
label: "الرئيسية",
href: "#hero",
title: "روابط سريعة", items: [
{ label: "الرئيسية", href: "#hero" },
{ label: "خدماتنا", href: "#services" },
],
},
{
label: "خدماتنا",
href: "#services",
title: "اتصل بنا", items: [
{ label: "واتساب", href: "https://wa.me/yournumber" },
{ label: "تواصل معنا", href: "tel:+966000000000" },
],
},
],
},
{
title: "اتصل بنا",
items: [
{
label: "واتساب",
href: "https://wa.me/yournumber",
},
{
label: "تواصل معنا",
href: "tel:+966000000000",
},
],
},
]}
copyright="جميع الحقوق محفوظة © 2024 أصباغلي"
/>
]}
links={[
{ label: "الرئيسية", href: "#hero" },
{ label: "خدماتنا", href: "#services" }
]}
copyright="جميع الحقوق محفوظة © 2024 أصباغلي"
/>
</SectionErrorBoundary>
</StyleProvider>
);