diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 82b09d6..4c3a398 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -9,6 +9,10 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function BlogPage() {
const { posts, isLoading } = useBlogPosts();
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Shop", id: "/shop" },
+ ];
return (
-
+
+
+
{isLoading ? (
) : (
-
+
+
+
)}
-
-
+
+
);
diff --git a/src/app/page.tsx b/src/app/page.tsx
index efa4455..a421e57 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -11,6 +11,11 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function SitePage() {
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Shop", id: "/shop" },
+ ];
+
return (