From 3dc10a8076aceae5e6e1baaffbb720cc7a80689b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 15 Jun 2026 19:58:07 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 112 +++++++++++--------------------------- 1 file changed, 33 insertions(+), 79 deletions(-) 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: "#" } + ] + } + ]} + />
);