diff --git a/src/app/order-confirmation/page.tsx b/src/app/order-confirmation/page.tsx index 25cb671..1305d03 100644 --- a/src/app/order-confirmation/page.tsx +++ b/src/app/order-confirmation/page.tsx @@ -7,6 +7,16 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating 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" } +]; + export default function OrderConfirmationPage() { return ( diff --git a/src/app/order/page.tsx b/src/app/order/page.tsx index 8f8883e..207188e 100644 --- a/src/app/order/page.tsx +++ b/src/app/order/page.tsx @@ -8,6 +8,16 @@ import { Sparkles } from "lucide-react"; 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" } +]; + export default function OrderPage() { const router = useRouter(); @@ -36,13 +46,7 @@ export default function OrderPage() {