Update src/app/page.tsx

This commit is contained in:
2026-06-10 05:11:47 +00:00
parent 050cde8210
commit 760c6a4d39

View File

@@ -32,15 +32,15 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="Dania Plumbing Services" brandName="Dania Plumbing Services"
navItems={[ navItems={[
{ "name": "Home", "id": "#home" }, { "name": "Home", "id": "home" },
{ "name": "Services", "id": "#services" }, { "name": "Services", "id": "services" },
{ "name": "About Us", "id": "#about" }, { "name": "About Us", "id": "about" },
{ "name": "Testimonials", "id": "#testimonials" }, { "name": "Testimonials", "id": "testimonials" },
{ "name": "FAQ", "id": "#faq" }, { "name": "FAQ", "id": "faq" },
{ "name": "Contact", "id": "#contact" } { "name": "Contact", "id": "contact" }
]} ]}
button={{ button={{
"text": "Get A Free Quote", "href": "#contact" "text": "Get A Free Quote", "href": "contact"
}} }}
/> />
</div> </div>
@@ -68,8 +68,8 @@ export default function LandingPage() {
]} ]}
tag="Emergency Service" tag="Emergency Service"
buttons={[ buttons={[
{ "text": "Schedule Service", "href": "#contact" }, { "text": "Schedule Service", "href": "contact" },
{ "text": "See Our Work", "href": "#services" } { "text": "See Our Work", "href": "services" }
]} ]}
carouselPosition="right" carouselPosition="right"
tagAnimation="entrance-slide" tagAnimation="entrance-slide"
@@ -223,20 +223,20 @@ export default function LandingPage() {
logoText="Dania Plumbing Services" logoText="Dania Plumbing Services"
columns={[ columns={[
{ "items": [ { "items": [
{ "label": "Emergency Service", "href": "#services" }, { "label": "Emergency Service", "href": "services" },
{ "label": "Water Heater Repair", "href": "#services" }, { "label": "Water Heater Repair", "href": "services" },
{ "label": "Leak Detection", "href": "#services" }, { "label": "Leak Detection", "href": "services" },
{ "label": "Drain Cleaning", "href": "#packages" } { "label": "Drain Cleaning", "href": "packages" }
]}, ]},
{ "items": [ { "items": [
{ "label": "About Us", "href": "#about" }, { "label": "About Us", "href": "about" },
{ "label": "Our Values", "href": "#about" }, { "label": "Our Values", "href": "about" },
{ "label": "Testimonials", "href": "#testimonials" }, { "label": "Testimonials", "href": "testimonials" },
{ "label": "Areas Served", "href": "#faq" } { "label": "Areas Served", "href": "faq" }
]}, ]},
{ "items": [ { "items": [
{ "label": "FAQ", "href": "#faq" }, { "label": "FAQ", "href": "faq" },
{ "label": "Contact Us", "href": "#contact" }, { "label": "Contact Us", "href": "contact" },
{ "label": "Privacy Policy", "href": "#" }, { "label": "Privacy Policy", "href": "#" },
{ "label": "Terms of Service", "href": "#" } { "label": "Terms of Service", "href": "#" }
]} ]}