From 31cee5b5098df9b20c5d6518fab9b7f71d8a884b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 09:36:24 +0000 Subject: [PATCH 1/6] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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() {