2 Commits

Author SHA1 Message Date
a5ed57aaa1 Update src/app/page.tsx 2026-06-10 05:15:19 +00:00
760c6a4d39 Update src/app/page.tsx 2026-06-10 05:11:47 +00:00

View File

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