From 4adc60d256ae136f5e03ebc29f658783167f681c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 14:29:36 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index dd8d86c..49ce30e 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,18 +29,17 @@ export default function BlogPage() { brandName="Bandura's Hearth & Hall" navItems={[ { name: "Home", id: "/" }, - { name: "Philosophy", id: "philosophy" }, - { name: "Menu", id: "menu" }, - { name: "Banquets", id: "banquets" }, - { name: "Delivery", id: "delivery" }, - { name: "Contacts", id: "contacts" }, + { name: "Philosophy", id: "/#philosophy" }, + { name: "Menu", id: "/#menu" }, + { name: "Banquets", id: "/#banquets" }, + { name: "Delivery", id: "/#delivery" }, + { name: "Contacts", id: "/#contacts" }, ]} - button={{ text: "Book a Table", href: "#contacts" }} + button={{ text: "Book a Table", href: "/#contacts" }} 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} /> @@ -67,17 +66,16 @@ export default function BlogPage() { logoText="Bandura's Hearth & Hall" columns={[ { items: [ - { label: "Philosophy", href: "#philosophy" }, - { label: "Menu", href: "#menu" }, - { label: "Banquets", href: "#banquets" }, + { 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" }, + { 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" /> -- 2.49.1 From cf82ce88e82246b55f7a695ca6491b2bc3e7950c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 14:29:37 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f38ee22..c61f43b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,11 +28,11 @@ export default function LandingPage() { @@ -160,8 +159,8 @@ export default function LandingPage() { ariaLabel="Contact section" className="py-20 md:py-32" contentClassName="max-w-4xl mx-auto text-center" - textBoxTitleClassName="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight" - textBoxDescriptionClassName="text-lg md:text-xl leading-relaxed mt-6" + titleClassName="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight" + descriptionClassName="text-lg md:text-xl leading-relaxed mt-6" buttonClassName="px-8 py-4 text-lg font-semibold" /> -- 2.49.1 From c0631ce66023dec7bae62a80b24dafc8de8f359d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 14:29:37 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index ec1cf46..7d4802f 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -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" }; -- 2.49.1 From b67126ae3cd71f4d8a008aaddfcbefdfe991c369 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 14:29:38 +0000 Subject: [PATCH 4/4] 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" }; -- 2.49.1