Merge version_1_1782211384143 into main #2

Merged
bender merged 1 commits from version_1_1782211384143 into main 2026-06-23 10:44:08 +00:00

View File

@@ -7,102 +7,55 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "Menu",
"href": "#menu"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
}
];
{ name: "Home", href: "#hero" },
{ name: "Menu", href: "#menu" },
{ name: "About", href: "#about" },
{ name: "Contact", href: "#contact" },
{ name: "Features", href: "#features" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "Faq", href: "#faq" }
];
return (
<StyleProvider buttonVariant="bubble" siteBackground="gridLines" heroBackground="lightRaysCorner">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Tracey's"
ctaButton={{
text: "Order Online",
href: "#",
}}
navItems={navItems} />
logo="Tracey's"
logoImageSrc="https://storage.googleapis.com/webild/users/user_3FXB7t9Onsty9H2NBDgxKTUEJYy/uploaded-1782211396325-8f976wfq.png"
ctaButton={{
text: "Order Online", href: "#"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="Traceys Belizean Restaurant"
columns={[
{
title: "Menu",
items: [
brand="Traceys Belizean Restaurant"
columns={[
{
label: "Breakfast",
href: "#menu",
title: "Menu", items: [
{ label: "Breakfast", href: "#menu" },
{ label: "Dinner", href: "#menu" },
{ label: "Desserts", href: "#menu" },
],
},
{
label: "Dinner",
href: "#menu",
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Reviews", href: "#testimonials" },
{ label: "Contact", href: "#contact" },
],
},
{
label: "Desserts",
href: "#menu",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "#about",
},
{
label: "Reviews",
href: "#testimonials",
},
{
label: "Contact",
href: "#contact",
},
],
},
]}
copyright="© 2025 Traceys Belizean Restaurant. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
]}
copyright="© 2025 Traceys Belizean Restaurant. All rights reserved."
links={[
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);