From 44372c8081d93c7143cae6b8e6c6e37c58acfecd Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 03:02:55 +0000 Subject: [PATCH 1/2] Update src/app/order/page.tsx --- src/app/order/page.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/order/page.tsx b/src/app/order/page.tsx index b5db4ce..94cccef 100644 --- a/src/app/order/page.tsx +++ b/src/app/order/page.tsx @@ -9,13 +9,13 @@ import ContactForm from "@/components/form/ContactForm"; import { useRouter } from "next/navigation"; const globalNavItems = [ - { name: "Services", id: "/#services" }, - { name: "About", id: "/#about" }, + { name: "Solutions", id: "/#solutions" }, + { name: "About Us", id: "/#about" }, { name: "Testimonials", id: "/#testimonials" }, { name: "FAQ", id: "/#faq" }, { name: "Contact", id: "/#contact" }, - { name: "Products", id: "/products" }, - { name: "Place Order", id: "/order" } + { name: "Shop", id: "/products" }, + { name: "Get a Quote", id: "/order" } ]; export default function OrderPage() { @@ -45,22 +45,22 @@ export default function OrderPage() {
Date: Mon, 8 Jun 2026 03:02:56 +0000 Subject: [PATCH 2/2] Update src/app/order-confirmation/page.tsx --- src/app/order-confirmation/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/order-confirmation/page.tsx b/src/app/order-confirmation/page.tsx index 95845de..68497c2 100644 --- a/src/app/order-confirmation/page.tsx +++ b/src/app/order-confirmation/page.tsx @@ -8,13 +8,13 @@ import HeroOverlay from "@/components/sections/hero/HeroOverlay"; import { CheckCircle } from "lucide-react"; const globalNavItems = [ - { name: "Services", id: "/#services" }, - { name: "About", id: "/#about" }, + { name: "Solutions", id: "/#solutions" }, + { name: "About Us", id: "/#about" }, { name: "Testimonials", id: "/#testimonials" }, { name: "FAQ", id: "/#faq" }, { name: "Contact", id: "/#contact" }, - { name: "Products", id: "/products" }, - { name: "Place Order", id: "/order" } + { name: "Shop", id: "/products" }, + { name: "Get a Quote", id: "/order" } ]; export default function OrderConfirmationPage() { @@ -34,17 +34,17 @@ export default function OrderConfirmationPage() {