From 5fb580d82e481c67bc94b532d81e1699c7c95f55 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 11:39:02 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index fcfe5e2..b5eb16b 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -5,9 +5,10 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function ShopPage() { + const navItems = [{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "Shop", id: "/shop" }]; return ( - + - + ); } \ No newline at end of file