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"
|
brandName="Pepper Peak"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/#about" },
|
||||||
{ name: "Flavors", id: "flavors" },
|
{ name: "Flavors", id: "/#flavors" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "Shop", id: "shop" },
|
{ name: "Contact", id: "/#contact" },
|
||||||
{ name: "Contact", id: "contact" },
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<main className="min-h-screen flex items-center justify-center pt-20">
|
<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"
|
brandName="Pepper Peak"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/#about" },
|
||||||
{ name: "Flavors", id: "flavors" },
|
{ name: "Flavors", id: "/#flavors" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "Shop", id: "shop" },
|
{ name: "Contact", id: "/#contact" },
|
||||||
{ name: "Contact", id: "contact" },
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<main className="min-h-screen flex items-center justify-center pt-20">
|
<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"
|
brandName="Pepper Peak"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/#about" },
|
||||||
{ name: "Flavors", id: "flavors" },
|
{ name: "Flavors", id: "/#flavors" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "Shop", id: "shop" },
|
{ name: "Contact", id: "/#contact" },
|
||||||
{ name: "Contact", id: "contact" },
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="product-detail-card" data-section="product-detail-card">
|
<div id="product-detail-card" data-section="product-detail-card">
|
||||||
@@ -214,7 +208,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
</div>
|
</div>
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterMedia
|
<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"
|
imageAlt="Hot sauce bottles background"
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Shop", items: [{ label: "Hot Sauces", href: "#flavors" }, { label: "Bundles", href: "/bundles" }, { label: "Merchandise", href: "/merch" }] },
|
{ 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"
|
logoText="Pepper Peak"
|
||||||
copyrightText="© 2024 Pepper Peak. All rights reserved."
|
copyrightText="© 2024 Pepper Peak. All rights reserved."
|
||||||
ariaLabel="Site footer with navigation and hot sauce imagery"
|
ariaLabel="Site footer with navigation and hot sauce imagery"
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user