Merge version_1_1782214264172 into main #1

Merged
bender merged 1 commits from version_1_1782214264172 into main 2026-06-23 11:31:56 +00:00

View File

@@ -7,80 +7,48 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Menu",
"href": "#menu"
},
{
"name": "Reviews",
"href": "#testimonials"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Faq",
"href": "#faq"
}
];
{ "name": "Menu", "href": "#menu" },
{ "name": "Reviews", "href": "#testimonials" },
{ "name": "Contact", "href": "#contact" },
{ "name": "Hero", "href": "#hero" },
{ "name": "About", "href": "#about" },
{ "name": "Faq", "href": "#faq" }
];
return (
<StyleProvider buttonVariant="expand" siteBackground="floatingGradient" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="MomoKing"
ctaButton={{
text: "Order Now",
href: "https://talabat.com",
}}
navItems={navItems} />
logo="MomoKing"
logoImageSrc="http://img.b2bpic.net/free-psd/indian-food-restaurant-business-social-media-cover-template_23-2149571158.jpg"
ctaButton={{
text: "Order Now", href: "https://talabat.com"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Quick Links",
items: [
columns={[
{
label: "Menu",
href: "#menu",
title: "Quick Links", items: [
{ label: "Menu", href: "#menu" },
{ label: "Order", href: "https://talabat.com" },
],
},
{
label: "Order",
href: "https://talabat.com",
title: "Contact", items: [
{ label: "WhatsApp", href: "https://wa.me/96822094684" },
{ label: "Call Us", href: "tel:+96822094684" },
],
},
],
},
{
title: "Contact",
items: [
{
label: "WhatsApp",
href: "https://wa.me/96822094684",
},
{
label: "Call Us",
href: "tel:+96822094684",
},
],
},
]}
leftText="© 2024 MomoKing Oman. All rights reserved."
rightText="Muscat, Oman"
/>
]}
leftText="© 2024 MomoKing Oman. All rights reserved."
rightText="Muscat, Oman"
/>
</SectionErrorBoundary>
</StyleProvider>
);