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

This commit is contained in:
2026-02-20 12:58:57 +00:00
parent f672617376
commit 193d52517f

View File

@@ -81,12 +81,11 @@ export default function ProductPage({ params }: ProductPageProps) {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
brandName="Star Wars Fan Club" brandName="Star Wars Fan Club"
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" }
{ name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
@@ -114,12 +113,11 @@ export default function ProductPage({ params }: ProductPageProps) {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
brandName="Star Wars Fan Club" brandName="Star Wars Fan Club"
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" }
{ name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
@@ -154,12 +152,11 @@ export default function ProductPage({ params }: ProductPageProps) {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
brandName="Star Wars Fan Club" brandName="Star Wars Fan Club"
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" }
{ name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
@@ -203,12 +200,10 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
columns={[ columns={[
{ items: [{ label: "About Us", href: "#about" }, { label: "Features", href: "#features" }, { label: "News", href: "#blog" }] }, { items: [{ label: "Home", href: "/" }, { label: "Shop", href: "/shop" }, { label: "Blog", href: "/blog" }] },
{ items: [{ label: "Community", href: "#product" }, { label: "Team", href: "#team" }, { label: "FAQ", href: "#faq" }] }, { items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
{ items: [{ label: "Contact", href: "#contact" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
]} ]}
logoText="Star Wars Fan Club" logoText="Star Wars Fan Club"
useInvertedBackground={false}
containerClassName="bg-background-accent text-foreground" containerClassName="bg-background-accent text-foreground"
/> />
</div> </div>