diff --git a/src/app/policy/page.tsx b/src/app/policy/page.tsx
index c09c5c0..1c8280b 100644
--- a/src/app/policy/page.tsx
+++ b/src/app/policy/page.tsx
@@ -9,7 +9,7 @@ export default function PolicyPage() {
return (
-
+
);
diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx
index d2dd1a1..4051dd4 100644
--- a/src/app/shop/[id]/page.tsx
+++ b/src/app/shop/[id]/page.tsx
@@ -2,10 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
-export default function ProductDetailPage() {
+export default function ShopProductPage() {
+ const navItems = [{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "Shop", id: "/shop" }];
return (
-
+
);
}
\ No newline at end of file