Update src/app/products/page.tsx

This commit is contained in:
2026-02-24 09:36:26 +00:00
parent b4632da12a
commit e1268c5f19

View File

@@ -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() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Nano Mango"
navItems={navItemsForSubPages}
navItems={standardNavItems}
button={{ text: "Go to Shop", href: "/shop" }}
buttonClassName="shadow-lg"
navItemClassName="text-foreground/80 hover:text-foreground"