diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 7ce2b84..bdb508b 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -5,13 +5,13 @@ import { useBlogPosts } from "@/hooks/useBlogPosts"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import BlogCardThree from '@/components/sections/blog/BlogCardThree'; -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" } ]; export default function BlogPage() { @@ -33,7 +33,7 @@ export default function BlogPage() {
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 8ff5b7d..6d50e2a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -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() {