From da6f641a815989ce6ef890e6729f79fdccf759b1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:58:01 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4b4ab46..43b9fe4 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -34,6 +34,7 @@ export default function ContactPage() { 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" } @@ -117,4 +118,4 @@ export default function ContactPage() { ); -} +} \ No newline at end of file From 7a66d3c74b96f690bca843147d54683dff7c2523 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:58:02 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 34 ++++++++++++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 630525f..4c85399 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,8 @@ import TestimonialCardThirteen from "@/components/sections/testimonial/Testimoni import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import ContactCTA from "@/components/sections/contact/ContactCTA"; 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() { return ( @@ -34,6 +35,7 @@ export default function SachetWaterPage() { 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" } @@ -122,6 +124,34 @@ export default function SachetWaterPage() { useInvertedBackground={false} /> + +
+ +
+ ); -} +} \ No newline at end of file