From 797dcf6033aa2135622ec2a4b060ac5786a492d4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 09:36:27 +0000 Subject: [PATCH] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 8f79449..81dc736 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -8,13 +8,12 @@ import SplitAbout from '@/components/sections/about/SplitAbout'; import { useProductDetail } from "@/hooks/useProductDetail"; import { DollarSign, Package, CheckCircle } from 'lucide-react'; -const navItemsForSubPages = [ +const standardNavItems = [ { name: "Home", id: "/" }, - { name: "Products", id: "/products" }, - { name: "About", id: "/#about" }, + { name: "Products", id: "/products" }, { name: "About", id: "/#about" }, { name: "Testimonials", id: "/#testimonials" }, { name: "FAQs", id: "/#faqs" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/#contact" } ]; interface ProductPageProps { @@ -44,7 +43,7 @@ function ProductPageContent({ params }: ProductPageProps) {