Merge version_1_1782211645099 into main #3

Merged
bender merged 1 commits from version_1_1782211645099 into main 2026-06-23 10:48:59 +00:00

View File

@@ -7,70 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home", "href": "#hero"
},
{
"name": "Menu", "href": "#menu"
},
{
"name": "Reservations", "href": "#reservations"
},
{
"name": "About", "href": "#about"
},
{
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq", "href": "#faq"
},
{
"name": "Contact", "href": "#contact"
}
];
{ name: "Home", href: "#hero" },
{ name: "Menu", href: "#menu" },
{ name: "Reservations", href: "#reservations" },
{ name: "About", href: "#about" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "Faq", href: "#faq" },
{ name: "Contact", href: "#contact" }
];
return (
<StyleProvider buttonVariant="shift" siteBackground="noise" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarDropdown
logo="Zaitoon"
ctaButton={{
text: "Book Table", href: "#contact"}}
navItems={navItems} />
logo="Zaitoon"
ctaButton={{ text: "Book Table", href: "#contact" }}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Zaitoon By Galaxy"
columns={[
{
title: "Quick Links", items: [
brand="Zaitoon By Galaxy"
columns={[
{
label: "Menu", href: "#menu"},
title: "Quick Links", items: [
{ label: "Menu", href: "#menu" },
{ label: "Reservations", href: "#contact" },
],
},
{
label: "Reservations", href: "#contact"},
],
},
{
title: "Location", items: [
{
label: "Av. Kenneth Kaunda, 458", href: "#"},
{
label: "Maputo, Mozambique", href: "#"},
],
},
],
links={[
{ label: "Menu", href: "#menu" },
{ label: "Contact", href: "#contact" }
]}
copyright="© 2024 Zaitoon By Galaxy. All rights reserved."
imageSrc="http://img.b2bpic.net/free-photo/adding-pinch-sumakh-lavash-kutab_114579-2336.jpg"
/>
title: "Location", items: [
{ label: "Av. Kenneth Kaunda, 458", href: "#" },
{ label: "Maputo, Mozambique", href: "#" },
],
},
]
}
links={[
{ label: "Menu", href: "#menu" },
{ label: "Contact", href: "#contact" }
]}
copyright="© 2024 Zaitoon By Galaxy. All rights reserved."
imageSrc="http://img.b2bpic.net/free-photo/adding-pinch-sumakh-lavash-kutab_114579-2336.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>
);