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

This commit is contained in:
2026-02-17 14:29:37 +00:00
parent cf82ce88e8
commit c0631ce660

View File

@@ -67,18 +67,16 @@ export default function ProductPage({ params }: ProductPageProps) {
}, [cartItems, checkout, getCheckoutItems]);
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: () => setCartOpen(true) },
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"
};