From d28b48852c618fd7b74ad0d83b6e82b6ae043b78 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 15:29:24 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index bcffac1..c882c1b 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -31,7 +31,8 @@ export default function BlogPage() { { name: "Home", id: "/" }, { name: "What We Do", id: "about" }, { name: "Work", id: "case-studies" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "contact" }, + { name: "Shop", id: "/shop" } ]} button={{ text: "Let's Talk", href: "contact" }} className="fixed top-4 left-4 right-4 z-50" @@ -64,9 +65,11 @@ export default function BlogPage() { 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: "Shop", href: "/shop" } ] }, { -- 2.49.1 From ac0debf5cc4b89d1a62cad18db6475d8c1518721 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 15:29:25 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3fd1194..ea58b69 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,7 +29,9 @@ export default function HomePage() { navItems={[ { name: "What We Do", id: "about" }, { name: "Work", id: "case-studies" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "contact" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" } ]} button={{ text: "Let's Talk", href: "contact" }} className="fixed top-4 left-4 right-4 z-50" @@ -118,7 +120,9 @@ export default function HomePage() { title: "Company", items: [ { label: "About", href: "about" }, { label: "Work", href: "case-studies" }, - { label: "Contact", href: "contact" } + { label: "Contact", href: "contact" }, + { label: "Blog", href: "/blog" }, + { label: "Shop", href: "/shop" } ] }, { -- 2.49.1 From 3ebfaa2757911582e9803f7dc48be14d437509f0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 15:29:26 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 969657e..8071d20 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -90,6 +90,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "What We Do", id: "about" }, { name: "Work", id: "case-studies" }, { name: "Contact", id: "contact" }, + { name: "Blog", id: "/blog" }, { name: "Shop", id: "/shop" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -106,9 +107,12 @@ export default function ProductPage({ params }: ProductPageProps) { 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" }, + { label: "Shop", href: "/shop" } ] }, { @@ -156,6 +160,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "What We Do", id: "about" }, { name: "Work", id: "case-studies" }, { name: "Contact", id: "contact" }, + { name: "Blog", id: "/blog" }, { name: "Shop", id: "/shop" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -180,9 +185,12 @@ export default function ProductPage({ params }: ProductPageProps) { 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" }, + { label: "Shop", href: "/shop" } ] }, { @@ -229,6 +237,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "What We Do", id: "about" }, { name: "Work", id: "case-studies" }, { name: "Contact", id: "contact" }, + { name: "Blog", id: "/blog" }, { name: "Shop", id: "/shop" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -263,16 +272,19 @@ export default function ProductPage({ params }: ProductPageProps) { 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" }, + { label: "Shop", href: "/shop" } ] }, { title: "Legal", items: [ { label: "Privacy Policy", href: "https://example.com/privacy" }, { label: "Terms of Service", href: "https://example.com/terms" } - } + ] }, { title: "Connect", items: [ -- 2.49.1 From 3a7fb8fbf0a412007171caacfeccbe94696f9f54 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 15:29:27 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 3be63b4..fa9aae4 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -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" } ] }, { -- 2.49.1