Update src/app/contact/page.tsx

This commit is contained in:
2026-06-10 14:55:16 +00:00
parent 8a40d8efb6
commit 3d96264bbc

View File

@@ -31,14 +31,14 @@ export default function ContactPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="AirPro HVAC"
brandName="AFLA SACHET WATER"
navItems={[
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Services", id: "/#services" },
{ name: "About", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get a Quote", href: "/contact" }}
button={{ text: "Place an Order", href: "/contact" }}
animateOnLoad={false}
/>
</div>
@@ -47,12 +47,12 @@ export default function ContactPage() {
<ContactCTA
tag="Reach Out"
tagIcon={Phone}
title="Connect with AirPro HVAC"
title="Connect with AFLA Sachet Water"
description="We are available via WhatsApp, phone, or email to answer your questions and schedule service."
buttons={[
{ text: "WhatsApp Us", href: "https://wa.me/15559876543" },
{ text: "Call Us: +234 80 3064 8767", href: "tel:5559876543" },
{ text: "Email Us", href: "mailto:info@airprohvac.com" }
{ text: "WhatsApp Us", href: "https://wa.me/2341234567890" },
{ text: "Call Us: +234 80 3064 8767", href: "tel:1234567890" },
{ text: "Email Us", href: "mailto:info@aflasachetwater.com" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -61,19 +61,19 @@ export default function ContactPage() {
<div id="quote-form" data-section="quote-form">
<ContactSplitForm
title="Request a Free Quote"
description="Fill out the form below with your details and service needs. We'll get back to you within 24 hours. Our main office is located at 123 Climate Control Way, Austin, TX 78701."
title="Place Your Order Today"
description="Fill out the form below with your details and order requirements. We'll get back to you within 24 hours. Our main office is located at Plot 15, Waterways Ind. Estate, Lagos, Nigeria."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true },
{ name: "phone", type: "tel", placeholder: "Phone Number", required: false }
]}
textarea={{
name: "message", placeholder: "Tell us about your HVAC needs", rows: 5,
name: "message", placeholder: "Tell us about your order or inquiry", rows: 5,
required: true
}}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-10.jpg?_wi=2"
imageAlt="AirPro HVAC office location"
imageSrc="https://images.unsplash.com/photo-1549429406-be21a50c8e22?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
imageAlt="AFLA Sachet Water office location"
mediaPosition="right"
buttonText="Send Request"
onSubmit={handleSubmit}
@@ -83,36 +83,35 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterMedia
logoText="AirPro HVAC"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-10.jpg?_wi=3"
imageAlt="HVAC technician inspecting equipment"
logoText="AFLA SACHET WATER"
imageSrc="https://images.unsplash.com/photo-1517404177727-2c9e4726487e?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
imageAlt="Clean water in a glass"
columns={[
{
title: "Services", items: [
{ label: "AC Installation", href: "/" },
{ label: "Heating Systems", href: "/" },
{ label: "Maintenance Plans", href: "/" },
{ label: "Emergency Repairs", href: "/" },
],
title: "Products", items: [
{ label: "Sachet Water (50cl)", href: "/#services" },
{ label: "Bottled Water (75cl)", href: "/#services" },
{ label: "Dispenser Water (19L)", href: "/#services" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/" },
{ label: "Testimonials", href: "/" },
{ label: "FAQ", href: "/" },
{ label: "Contact", href: "/contact" },
],
{ label: "About Us", href: "/#about" },
{ label: "Testimonials", href: "/#testimonials" },
{ label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Contact", items: [
{ label: "(555) 987-6543", href: "tel:5559876543" },
{ label: "info@airprohvac.com", href: "mailto:info@airprohvac.com" },
{ label: "123 Climate Control Way, Austin, TX 78701", href: "https://maps.google.com/?q=123 Climate Control Way, Austin, TX 78701" },
{ label: "WhatsApp", href: "https://wa.me/15559876543" }
],
},
{ label: "(123) 456-7890", href: "tel:1234567890" },
{ label: "info@aflasachetwater.com", href: "mailto:info@aflasachetwater.com" },
{ label: "Plot 15, Waterways Ind. Estate, Lagos, Nigeria", href: "https://maps.google.com/?q=Plot 15, Waterways Industrial Estate, Lagos, Nigeria" },
{ label: "WhatsApp", href: "https://wa.me/2341234567890" }
]
}
]}
copyrightText="© 2026 | AirPro HVAC. NAFDAC Reg. No. A1-100273L."
copyrightText="© 2026 | AFLA SACHET WATER. NAFDAC Reg. No. A1-00123456L. All Rights Reserved."
/>
</div>
</ReactLenis>