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