From 17b69748992ee9bd3266a6966c8307850e33fdd5 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 11:39:01 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 22d99e0..ad7a3c4 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -5,11 +5,12 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function AboutPage() { + const navItems = [{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "Shop", id: "/shop" }]; return ( - + - + ); } \ No newline at end of file From 9a5e24b6a31b24947f6c77b1fd679abf2b99f42a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 11:39:01 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 825f528..6952a6f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,11 +5,12 @@ import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function ContactPage() { + const navItems = [{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "Shop", id: "/shop" }]; return ( - + - + ); } \ No newline at end of file From 7a9e4731d4bccd5997827b45efa30f6d3b852cfd Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 11:39:02 +0000 Subject: [PATCH 3/4] Update src/app/policy/page.tsx --- src/app/policy/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/policy/page.tsx b/src/app/policy/page.tsx index 7fa0065..c09c5c0 100644 --- a/src/app/policy/page.tsx +++ b/src/app/policy/page.tsx @@ -5,11 +5,12 @@ import LegalSection from '@/components/legal/LegalSection'; import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function PolicyPage() { + const navItems = [{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "Shop", id: "/shop" }]; return ( - + - + ); } \ No newline at end of file From 5fb580d82e481c67bc94b532d81e1699c7c95f55 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 11:39:02 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index fcfe5e2..b5eb16b 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -5,9 +5,10 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function ShopPage() { + const navItems = [{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "Shop", id: "/shop" }]; return ( - + - + ); } \ No newline at end of file