From e1268c5f199094342feea8a5941464be24f458be Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 09:36:26 +0000 Subject: [PATCH] Update src/app/products/page.tsx --- src/app/products/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 9bf24c9..669d411 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/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 ProductsPageContent() { @@ -43,7 +43,7 @@ function ProductsPageContent() {