Merge version_1_1782242157436 into main #1

Merged
bender merged 1 commits from version_1_1782242157436 into main 2026-06-23 19:16:49 +00:00

View File

@@ -7,102 +7,77 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Gallery",
"href": "#gallery"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
},
{
"name": "Contact",
"href": "#contact"
}
];
{
"name": "Home", "href": "#hero"
},
{
"name": "About", "href": "#about"
},
{
"name": "Gallery", "href": "#gallery"
},
{
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Metrics", "href": "#metrics"
},
{
"name": "Faq", "href": "#faq"
},
{
"name": "Contact", "href": "#contact"
}
];
return (
<StyleProvider buttonVariant="elastic" siteBackground="noise" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Coffee Mug"
ctaButton={{
text: "Order Now",
href: "https://wolt.com",
}}
navItems={navItems} />
logo="Coffee Mug"
logoImageSrc="http://img.b2bpic.net/free-vector/minimal-logo-collection-two-colors_23-2148387451.jpg"
ctaButton={{
text: "Order Now", href: "https://wolt.com"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="Coffee Mug"
columns={[
{
title: "Navigation",
items: [
brand="Coffee Mug"
columns={[
{
label: "Menu",
href: "https://wolt.com",
title: "Navigation", items: [
{
label: "Menu", href: "https://wolt.com"},
{
label: "Locations", href: "#"},
{
label: "Contact", href: "tel:23724080"},
],
},
{
label: "Locations",
href: "#",
title: "Services", items: [
{
label: "Takeaway", href: "#"},
{
label: "Delivery", href: "#"},
{
label: "Catering", href: "#"},
],
},
]}
copyright="© 2024 Coffee Mug. All rights reserved."
links={[
{
label: "Contact",
href: "tel:23724080",
},
],
},
{
title: "Services",
items: [
label: "Privacy Policy", href: "#"},
{
label: "Takeaway",
href: "#",
},
{
label: "Delivery",
href: "#",
},
{
label: "Catering",
href: "#",
},
],
},
]}
copyright="© 2024 Coffee Mug. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);