Update src/app/shop/[id]/page.tsx

This commit is contained in:
2026-02-21 23:32:13 +00:00
parent 35c2e17b84
commit 673cc61214

View File

@@ -94,7 +94,7 @@ function ProductPageContent({ params }: ProductPageProps) {
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" }
]}
@@ -145,7 +145,7 @@ function ProductPageContent({ params }: ProductPageProps) {
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" }
]}
@@ -203,7 +203,7 @@ function ProductPageContent({ params }: ProductPageProps) {
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" }
]}
@@ -263,4 +263,4 @@ function ProductPageContent({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}