Merge version_1_1781705788998 into main #1

Merged
bender merged 2 commits from version_1_1781705788998 into main 2026-06-17 14:17:44 +00:00

View File

@@ -7,90 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Menu",
"href": "#menu"
},
{
"name": "Reviews",
"href": "#testimonials"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Metrics",
"href": "#metrics"
}
];
{ name: "Home", href: "#hero" },
{ name: "About", href: "#about" },
{ name: "Menu", href: "#menu" },
{ name: "Reviews", href: "#testimonials" },
{ name: "Contact", href: "#contact" },
{ name: "Features", href: "#features" },
{ name: "Metrics", href: "#metrics" }
];
return (
<StyleProvider buttonVariant="bubble" siteBackground="noiseGradient" heroBackground="lightRaysCorner">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloating
logo="Shawarma Alassima"
ctaButton={{
text: "Call Now",
href: "tel:0778330094",
}}
navItems={navItems} />
logo="Shawarma Alassima"
ctaButton={{ text: "Call Now", href: "tel:0778330094" }}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
imageSrc="http://img.b2bpic.net/free-photo/vertical-view-lighting-shop-market-marrakech_268835-3978.jpg"
brand="Shawarma Alassima"
columns={[
{
title: "Quick Links",
items: [
imageSrc="http://img.b2bpic.net/free-photo/vertical-view-lighting-shop-market-marrakech_268835-3978.jpg"
brand="Shawarma Alassima"
columns={[
{
label: "Menu",
href: "#menu",
title: "Quick Links", items: [
{ label: "Menu", href: "#menu" },
{ label: "About", href: "#about" },
{ label: "Reviews", href: "#testimonials" }
]
},
{
label: "About",
href: "#about",
},
{
label: "Reviews",
href: "#testimonials",
},
],
},
{
title: "Contact",
items: [
{
label: "Call: 07 78 33 00 94",
href: "tel:0778330094",
},
{
label: "Location: Marrakesh",
href: "#",
},
],
},
]}
copyright="© 2024 Shawarma Alassima. All rights reserved."
/>
title: "Contact", items: [
{ label: "Call: 07 78 33 00 94", href: "tel:0778330094" },
{ label: "Location: Marrakesh", href: "#" }
]
}
]}
copyright="© 2024 Shawarma Alassima. All rights reserved."
links={[{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }]}
/>
</SectionErrorBoundary>
</StyleProvider>
);
}
}