Merge version_1_1781381725516 into main

Merge version_1_1781381725516 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-13 20:16:30 +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": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Process",
"href": "#process"
"name": "Process", "href": "#process"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -42,70 +35,51 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="GreenHeights Consult"
ctaButton={{
text: "Get Quote",
href: "#contact",
}}
navItems={navItems} />
logo="GreenHeights Consult"
logoImageSrc="http://img.b2bpic.net/free-vector/green-cypress-logo-business-branding-template-designs-inspiration-isolated-white-background_384344-1363.jpg"
ctaButton={{
text: "Get Quote", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Company",
items: [
columns={[
{
label: "About Us",
href: "#about",
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Our Process", href: "#services"},
{
label: "Contact", href: "#contact"},
],
},
{
label: "Our Process",
href: "#services",
title: "Services", items: [
{
label: "Landscaping", href: "#services"},
{
label: "Masonry", href: "#services"},
{
label: "Drainage", href: "#services"},
],
},
{
label: "Contact",
href: "#contact",
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
],
},
{
title: "Services",
items: [
{
label: "Landscaping",
href: "#services",
},
{
label: "Masonry",
href: "#services",
},
{
label: "Drainage",
href: "#services",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
leftText="© 2024 GreenHeights Consult. All Rights Reserved."
rightText="1 Signal Regiment, Accra, Ghana"
/>
]}
leftText="© 2024 GreenHeights Consult. All Rights Reserved."
rightText="1 Signal Regiment, Accra, Ghana"
/>
</SectionErrorBoundary>
</StyleProvider>
);