Merge version_1_1780756920351 into main #1

Merged
bender merged 2 commits from version_1_1780756920351 into main 2026-06-06 14:43:50 +00:00

View File

@@ -8,36 +8,28 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "About Us",
"href": "#about"
"name": "About Us", "href": "#about"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Projects",
"href": "#projects"
"name": "Projects", "href": "#projects"
},
{
"name": "Team",
"href": "#team"
"name": "Team", "href": "#team"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -47,10 +39,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="GreenScape Pros"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=qj06qn"
ctaButton={{
text: "Get a Quote",
href: "#contact",
}}
text: "Get a Quote", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -63,69 +54,43 @@ export default function Layout() {
{
items: [
{
label: "Lawn Care",
href: "#services",
},
label: "Lawn Care", href: "#services"},
{
label: "Garden Design",
href: "#services",
},
label: "Garden Design", href: "#services"},
{
label: "Tree & Shrub",
href: "#services",
},
label: "Tree & Shrub", href: "#services"},
{
label: "Irrigation",
href: "#services",
},
label: "Irrigation", href: "#services"},
],
},
{
items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Our Team",
href: "#team",
},
label: "Our Team", href: "#team"},
{
label: "Projects",
href: "#projects",
},
label: "Projects", href: "#projects"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
],
},
{
items: [
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
{
label: "Get a Quote",
href: "mailto:info@greenscapepros.com",
},
label: "Get a Quote", href: "mailto:info@greenscapepros.com"},
{
label: "Blog",
href: "#",
},
label: "Blog", href: "#"},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}