From a6c066bba976829a65ea2760ad7eb68a678cdec9 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 09:36:27 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 8ff5b7d..6d50e2a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -6,13 +6,13 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating import ProductCardFour from '@/components/sections/product/ProductCardFour'; import { useProductCatalog } from "@/hooks/useProductCatalog"; -const navItemsForSubPages = [ +const standardNavItems = [ { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/#about" }, { name: "Testimonials", id: "/#testimonials" }, { name: "FAQs", id: "/#faqs" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/#contact" } ]; function ShopPageContent() { @@ -43,8 +43,8 @@ function ShopPageContent() {