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} />
+ ]}
+ />
);