diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index b883035..796096f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,102 +7,56 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Reviews", - "href": "#testimonials" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { name: "About", href: "#about" }, + { name: "Services", href: "#services" }, + { name: "Pricing", href: "#pricing" }, + { name: "Reviews", href: "#testimonials" }, + { name: "Hero", href: "#hero" }, + { name: "Metrics", href: "#metrics" }, + { name: "Faq", href: "#faq" } + ]; return ( + logo="ECC Lawn Mowing" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=cwevjb" + ctaButton={{ + text: "Free Quote", href: "#contact"}} + navItems={navItems} + />
+ items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ] + } + ]} + />
);