Merge version_1_1781470186041 into main #1

Merged
bender merged 2 commits from version_1_1781470186041 into main 2026-06-14 20:50:52 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Listings",
"href": "#features"
"name": "Listings", "href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,59 +35,44 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="UyBozor"
ctaButton={{
text: "Post Listing",
href: "#contact",
}}
navItems={navItems} />
logo="UyBozor"
logoImageSrc="http://img.b2bpic.net/free-vector/geometric-isometric-real-estate-logo_23-2149537171.jpg"
ctaButton={{
text: "Post Listing", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="UyBozor"
columns={[
{
title: "Company",
items: [
brand="UyBozor"
columns={[
{
label: "About Us",
href: "#about",
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Contact", href: "#contact"},
],
},
{
label: "Contact",
href: "#contact",
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
],
},
{
title: "Legal",
items: [
]}
copyright="© 2024 UyBozor. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Twitter", href: "#"},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
copyright="© 2024 UyBozor. All rights reserved."
links={[
{
label: "Twitter",
href: "#",
},
{
label: "Telegram",
href: "#",
},
]}
/>
label: "Telegram", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);