Merge version_1_1782370013189 into main

Merge version_1_1782370013189 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-25 06:48:24 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Properties",
"href": "#properties"
"name": "Properties", "href": "#properties"
},
{
"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": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,81 +35,58 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="PrimeNest"
ctaButton={{
text: "Contact Agent",
href: "#contact",
}}
navItems={navItems} />
logo="PrimeNest"
logoImageSrc="http://img.b2bpic.net/free-photo/home-insurance-cut-out-icon_53876-14837.jpg"
ctaButton={{
text: "Contact Agent", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="PrimeNest Properties"
columns={[
{
title: "Company",
items: [
brand="PrimeNest Properties"
columns={[
{
label: "About",
href: "#about",
title: "Company", items: [
{
label: "About", href: "#about"},
{
label: "Services", href: "#services"},
{
label: "Properties", href: "#properties"},
],
},
{
label: "Services",
href: "#services",
title: "Resources", items: [
{
label: "FAQ", href: "#faq"},
{
label: "Contact", href: "#contact"},
{
label: "Support", href: "#"},
],
},
{
label: "Properties",
href: "#properties",
title: "Location", items: [
{
label: "Sector 62, Noida", href: "#"},
{
label: "Uttar Pradesh, India", href: "#"},
],
},
],
},
{
title: "Resources",
items: [
]}
copyright="© 2024 PrimeNest Properties. All rights reserved."
links={[
{
label: "FAQ",
href: "#faq",
},
label: "Privacy Policy", href: "#"},
{
label: "Contact",
href: "#contact",
},
{
label: "Support",
href: "#",
},
],
},
{
title: "Location",
items: [
{
label: "Sector 62, Noida",
href: "#",
},
{
label: "Uttar Pradesh, India",
href: "#",
},
],
},
]}
copyright="© 2024 PrimeNest Properties. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/home-insurance-cut-out-icon_53876-14837.jpg"
/>
label: "Terms of Service", href: "#"},
]}
imageSrc="http://img.b2bpic.net/free-photo/home-insurance-cut-out-icon_53876-14837.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>
);