Merge version_1_1782241561238 into main #1

Merged
bender merged 1 commits from version_1_1782241561238 into main 2026-06-23 19:06:56 +00:00

View File

@@ -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() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Creative Lifestyle Realty"
ctaButton={{
text: "Contact Us",
href: "#contact",
}}
navItems={navItems} />
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} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="Creative Lifestyle Realty"
columns={[
{
items: [
brand="Creative Lifestyle Realty"
columns={[
{
label: "Office: 260 NE 17th Ter #204, Miami, FL 33132",
items: [
{
label: "Office: 260 NE 17th Ter #204, Miami, FL 33132"},
{
label: "Phone: +1 305-758-2265"},
],
},
{
label: "Phone: +1 305-758-2265",
},
],
},
{
items: [
{
label: "Listings",
href: "#listings",
items: [
{
label: "Listings", href: "#listings"},
{
label: "About Us", href: "#about"},
{
label: "Contact", href: "#contact"},
],
},
{
label: "About Us",
href: "#about",
items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
{
label: "Contact",
href: "#contact",
},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);