Merge version_1_1781442915388 into main #1

Merged
bender merged 2 commits from version_1_1781442915388 into main 2026-06-14 13:16:25 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Cocktails",
"href": "#gallery"
"name": "Cocktails", "href": "#gallery"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,59 +35,44 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Café Madrid"
ctaButton={{
text: "Book Table",
href: "#contact",
}}
navItems={navItems} />
logo="Café Madrid"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=en4w80"
ctaButton={{
text: "Book Table", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="Café Madrid Valencia"
columns={[
{
title: "Navigation",
items: [
brand="Café Madrid Valencia"
columns={[
{
label: "About",
href: "#about",
title: "Navigation", items: [
{
label: "About", href: "#about"},
{
label: "Cocktails", href: "#gallery"},
],
},
{
label: "Cocktails",
href: "#gallery",
title: "Legal", items: [
{
label: "Privacy", href: "#"},
{
label: "Terms", href: "#"},
],
},
],
},
{
title: "Legal",
items: [
]}
copyright="© 2025 Café Madrid Valencia. All rights reserved."
links={[
{
label: "Privacy",
href: "#",
},
label: "Twitter", href: "#"},
{
label: "Terms",
href: "#",
},
],
},
]}
copyright="© 2025 Café Madrid Valencia. All rights reserved."
links={[
{
label: "Twitter",
href: "#",
},
{
label: "Instagram",
href: "#",
},
]}
/>
label: "Instagram", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);