Update src/app/shop/page.tsx

This commit is contained in:
2026-02-13 15:29:27 +00:00
parent 3ebfaa2757
commit 3a7fb8fbf0

View File

@@ -42,7 +42,7 @@ export default function ShopPage() {
{ name: "What We Do", id: "about" },
{ name: "Work", id: "case-studies" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
{ name: "Blog", id: "/blog" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
className="fixed top-4 left-4 right-4 z-50"
@@ -58,9 +58,11 @@ export default function ShopPage() {
columns={[
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "about" },
{ label: "Work", href: "case-studies" },
{ label: "Contact", href: "contact" }
{ label: "Contact", href: "contact" },
{ label: "Blog", href: "/blog" }
]
},
{
@@ -107,7 +109,7 @@ export default function ShopPage() {
{ name: "What We Do", id: "about" },
{ name: "Work", id: "case-studies" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
{ name: "Blog", id: "/blog" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
className="fixed top-4 left-4 right-4 z-50"
@@ -131,9 +133,11 @@ export default function ShopPage() {
columns={[
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "about" },
{ label: "Work", href: "case-studies" },
{ label: "Contact", href: "contact" }
{ label: "Contact", href: "contact" },
{ label: "Blog", href: "/blog" }
]
},
{