Merge version_1_1781564558099 into main #1

Merged
bender merged 2 commits from version_1_1781564558099 into main 2026-06-15 23:03:39 +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": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Affordable Landscaping LLC"
logoImageSrc="http://img.b2bpic.net/free-vector/leaf-silhouette-logo_361591-2415.jpg"
ctaButton={{
text: "Get Free Estimate",
href: "#contact",
}}
text: "Get Free Estimate", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,33 +48,21 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Lawn Care",
href: "#services",
},
label: "Lawn Care", href: "#services"},
{
label: "Fencing",
href: "#services",
},
label: "Fencing", href: "#services"},
{
label: "Tree Removal",
href: "#services",
},
label: "Tree Removal", href: "#services"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "+1 859-402-4044",
href: "tel:+18594024044",
},
label: "+1 859-402-4044", href: "tel:+18594024044"},
{
label: "Email Us",
href: "mailto:info@affordablelandscaping.com",
},
label: "Email Us", href: "mailto:info@affordablelandscaping.com"},
],
},
]}