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

This commit is contained in:
2026-02-24 07:15:55 +00:00
parent 721064f8fe
commit 376e2ddf80

View File

@@ -91,7 +91,16 @@ function ProductPageContent({ params }: ProductPageProps) {
<ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Products", id: "/products" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Events", id: "#events" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "#contact" }
]}
brandName="Balero Chess Club"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
buttonClassName="bg-[var(--primary-cta)] text-[var(--primary-cta-text)] hover:bg-[var(--primary-cta)]"
@@ -123,7 +132,16 @@ function ProductPageContent({ params }: ProductPageProps) {
<ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Products", id: "/products" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Events", id: "#events" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "#contact" }
]}
brandName="Balero Chess Club"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
buttonClassName="bg-[var(--primary-cta)] text-[var(--primary-cta-text)] hover:bg-[var(--primary-cta)]"
@@ -162,7 +180,16 @@ function ProductPageContent({ params }: ProductPageProps) {
<ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Products", id: "/products" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Events", id: "#events" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "#contact" }
]}
brandName="Balero Chess Club"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
buttonClassName="bg-[var(--primary-cta)] text-[var(--primary-cta-text)] hover:bg-[var(--primary-cta)]"
@@ -208,9 +235,29 @@ function ProductPageContent({ params }: ProductPageProps) {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "#about" }, { label: "Features", href: "#features" }, { label: "Events", href: "#events" }] },
{ title: "Resources", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
{ title: "Connect", items: [{ label: "Facebook", href: "https://www.facebook.com/balerochessclub" }, { label: "Instagram", href: "https://www.instagram.com/balerochessclub" }] }
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "#about" },
{ label: "Features", href: "#features" },
{ label: "Events", href: "#events" },
{ label: "Shop", href: "/shop" },
{ label: "Products", href: "/products" },
{ label: "Blog", href: "/blog" }
],
},
{
title: "Resources", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" },
],
},
{
title: "Connect", items: [
{ label: "Facebook", href: "https://www.facebook.com/balerochessclub" },
{ label: "Instagram", href: "https://www.instagram.com/balerochessclub" },
],
},
]}
bottomLeftText="© 2024 Balero Chess Club. All rights reserved."
bottomRightText="Built with passion for chess."