Compare commits
32 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1bc3a30df1 | |||
| e97d48edf8 | |||
| a44ff289b6 | |||
| 830abc6ce5 | |||
| 7a66d3c74b | |||
| da6f641a81 | |||
| 6931c27c39 | |||
| 1061975997 | |||
| 85a4bce8fc | |||
| a616f8f246 | |||
| 9898523aa0 | |||
| 3d96264bbc | |||
| 8a40d8efb6 | |||
| 3f50356385 | |||
| 01099d0acb | |||
| 2c561a0825 | |||
| 01e0351b66 | |||
| 6d07bf93e7 | |||
| 49d39bd1e9 | |||
| 0e130f80c7 | |||
| 0de56e220c | |||
| cba4b971d7 | |||
| ab916ae31d | |||
| 4a6d72d234 | |||
| 9d0f73d578 | |||
| d86e73d040 | |||
| 2b92fc213d | |||
| 4683cd1f55 | |||
| de07daf786 | |||
| 697fb1cf34 | |||
| 8eecae9bfc | |||
| 653d988155 |
121
src/app/contact/page.tsx
Normal file
121
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,121 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||||
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||||
|
import { Phone, MessageCircle, Mail } from "lucide-react";
|
||||||
|
|
||||||
|
export default function ContactPage() {
|
||||||
|
const handleSubmit = (data: Record<string, string>) => {
|
||||||
|
console.log("Form submitted:", data);
|
||||||
|
// Handle form submission logic here (e.g., send to API)
|
||||||
|
alert("Your request has been sent! We will get back to you shortly.");
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="directional-hover"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="soft"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="aurora"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="semibold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
brandName="AFLA SACHET WATER"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Services", id: "/#services" },
|
||||||
|
{ name: "Wholesale", id: "/#wholesale-pricing" },
|
||||||
|
{ name: "About", id: "/#about" },
|
||||||
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
|
{ name: "Contact", id: "/contact" }
|
||||||
|
]}
|
||||||
|
button={{ text: "WhatsApp Us", href: "https://wa.me/2341234567890" }}
|
||||||
|
animateOnLoad={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact-details" data-section="contact-details">
|
||||||
|
<ContactCTA
|
||||||
|
tag="Reach Out"
|
||||||
|
tagIcon={Phone}
|
||||||
|
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/2341234567890" },
|
||||||
|
{ text: "Call Us: +234 80 3064 8767", href: "tel:1234567890" },
|
||||||
|
{ text: "Email Us", href: "mailto:info@aflasachetwater.com" }
|
||||||
|
]}
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="quote-form" data-section="quote-form">
|
||||||
|
<ContactSplitForm
|
||||||
|
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 order or inquiry", rows: 5,
|
||||||
|
required: true
|
||||||
|
}}
|
||||||
|
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&_wi=1"
|
||||||
|
imageAlt="AFLA Sachet Water office location"
|
||||||
|
mediaPosition="right"
|
||||||
|
buttonText="Send Request"
|
||||||
|
onSubmit={handleSubmit}
|
||||||
|
useInvertedBackground={true}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterMedia
|
||||||
|
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&_wi=1"
|
||||||
|
imageAlt="Clean water in a glass"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
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: "/#about" },
|
||||||
|
{ label: "Testimonials", href: "/#testimonials" },
|
||||||
|
{ label: "FAQ", href: "/#faq" },
|
||||||
|
{ label: "Contact", href: "/contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Contact", items: [
|
||||||
|
{ 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 | AFLA SACHET WATER. NAFDAC Reg. No. A1-00123456L. All Rights Reserved."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
265
src/app/page.tsx
265
src/app/page.tsx
@@ -12,9 +12,10 @@ import TestimonialCardThirteen from "@/components/sections/testimonial/Testimoni
|
|||||||
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||||
import { ShieldCheck, Wrench, DollarSign, Phone } from "lucide-react";
|
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
||||||
|
import { ShieldCheck, Wrench, DollarSign, Phone, Factory, ShoppingCart } from "lucide-react";
|
||||||
|
|
||||||
export default function HvacPage() {
|
export default function SachetWaterPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="directional-hover"
|
defaultButtonVariant="directional-hover"
|
||||||
@@ -31,60 +32,57 @@ export default function HvacPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
brandName="AirPro HVAC"
|
brandName="AFLA SACHET WATER"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
|
{ name: "Wholesale", id: "wholesale-pricing" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Get a Quote", href: "#contact" }}
|
button={{ text: "WhatsApp Us", href: "https://wa.me/2341234567890" }}
|
||||||
animateOnLoad={false}
|
animateOnLoad={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroOverlay
|
<HeroOverlay
|
||||||
title="Your Comfort Is Our Priority"
|
title="Pure Water You Can Trust"
|
||||||
description="Professional heating, ventilation, and air conditioning services for homes and businesses. From installations to emergency repairs, we keep your climate perfect year-round."
|
description="NAFDAC Approved Sachet Water Supplier in Rigasa, Kaduna."
|
||||||
avatars={[
|
avatars={[
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg", alt: "Client" },
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg", alt: "Client" },
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg", alt: "Client" },
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg", alt: "Client" },
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.jpg", alt: "Client" },
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.jpg", alt: "Client" }
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by 500+ clients"
|
avatarText="Trusted by 1000+ happy customers"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Schedule Service", href: "#contact" },
|
{ text: "Order Wholesale", href: "/contact" },
|
||||||
{ text: "Our Services", href: "#services" },
|
{ text: "WhatsApp", href: "https://wa.me/2341234567890" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-1.jpg"
|
imageSrc="https://images.unsplash.com/photo-1627889146522-d7b172a1e0f0?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
|
||||||
imageAlt="HVAC technician performing system maintenance"
|
imageAlt="Big image of sachet water packs"
|
||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<MetricSplitMediaAbout
|
<MetricSplitMediaAbout
|
||||||
tag="About Us"
|
tag="Our Story"
|
||||||
title="Reliable Climate Solutions Since 2005"
|
title="AFLA Sachet Water: Purity in Every Drop"
|
||||||
description="AirPro HVAC has been keeping homes and businesses comfortable for nearly two decades. Our certified technicians deliver expert installations, maintenance, and repairs — backed by transparent pricing and a commitment to getting the job done right the first time."
|
description="Since 2010, AFLA Sachet Water has been dedicated to providing high-quality, NAFDAC-certified sachet water across the region. Our state-of-the-art purification process ensures every sachet meets the highest standards of safety and taste. We believe in accessible, pure drinking water for everyone."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
value: "2,500+",
|
value: "5M+", title: "Sachets produced monthly"
|
||||||
title: "Systems installed and serviced",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: "98%",
|
value: "100%", title: "NAFDAC compliance"
|
||||||
title: "Customer satisfaction rate",
|
}
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-2.jpg"
|
imageSrc="https://images.unsplash.com/photo-1610427976150-e83c0764724b?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&_wi=1"
|
||||||
imageAlt="Commercial HVAC units on rooftop"
|
imageAlt="Water filtration system"
|
||||||
mediaBadge={{
|
mediaBadge={{
|
||||||
text: "Active Now",
|
text: "Quality Assured", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-3.jpg", avatarAlt: "Quality Control Officer"
|
||||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-3.jpg",
|
|
||||||
avatarAlt: "Technician"
|
|
||||||
}}
|
}}
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
@@ -93,47 +91,29 @@ export default function HvacPage() {
|
|||||||
</div>
|
</div>
|
||||||
<div id="services" data-section="services">
|
<div id="services" data-section="services">
|
||||||
<FeatureCardOne
|
<FeatureCardOne
|
||||||
title="Our Services"
|
title="Our Pure Water Solutions"
|
||||||
description="From installations to emergency repairs, we have your comfort covered."
|
description="Dedicated to delivering the highest quality sachet water for all your needs."
|
||||||
buttons={[{ text: "Get a Quote", href: "#contact" }]}
|
buttons={[{ text: "Place an Order", href: "/contact" }]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "AC Installation",
|
title: "Advanced Purification", description: "Utilizing multi-stage filtration and sterilization for consistently pure water.", imageSrc: "https://images.unsplash.com/photo-1627889146522-d7b172a1e0f0?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&_wi=1", imageAlt: "Sachet water packaging line"
|
||||||
description: "Expert installation of high-efficiency air conditioning systems for homes and commercial spaces.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-4.jpg",
|
|
||||||
imageAlt: "AC installation service",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Heating Systems",
|
title: "Rigorous Quality Control", description: "Daily lab testing ensures every batch meets NAFDAC standards.", imageSrc: "https://images.unsplash.com/photo-1596707328227-86c2688029d5?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&_wi=1", imageAlt: "Laboratory quality check"
|
||||||
description: "Complete furnace and heat pump installations to keep you warm through every winter.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-5.jpg",
|
|
||||||
imageAlt: "Heating system service",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Maintenance Plans",
|
title: "Bulk Orders & Delivery", description: "Convenient delivery services for homes, offices, and events.", imageSrc: "https://images.unsplash.com/photo-1606768393521-125d06112c2a?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&_wi=1", imageAlt: "Water delivery truck"
|
||||||
description: "Preventative maintenance programs that extend the life of your system and reduce energy costs.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-6.jpg",
|
|
||||||
imageAlt: "HVAC maintenance",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Emergency Repairs",
|
title: "Extensive Distribution", description: "Our network ensures widespread availability of AFLA Sachet Water.", imageSrc: "https://images.unsplash.com/photo-1588147426867-b52b71946001?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", imageAlt: "People receiving water delivery"
|
||||||
description: "24/7 emergency repair service — we respond fast when your system breaks down unexpectedly.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-7.jpg",
|
|
||||||
imageAlt: "Emergency HVAC repair",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Duct Cleaning",
|
title: "Community Hydration Programs", description: "Partnering for health and wellness in our local communities.", imageSrc: "https://images.unsplash.com/photo-1610996884638-348e02d4151a?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", imageAlt: "Community water distribution"
|
||||||
description: "Professional duct cleaning to improve air quality and system efficiency throughout your property.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-8.jpg",
|
|
||||||
imageAlt: "Duct cleaning service",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "System Inspections",
|
title: "Corporate Partnerships", description: "Customized water solutions for businesses and large organizations.", 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&_wi=2", imageAlt: "Business meeting discussing partnership"
|
||||||
description: "Thorough inspections with detailed reports and transparent recommendations — no hidden fees.",
|
}
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-9.jpg",
|
|
||||||
imageAlt: "HVAC system inspection",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
uniformGridCustomHeightClasses="aspect-square"
|
uniformGridCustomHeightClasses="aspect-square"
|
||||||
@@ -144,25 +124,50 @@ export default function HvacPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="wholesale-pricing" data-section="wholesale-pricing">
|
||||||
|
<PricingCardThree
|
||||||
|
tag="Wholesale"
|
||||||
|
title="Wholesale Price List"
|
||||||
|
description="Flexible pricing options for businesses and bulk purchases. Partner with AFLA Sachet Water for reliable supply."
|
||||||
|
plans={[
|
||||||
|
{
|
||||||
|
id: "20-sachets-carton", badge: "Standard Carton", badgeIcon: ShoppingCart,
|
||||||
|
price: "₦1,500", name: "Carton of 20 Sachets", buttons: [{ text: "Order Carton", href: "/contact" }],
|
||||||
|
features: [
|
||||||
|
"20 x 50cl sachets per carton", "High purity water, NAFDAC approved", "Convenient for retail & small businesses", "Local delivery options"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "bulk-orders", badge: "Best Value", badgeIcon: Factory,
|
||||||
|
price: "Custom Quote", name: "Bulk & Distributor Orders", buttons: [{ text: "Get Custom Quote", href: "/contact" }],
|
||||||
|
features: [
|
||||||
|
"Min. 100 cartons order", "Significant volume discounts", "Dedicated account management", "Priority and large-scale delivery"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<FeatureBorderGlow
|
<FeatureBorderGlow
|
||||||
title="Why Choose AirPro"
|
title="Why Choose AFLA Water?"
|
||||||
description="What sets us apart from the rest"
|
description="Ensuring your health and hydration with every sachet."
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: ShieldCheck,
|
icon: ShieldCheck,
|
||||||
title: "Reliability & Trust",
|
title: "Certified Purity", description: "NAFDAC-approved for quality and safety, giving you peace of mind."
|
||||||
description: "Looking for a dependable HVAC company? We arrive on time and do the job right.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Wrench,
|
icon: Wrench,
|
||||||
title: "Quality Workmanship",
|
title: "Advanced Filtration", description: "Our multi-stage purification process removes impurities, ensuring pristine water."
|
||||||
description: "Our skilled technicians excel in various HVAC repairs, using only top-quality materials.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: DollarSign,
|
icon: DollarSign,
|
||||||
title: "Fair & Transparent Pricing",
|
title: "Affordable & Reliable", description: "Premium quality water at competitive prices, with consistent availability."
|
||||||
description: "No surprises here! We offer clear quotes and fair pricing for quality work.",
|
}
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -170,69 +175,42 @@ export default function HvacPage() {
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<FeatureCardEight
|
<FeatureCardEight
|
||||||
title="How It Works"
|
title="Our Journey to Purity"
|
||||||
description="Our simple process from first call to finished job"
|
description="From sourcing to your doorstep, our commitment to quality."
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Schedule a Call",
|
title: "Water Sourcing", description: "Sustainably sourced from pristine, protected natural reserves.", imageSrc: "https://images.unsplash.com/photo-1596707328227-86c2688029d5?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&_wi=2", imageAlt: "Water source"
|
||||||
description: "Contact us by phone or online to describe your HVAC issue. We'll find a time that works for you.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-6.jpg",
|
|
||||||
imageAlt: "Scheduling a service call",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "On-Site Diagnosis",
|
title: "Multi-Stage Filtration", description: "Advanced filtration removes sediment, chlorine, and contaminants, preserving essential minerals.", imageSrc: "https://images.unsplash.com/photo-1610427976150-e83c0764724b?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&_wi=2", imageAlt: "Water purification plant"
|
||||||
description: "A certified technician arrives on time, inspects your system, and explains the issue with a clear quote.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-7.jpg",
|
|
||||||
imageAlt: "Technician diagnosing HVAC system",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Expert Repair or Install",
|
title: "Sterilization & Packaging", description: "UV sterilization and hygienic automated packaging ensure safety and freshness.", imageSrc: "https://images.unsplash.com/photo-1627889146522-d7b172a1e0f0?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&_wi=2", imageAlt: "Automated sachet filling"
|
||||||
description: "We complete the work using premium parts and proven techniques — most jobs done same day.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-4.jpg",
|
|
||||||
imageAlt: "HVAC repair in progress",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Quality Guarantee",
|
title: "Distribution & Delivery", description: "Efficient logistics ensure fresh AFLA Sachet Water reaches you promptly.", imageSrc: "https://images.unsplash.com/photo-1606768393521-125d06112c2a?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&_wi=2", imageAlt: "Water delivery vehicle"
|
||||||
description: "We test everything before we leave and back all work with our satisfaction guarantee.",
|
}
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-8.jpg",
|
|
||||||
imageAlt: "Final quality check",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardThirteen
|
<TestimonialCardThirteen
|
||||||
title="What Our Clients Say"
|
title="Hear From Our Happy Customers"
|
||||||
description="Hear from homeowners and businesses who trust AirPro HVAC."
|
description="Reliable and refreshing, our customers love AFLA Sachet Water."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Grace A.", handle: "Homemaker, Lagos", testimonial: "AFLA Sachet Water is consistently clean and tastes great. It's our go-to for daily hydration. Highly recommend!", rating: 5,
|
||||||
name: "James R.",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg", imageAlt: "Grace A."
|
||||||
handle: "Homeowner, Austin TX",
|
|
||||||
testimonial: "AirPro replaced our entire AC system in one day. The crew was professional, clean, and the new unit runs quieter than anything we've had before. Highly recommend.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg",
|
|
||||||
imageAlt: "James R.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Segun O.", handle: "Office Manager, Abuja", testimonial: "We rely on AFLA for all our office water needs. Their bulk delivery is efficient, and the water quality is unmatched. Excellent service!", rating: 5,
|
||||||
name: "Linda M.",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg", imageAlt: "Segun O."
|
||||||
handle: "Business Owner, Dallas TX",
|
|
||||||
testimonial: "We use AirPro for all three of our office locations. Their maintenance plans have saved us thousands in emergency repairs. Always on time, always honest.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg",
|
|
||||||
imageAlt: "Linda M.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Fatima Y.", handle: "Small Business Owner, Kano", testimonial: "AFLA Sachet Water has been a consistent supplier for my shop. My customers love it, and I appreciate the reliable supply.", rating: 5,
|
||||||
name: "Carlos D.",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.jpg", imageAlt: "Fatima Y."
|
||||||
handle: "Homeowner, Houston TX",
|
}
|
||||||
testimonial: "Our furnace broke down on the coldest night of the year. AirPro had someone at our door within two hours. Fixed it on the spot. Can't thank them enough.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.jpg",
|
|
||||||
imageAlt: "Carlos D.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
showRating={true}
|
showRating={true}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -242,38 +220,28 @@ export default function HvacPage() {
|
|||||||
</div>
|
</div>
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqSplitText
|
<FaqSplitText
|
||||||
sideTitle="Frequently Asked Questions"
|
sideTitle="Common Questions About AFLA Water"
|
||||||
buttons={[{ text: "Contact Us", href: "#contact" }]}
|
buttons={[{ text: "Contact Us", href: "/contact" }]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
textPosition="left"
|
textPosition="left"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Is AFLA Sachet Water NAFDAC certified?", content: "Yes, all our products are fully compliant and certified by NAFDAC, ensuring the highest standards of safety and quality."
|
||||||
title: "Do you offer 24/7 emergency service?",
|
|
||||||
content: "Yes! We provide round-the-clock emergency HVAC service. If your system breaks down in the middle of the night or on a weekend, call us and a technician will be at your door as soon as possible.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "What is your purification process?", content: "We use a multi-stage purification process that includes sedimentation, carbon filtration, reverse osmosis, and UV sterilization to ensure ultimate purity."
|
||||||
title: "How often should I service my HVAC system?",
|
|
||||||
content: "We recommend servicing your system at least twice a year — once before summer for cooling and once before winter for heating. Regular maintenance extends your system's life and keeps energy bills low.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Do you offer bulk delivery services?", content: "Absolutely! We provide convenient bulk delivery for homes, offices, events, and businesses. Please contact us for more details and to arrange your order."
|
||||||
title: "What brands do you install and repair?",
|
|
||||||
content: "We work with all major HVAC brands including Carrier, Trane, Lennox, Daikin, Rheem, and more. Our technicians are trained and certified across multiple manufacturers.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "What are your primary delivery zones?", content: "We primarily serve the Lagos metropolitan area and surrounding regions. For deliveries outside these areas, please reach out to our customer service."
|
||||||
title: "Do you offer financing options?",
|
|
||||||
content: "Yes, we offer flexible financing plans for new installations and major repairs. Ask about our 0% interest options so you can stay comfortable without straining your budget.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "How should I store AFLA Sachet Water?", content: "For optimal freshness and safety, store your sachet water in a cool, dry place away from direct sunlight and strong odors."
|
||||||
title: "How long does a typical installation take?",
|
}
|
||||||
content: "Most residential HVAC installations are completed in one day. Larger commercial projects may take 2-3 days depending on the scope. We'll give you an accurate timeline during your consultation.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -282,11 +250,11 @@ export default function HvacPage() {
|
|||||||
<ContactCTA
|
<ContactCTA
|
||||||
tag="Get in Touch"
|
tag="Get in Touch"
|
||||||
tagIcon={Phone}
|
tagIcon={Phone}
|
||||||
title="Ready to Stay Comfortable Year-Round?"
|
title="Ready for Pure, Refreshing Water?"
|
||||||
description="Whether you need a new installation, emergency repair, or routine maintenance — our team is ready to help. Call us today or request a free quote."
|
description="Get in touch with AFLA Sachet Water for orders, inquiries, or partnership opportunities. We're here to serve you."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Get a Free Quote", href: "#contact" },
|
{ text: "Place an Order", href: "/contact" },
|
||||||
{ text: "Call (555) 987-6543", href: "tel:5559876543" },
|
{ text: "Call (123) 456-7890", href: "tel:1234567890" }
|
||||||
]}
|
]}
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -295,38 +263,35 @@ export default function HvacPage() {
|
|||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterMedia
|
<FooterMedia
|
||||||
logoText="AirPro HVAC"
|
logoText="AFLA SACHET WATER"
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-10.jpg"
|
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&_wi=2"
|
||||||
imageAlt="HVAC technician inspecting equipment"
|
imageAlt="Clean water in a glass"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Products", items: [
|
||||||
items: [
|
{ label: "Sachet Water (50cl)", href: "#services" },
|
||||||
{ label: "AC Installation", href: "#services" },
|
{ label: "Bottled Water (75cl)", href: "#services" },
|
||||||
{ label: "Heating Systems", href: "#services" },
|
{ label: "Dispenser Water (19L)", href: "#services" }
|
||||||
{ label: "Maintenance Plans", href: "#services" },
|
]
|
||||||
{ label: "Emergency Repairs", href: "#services" },
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "#about" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "#testimonials" },
|
||||||
{ label: "FAQ", href: "#faq" },
|
{ label: "FAQ", href: "#faq" },
|
||||||
{ label: "Contact", href: "#contact" },
|
{ label: "Contact", href: "/contact" }
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
{ label: "(123) 456-7890", href: "tel:1234567890" },
|
||||||
{ label: "(555) 987-6543", href: "tel:5559876543" },
|
{ label: "info@aflasachetwater.com", href: "mailto:info@aflasachetwater.com" },
|
||||||
{ label: "info@airprohvac.com", href: "mailto:info@airprohvac.com" },
|
{ label: "Plot 15, Waterways Ind. Estate, Lagos, Nigeria", href: "https://maps.google.com/?q=Plot 15, Waterways Industrial Estate, Lagos, Nigeria" },
|
||||||
{ label: "Austin, TX" },
|
{ label: "WhatsApp", href: "https://wa.me/2341234567890" }
|
||||||
],
|
]
|
||||||
},
|
}
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2026 | AirPro HVAC"
|
copyrightText="© 2026 | AFLA SACHET WATER. NAFDAC Reg. No. A1-00123456L. All Rights Reserved."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f8fafc;
|
--background: #ffffff;
|
||||||
--card: #ffffff;
|
--card: #f8fafd;
|
||||||
--foreground: #0f172a;
|
--foreground: #0f172a;
|
||||||
--primary-cta: #1d4ed8;
|
--primary-cta: #1a73e8;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #e0e7ff;
|
--secondary-cta: #e6f4f1;
|
||||||
--secondary-cta-text: #1e3a5f;
|
--secondary-cta-text: #0f172a;
|
||||||
--accent: #3b82f6;
|
--accent: #34a853;
|
||||||
--background-accent: #60a5fa;
|
--background-accent: #cfe8fc;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user