Update src/app/shop/page.tsx
This commit is contained in:
@@ -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"
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user