7 Commits

Author SHA1 Message Date
e97d48edf8 Update src/app/page.tsx 2026-06-10 15:01:14 +00:00
a44ff289b6 Update src/app/contact/page.tsx 2026-06-10 15:01:13 +00:00
830abc6ce5 Merge version_5 into main
Merge version_5 into main
2026-06-10 14:58:08 +00:00
7a66d3c74b Update src/app/page.tsx 2026-06-10 14:58:02 +00:00
da6f641a81 Update src/app/contact/page.tsx 2026-06-10 14:58:01 +00:00
6931c27c39 Merge version_4 into main
Merge version_4 into main
2026-06-10 14:55:44 +00:00
a616f8f246 Merge version_4 into main
Merge version_4 into main
2026-06-10 14:55:19 +00:00
2 changed files with 36 additions and 5 deletions

View File

@@ -34,11 +34,12 @@ export default function ContactPage() {
brandName="AFLA SACHET WATER" 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: "Place an Order", href: "/contact" }} button={{ text: "WhatsApp Us", href: "https://wa.me/2341234567890" }}
animateOnLoad={false} animateOnLoad={false}
/> />
</div> </div>
@@ -117,4 +118,4 @@ export default function ContactPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -12,7 +12,8 @@ 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, Factory } from "lucide-react"; import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import { ShieldCheck, Wrench, DollarSign, Phone, Factory, ShoppingCart } from "lucide-react";
export default function SachetWaterPage() { export default function SachetWaterPage() {
return ( return (
@@ -34,11 +35,12 @@ export default function SachetWaterPage() {
brandName="AFLA SACHET WATER" 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: "Place an Order", href: "/contact" }} button={{ text: "WhatsApp Us", href: "https://wa.me/2341234567890" }}
animateOnLoad={false} animateOnLoad={false}
/> />
</div> </div>
@@ -122,6 +124,34 @@ export default function SachetWaterPage() {
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 AFLA Water?" title="Why Choose AFLA Water?"
description="Ensuring your health and hydration with every sachet." description="Ensuring your health and hydration with every sachet."
@@ -267,4 +297,4 @@ export default function SachetWaterPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }