Update src/app/shop/[id]/page.tsx
This commit is contained in:
@@ -86,13 +86,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
brandName="Pepper Peak"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Flavors", id: "flavors" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Shop", id: "shop" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Flavors", id: "/#flavors" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
</div>
|
||||
<main className="min-h-screen flex items-center justify-center pt-20">
|
||||
@@ -123,13 +121,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
brandName="Pepper Peak"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Flavors", id: "flavors" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Shop", id: "shop" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Flavors", id: "/#flavors" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
</div>
|
||||
<main className="min-h-screen flex items-center justify-center pt-20">
|
||||
@@ -167,13 +163,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
brandName="Pepper Peak"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Flavors", id: "flavors" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Shop", id: "shop" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Flavors", id: "/#flavors" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
</div>
|
||||
<div id="product-detail-card" data-section="product-detail-card">
|
||||
@@ -214,7 +208,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://img.b2bpic.net/free-photo/chili-sauce-peppers-dark-wooden-surface_1150-42161.jpg?_wi=5"
|
||||
imageSrc="https://img.b2bpic.net/free-photo/chili-sauce-peppers-dark-wooden-surface_1150-42161.jpg"
|
||||
imageAlt="Hot sauce bottles background"
|
||||
columns={[
|
||||
{ title: "Shop", items: [{ label: "Hot Sauces", href: "#flavors" }, { label: "Bundles", href: "/bundles" }, { label: "Merchandise", href: "/merch" }] },
|
||||
@@ -224,7 +218,6 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
logoText="Pepper Peak"
|
||||
copyrightText="© 2024 Pepper Peak. All rights reserved."
|
||||
ariaLabel="Site footer with navigation and hot sauce imagery"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user