Update src/app/blog/page.tsx

This commit is contained in:
2026-02-24 09:36:24 +00:00
parent e87fa9931d
commit 31cee5b509

View File

@@ -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() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Nano Mango"
navItems={navItemsForSubPages}
navItems={standardNavItems}
button={{ text: "Shop Now", href: "/shop" }}
buttonClassName="shadow-lg"
navItemClassName="text-foreground/80 hover:text-foreground"