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' }, 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() {