Update src/app/page.tsx

This commit is contained in:
2026-05-30 04:37:04 +00:00
parent c335a3811c
commit 8ced86018b

View File

@@ -44,11 +44,11 @@ export default function LandingPage() {
{
name: "Testimonials", id: "/#testimonials"},
{
name: "Contact", id: "/#contact"},
name: "Contact", id: "/contact"},
]}
brandName="Lombard Landscaping by Morris LDC"
button={{
text: "Get a Free Quote", href: "/#contact"}}
text: "Get a Free Quote", href: "/contact"}}
animateOnLoad={true}
/>
</div>
@@ -61,7 +61,7 @@ export default function LandingPage() {
description="Creating breathtaking landscapes and outdoor living spaces tailored to your vision and lifestyle. Experience unparalleled beauty and functionality."
buttons={[
{
text: "Get a Free Consultation", href: "/#contact"},
text: "Get a Free Consultation", href: "/contact"},
{
text: "View Our Portfolio", href: "/#portfolio"},
]}
@@ -242,9 +242,7 @@ export default function LandingPage() {
text="Ready to Transform Your Landscape?"
buttons={[
{
text: "Get Your Free Consultation", href: "/#contact"},
{
text: "Call Us Today", href: "tel:+1234567890"},
text: "Call Us Today", href: "tel:+16306616168"},
]}
/>
</div>
@@ -279,9 +277,9 @@ export default function LandingPage() {
{
title: "Connect", items: [
{
label: "Contact Us", href: "/#contact"},
label: "Contact Us", href: "/contact"},
{
label: "Get a Quote", href: "/#contact"},
label: "Get a Quote", href: "/contact"},
],
},
]}
@@ -292,4 +290,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}