Update src/app/page.tsx

This commit is contained in:
2026-05-29 23:22:48 +00:00
parent e98b78391b
commit f4bd2acc43

View File

@@ -64,14 +64,14 @@ export default function LandingPage() {
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/services#pricing" },
{ name: "Schedule", id: "/schedule" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "Book Now", id: "/schedule" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact Us", id: "/contact" }
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E9Amf4FlECC3Rdb7T1HjTAYRK7/uploaded-1779932862511-67bi4m4p.jpg"
logoAlt="SparkleBins Logo"
brandName="SparkleBins"
button={{
text: "Book Now", href: "/schedule"}}
text: "Contact Us", href: "/contact"}}
/>
</div>
@@ -80,7 +80,7 @@ export default function LandingPage() {
title="Dirty Bins? Not in Murrieta "
description="MURRIETA'S PREMIER BIN CLEANING\n(951)228-8810 "
buttons={[
{ text: "Book Now", href: "tel:9512288810"},
{ text: "Contact Us", href: "/contact"}
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E9Amf4FlECC3Rdb7T1HjTAYRK7/uploaded-1780004072964-ve3xbiif.png?_wi=2"
imageAlt="SparkleBins brand hero image, showing a sparkling clean trash can"
@@ -161,7 +161,7 @@ export default function LandingPage() {
variant: "plain"}}
useInvertedBackground={false}
buttons={[
{ text: "Book Now", href: "tel:9512288810" }
{ text: "Contact Us", href: "/contact" }
]}
/>
</div>
@@ -179,9 +179,9 @@ export default function LandingPage() {
},
{
title: "Company", items: [
{ label: "Testimonials", href: "#testimonials"},
{ label: "Testimonials", href: "/#testimonials"},
{ label: "Schedule", href: "/schedule"},
{ label: "Book Now", href: "/schedule"},
{ label: "Contact Us", href: "/contact"},
],
},
{
@@ -200,4 +200,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}