diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 9751f61..3a68ad3 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,98 +7,39 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Inicio", - "href": "#hero" - }, - { - "name": "Nosotros", - "href": "#about" - }, - { - "name": "Productos", - "href": "#products" - }, - { - "name": "Contacto", - "href": "#contact" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "Inicio", href: "#hero" }, + { name: "Nosotros", href: "#about" }, + { name: "Productos", href: "#products" }, + { name: "Contacto", href: "#contact" }, + { name: "Features", href: "#features" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="Seguros Bolívar" + logoImageSrc="http://img.b2bpic.net/free-vector/letter-b-p-o-initial-logo-designs-vector-illustration_384344-1687.jpg" + ctaButton={{ text: "Mi Portal", href: "/login" }} + navItems={navItems} + />
+ columns={[ + { title: "Empresa", items: [{ label: "Nosotros", href: "#about" }, { label: "Empleos", href: "#" }] }, + { title: "Servicios", items: [{ label: "Cotizar", href: "#" }, { label: "Pagos", href: "#" }] }, + { title: "Legal", items: [{ label: "Privacidad", href: "#" }, { label: "Términos", href: "#" }] } + ]} + leftText="© 2024 Seguros Bolívar. Todos los derechos reservados." + rightText="Vigilado Superintendencia Financiera de Colombia." + />
);