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

This commit is contained in:
2026-02-20 09:53:23 +00:00
parent 718b777d8d
commit c271806c3e

View File

@@ -84,12 +84,11 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="navbar" data-section="navbar">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Home", id: "hero" },
{ name: "Products", id: "products" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Gallery", id: "testimonials" },
{ name: "Shop", id: "/shop" }
{ name: "Gallery", id: "testimonials" }
]}
brandName="Pandas"
bottomLeftText="Artisan Floral Design"
@@ -130,12 +129,11 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="navbar" data-section="navbar">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Home", id: "hero" },
{ name: "Products", id: "products" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Gallery", id: "testimonials" },
{ name: "Shop", id: "/shop" }
{ name: "Gallery", id: "testimonials" }
]}
brandName="Pandas"
bottomLeftText="Artisan Floral Design"
@@ -183,12 +181,11 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="navbar" data-section="navbar">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Home", id: "hero" },
{ name: "Products", id: "products" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Gallery", id: "testimonials" },
{ name: "Shop", id: "/shop" }
{ name: "Gallery", id: "testimonials" }
]}
brandName="Pandas"
bottomLeftText="Artisan Floral Design"
@@ -242,4 +239,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}