diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 7411c12..353e4ed 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -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 ( + logo="DOKATE" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=8sutsa" + ctaButton={{ + text: "WhatsApp", href: "https://wa.me/58..."}} + navItems={navItems} + />
+ ]} + copyright="© 2024 DOKATE. Todos los derechos reservados." + links={[ + { label: "Instagram", href: "#" }, + { label: "Política de Privacidad", href: "#" }, + ]} + />
);