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" } ] }, { 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" } ] }, { 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: [ 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" } ] }, {