Update src/app/blog/page.tsx

This commit is contained in:
2026-02-06 16:40:38 +00:00
parent 11cae313fb
commit f2de1327d6

View File

@@ -28,13 +28,13 @@ export default function BlogPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Products", id: "products" }, { name: "Products", id: "/shop" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Collections", id: "collections" }, { name: "Collections", id: "/shop" },
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ text: "Shop Now", href: "products" }} button={{ text: "Shop Now", href: "/shop" }}
brandName="Bee Cups" brandName="Bee Cups"
/> />
</div> </div>
@@ -64,10 +64,10 @@ export default function BlogPage() {
columns={[ columns={[
{ {
title: "Shop", items: [ title: "Shop", items: [
{ label: "All Products", href: "products" }, { label: "All Products", href: "/shop" },
{ label: "Collections", href: "collections" }, { label: "Collections", href: "/shop" },
{ label: "Custom Orders", href: "contact" }, { label: "Custom Orders", href: "contact" },
{ label: "Sale Items", href: "products" } { label: "Sale Items", href: "/shop" }
] ]
}, },
{ {