From 41679727db88271c86cf031325cc46963a1bbff0 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 07:04:59 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index b2c6d6b..5f7b391 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -18,6 +18,7 @@ export default function BlogPage() { const navItems = [ { name: 'Home', id: '/' }, + { name: 'Products', id: '/shop' }, { name: 'About', id: '/#about' }, { name: 'Features', id: '/#features' }, { name: 'Testimonials', id: '/#testimonials' }, -- 2.49.1 From d8e80468fdcf30b599498b53ac7d8ccc1fd7f12f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 07:05:00 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4eda0e8..5fadebf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -17,6 +17,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function LandingPage() { const navItems = [ { name: 'Home', id: '/' }, + { name: 'Products', id: '/shop' }, { name: 'About', id: '/#about' }, { name: 'Features', id: '/#features' }, { name: 'Testimonials', id: '/#testimonials' }, @@ -41,7 +42,7 @@ export default function LandingPage() { Date: Tue, 24 Feb 2026 07:05:01 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 18583c3..594d9a6 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -17,6 +17,7 @@ interface ProductPageProps { const navItems = [ { name: 'Home', id: '/' }, + { name: 'Products', id: '/shop' }, { name: 'About', id: '/#about' }, { name: 'Features', id: '/#features' }, { name: 'Testimonials', id: '/#testimonials' }, -- 2.49.1 From 9d1ad75fd301c708eecbdbacc3171afe9df837b5 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 07:05:02 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index d933e0b..007ff5a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -9,6 +9,7 @@ import { useProductCatalog } from "@/hooks/useProductCatalog"; const navItems = [ { name: 'Home', id: '/' }, + { name: 'Products', id: '/shop' }, { name: 'About', id: '/#about' }, { name: 'Features', id: '/#features' }, { name: 'Testimonials', id: '/#testimonials' }, -- 2.49.1