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

This commit is contained in:
2026-02-21 18:27:43 +00:00
parent 91119eace9
commit 6c220a858c

View File

@@ -158,7 +158,16 @@ function ProductPageContent({ params }: ProductPageProps) {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
{ name: "Pricing", id: "/#pricing" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" },
]}
brandName="AI Innovations"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -210,4 +219,4 @@ function ProductPageContent({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}