From 6b380885bca401c00d1612a57184b61368f14153 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 19:06:53 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 92 +++++++++++++++------------------------ 1 file changed, 36 insertions(+), 56 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 98e6aae..9493753 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Listings", - "href": "#listings" + "name": "Listings", "href": "#listings" }, { - "name": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -42,60 +35,47 @@ export default function Layout() { + logo="Creative Lifestyle Realty" + logoImageSrc="http://img.b2bpic.net/free-vector/modern-skyscraper-real-estate-logo-line-style_1017-62470.jpg" + ctaButton={{ + text: "Contact Us", href: "#contact"}} + navItems={navItems} />
+ ]} + /> ); -- 2.49.1