Merge version_1_1781957349701 into main #1

Merged
bender merged 2 commits from version_1_1781957349701 into main 2026-06-20 12:10:10 +00:00

View File

@@ -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 (
<StyleProvider buttonVariant="magnetic" siteBackground="floatingGradient" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="دجاج مقرمش"
ctaButton={{
text: "اطلب الآن",
href: "#contact",
}}
navItems={navItems} />
logo="دجاج مقرمش"
logoImageSrc="http://img.b2bpic.net/free-vector/restaurant-logo-template_23-2150528977.jpg"
ctaButton={{
text: "اطلب الآن", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="دجاج مقرمش"
columns={[
{
items: [
brand="دجاج مقرمش"
columns={[
{
label: "من نحن",
href: "#about",
items: [
{ label: "من نحن", href: "#about" },
{ label: "القائمة", href: "#products" },
],
},
{
label: "القائمة",
href: "#products",
items: [
{ label: "سياسة الخصوصية", href: "#" },
{ label: "شروط الاستخدام", href: "#" },
],
},
],
},
{
items: [
{
label: "سياسة الخصوصية",
href: "#",
},
{
label: "شروط الاستخدام",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);