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() {