Merge version_1_1781521138100 into main #1

Merged
bender merged 2 commits from version_1_1781521138100 into main 2026-06-15 11:00:00 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "How It Works",
"href": "#steps"
"name": "How It Works", "href": "#steps"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,70 +35,50 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="3D Estates"
ctaButton={{
text: "Start Your Tour",
href: "#contact",
}}
navItems={navItems} />
logo="3D Estates"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=b0l62i"
ctaButton={{
text: "Start Your Tour", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Platform",
items: [
columns={[
{
label: "Features",
href: "#features",
title: "Platform", items: [
{
label: "Features", href: "#features"},
{
label: "Pricing", href: "#"},
{
label: "Support", href: "#"},
],
},
{
label: "Pricing",
href: "#",
title: "Company", items: [
{
label: "About Us", href: "#"},
{
label: "Careers", href: "#"},
{
label: "Contact", href: "#"},
],
},
{
label: "Support",
href: "#",
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "#",
},
{
label: "Careers",
href: "#",
},
{
label: "Contact",
href: "#",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
leftText="© 2024 3D Estates. All rights reserved."
rightText="Designed for real estate innovators."
/>
]}
leftText="© 2024 3D Estates. All rights reserved."
rightText="Designed for real estate innovators."
/>
</SectionErrorBoundary>
</StyleProvider>
);