From f3402f2390dc64e7e81fc55a096efc7716d6a2cf Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 29 Apr 2026 16:36:14 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 113 ++++++++++++-------------------------- 1 file changed, 35 insertions(+), 78 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 5052a0c..da4bfaf 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -6,93 +6,50 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Social Proof", - "href": "#social-proof" - } -]; + { name: "About", href: "#about" }, + { name: "Services", href: "#services" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "Contact", href: "#contact" }, + { name: "Hero", href: "#hero" }, + { name: "Metrics", href: "#metrics" }, + { name: "Social Proof", href: "#social-proof" } + ]; return ( + logo="Greenscape" + ctaButton={{ + text: "Get Quote", href: "#contact"}} + navItems={navItems} + />
+ brand="Greenscape" + columns={[ + { + title: "Company", items: [ + { label: "About", href: "#about" }, + { label: "Careers", href: "#" }, + ], + }, + { + title: "Services", items: [ + { label: "Design", href: "#services" }, + { label: "Lawn Care", href: "#services" }, + ], + }, + ]} + copyright="© 2024 Greenscape Landscaping." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + ]} + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gsn9im" + />
); } -- 2.49.1