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
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
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
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