Update src/app/shop/page.tsx

This commit is contained in:
2026-02-24 09:36:27 +00:00
parent 797dcf6033
commit a6c066bba9

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 ShopPageContent() {
@@ -43,8 +43,8 @@ function ShopPageContent() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Nano Mango"
navItems={navItemsForSubPages}
button={{ text: "View Products", href: "/shop" }}
navItems={standardNavItems}
button={{ text: "Contact Us", href: "/#contact" }}
buttonClassName="shadow-lg"
navItemClassName="text-foreground/80 hover:text-foreground"
className="backdrop-blur-sm bg-card/70"