diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 480f8a2..f9c2aa0 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,105 +7,57 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Services", - "href": "#features" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Products", - "href": "#products" - }, - { - "name": "Social Proof", - "href": "#social-proof" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Services", href: "#features" }, + { name: "Contact", href: "#contact" }, + { name: "Products", href: "#products" }, + { name: "Social Proof", href: "#social-proof" }, + { name: "Metrics", href: "#metrics" } + ]; return ( + logo="ROMEJIA SRL" + logoImageSrc="http://img.b2bpic.net/free-photo/golden-lightning-bolt-icon-glowing-textured-brown-background_84443-91489.jpg" + ctaButton={{ + text: "Get Quote", href: "#contact"}} + navItems={navItems} + />
+ ]} + />
);