From 26e4953dd5a015acd314cb1dc9edd7a08e1f58be Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 03:01:14 +0000 Subject: [PATCH 1/3] Update src/app/order/page.tsx --- src/app/order/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/order/page.tsx b/src/app/order/page.tsx index 207188e..b5db4ce 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", href: "/#services" }, - { name: "About", href: "/#about" }, - { name: "Testimonials", href: "/#testimonials" }, - { name: "FAQ", href: "/#faq" }, - { name: "Contact", href: "/#contact" }, - { name: "Products", href: "/products" }, - { name: "Place Order", href: "/order" } + { name: "Services", id: "/#services" }, + { name: "About", id: "/#about" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, + { name: "Products", id: "/products" }, + { name: "Place Order", id: "/order" } ]; export default function OrderPage() { -- 2.49.1 From 88f58fbf228191ff0b3b14c69ff969160f8194f9 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 03:01:15 +0000 Subject: [PATCH 2/3] Update src/app/order-confirmation/page.tsx --- src/app/order-confirmation/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/order-confirmation/page.tsx b/src/app/order-confirmation/page.tsx index 1305d03..95845de 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", href: "/#services" }, - { name: "About", href: "/#about" }, - { name: "Testimonials", href: "/#testimonials" }, - { name: "FAQ", href: "/#faq" }, - { name: "Contact", href: "/#contact" }, - { name: "Products", href: "/products" }, - { name: "Place Order", href: "/order" } + { name: "Services", id: "/#services" }, + { name: "About", id: "/#about" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, + { name: "Products", id: "/products" }, + { name: "Place Order", id: "/order" } ]; export default function OrderConfirmationPage() { -- 2.49.1 From 3ea29c1279df49ec4f456d2fad0bf966a36ab131 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 03:01:15 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5a9455d..d2d4d3a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,13 +15,13 @@ import FooterMedia from "@/components/sections/footer/FooterMedia"; import { ShieldCheck, Wrench, DollarSign, Phone } from "lucide-react"; const globalNavItems = [ - { name: "Services", href: "/#services" }, - { name: "About", href: "/#about" }, - { name: "Testimonials", href: "/#testimonials" }, - { name: "FAQ", href: "/#faq" }, - { name: "Contact", href: "/#contact" }, - { name: "Products", href: "/products" }, - { name: "Place Order", href: "/order" } + { name: "Services", id: "/#services" }, + { name: "About", id: "/#about" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, + { name: "Products", id: "/products" }, + { name: "Place Order", id: "/order" } ]; const globalFooterColumns = [ -- 2.49.1