From b67126ae3cd71f4d8a008aaddfcbefdfe991c369 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 14:29:38 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 57b3815..aef0ba4 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -17,18 +17,16 @@ export default function ShopPage() { } = useProductCatalog({ basePath: "/shop" }); const navbarProps = { - brandName: "Bandura's Hearth & Hall", navItems: [{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }], + brandName: "Bandura's Hearth & Hall", navItems: [{ name: "Home", id: "/" }], button: { text: "Cart", onClick: () => console.log('Cart button clicked on catalog page') }, - className: "py-4 px-6 md:px-8", buttonClassName: "bg-primary-cta text-primary-cta-foreground hover:bg-primary-cta/90 transition-colors duration-300", buttonTextClassName: "font-semibold text-lg", logoOnClick: () => console.log('Logo clicked'), - useInvertedBackground: false + className: "py-4 px-6 md:px-8", buttonClassName: "bg-primary-cta text-primary-cta-foreground hover:bg-primary-cta/90 transition-colors duration-300", buttonTextClassName: "font-semibold text-lg", logoOnClick: () => console.log('Logo clicked') }; const footerProps = { logoText: "Bandura's Hearth & Hall", columns: [ - { items: [{ label: "Philosophy", href: "#philosophy" }, { label: "Menu", href: "#menu" }, { label: "Banquets", href: "#banquets" }] }, - { items: [{ label: "Delivery", href: "#delivery" }, { label: "Contacts", href: "#contacts" }, { label: "Book a Table", href: "#contacts" }] } + { items: [{ label: "Philosophy", href: "/#philosophy" }, { label: "Menu", href: "/#menu" }, { label: "Banquets", href: "/#banquets" }] }, + { items: [{ label: "Delivery", href: "/#delivery" }, { label: "Contacts", href: "/#contacts" }, { label: "Book a Table", href: "/#contacts" }] } ], - useInvertedBackground: false, ariaLabel: "Site footer", containerClassName: "py-16 md:py-24" };