Merge version_1_1781400459265 into main #1

Merged
bender merged 2 commits from version_1_1781400459265 into main 2026-06-14 01:28:45 +00:00

View File

@@ -7,94 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Inicio",
"href": "#hero"
},
{
"name": "Platos",
"href": "#dishes"
},
{
"name": "Sobre Nosotros",
"href": "#about"
},
{
"name": "Contacto",
"href": "#contact"
},
{
"name": "Flavors",
"href": "#flavors"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
}
];
{ name: "Inicio", href: "#hero" },
{ name: "Platos", href: "#dishes" },
{ name: "Sobre Nosotros", href: "#about" },
{ name: "Contacto", href: "#contact" },
{ name: "Flavors", href: "#flavors" },
{ name: "Metrics", href: "#metrics" },
{ name: "Testimonials", href: "#testimonials" }
];
return (
<StyleProvider buttonVariant="stagger" siteBackground="noise" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="DOKATE"
ctaButton={{
text: "WhatsApp",
href: "https://wa.me/58...",
}}
navItems={navItems} />
logo="DOKATE"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=8sutsa"
ctaButton={{
text: "WhatsApp", href: "https://wa.me/58..."}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="DOKATE"
columns={[
{
title: "Menú",
items: [
brand="DOKATE"
columns={[
{
label: "Hamburguesas",
href: "#",
title: "Menú", items: [
{ label: "Hamburguesas", href: "#" },
{ label: "Tequeños", href: "#" },
],
},
{
label: "Tequeños",
href: "#",
title: "Contacto", items: [
{ label: "WhatsApp", href: "#" },
{ label: "Ubicación", href: "#" },
],
},
],
},
{
title: "Contacto",
items: [
{
label: "WhatsApp",
href: "#",
},
{
label: "Ubicación",
href: "#",
},
],
},
]}
copyright="© 2024 DOKATE. Todos los derechos reservados."
links={[
{
label: "Instagram",
href: "#",
},
{
label: "Política de Privacidad",
href: "#",
},
]}
/>
]}
copyright="© 2024 DOKATE. Todos los derechos reservados."
links={[
{ label: "Instagram", href: "#" },
{ label: "Política de Privacidad", href: "#" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);