diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 221d8cd..a2f5b1b 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -6,6 +6,17 @@ import { useBlogPosts } from "@/hooks/useBlogPosts"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; +// Define common navigation items for sub-pages to maintain consistency +const ALL_NAV_ITEMS_SUB_PAGES = [ + { name: "Home", id: "/" }, + { name: "Products", id: "/products" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" }, + { name: "About", id: "/#about" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQs", id: "/#faqs" } +]; + export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); @@ -26,14 +37,8 @@ export default function BlogPage() {