From fb70ca663675cd214f315d4400d0f253f0e59d7a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 17:29:49 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 6088186..6d0b833 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -28,13 +28,13 @@ export default function BlogPage() { brandName="Baba's Bakery" navItems={[ { name: "Home", id: "/" }, - { name: "Menu", id: "products" }, - { name: "Our Story", id: "about" }, - { name: "Reviews", id: "testimonials" }, - { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" }, + { name: "Menu", id: "/#products" }, + { name: "Our Story", id: "/#about" }, + { name: "Reviews", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, ]} - button={{ text: "Order Now", href: "#products" }} + button={{ text: "Order Now", href: "/#products" }} className="py-4 px-6" buttonClassName="px-5 py-2" buttonTextClassName="font-semibold" @@ -63,27 +63,26 @@ export default function BlogPage() { columns={[ { title: "Shop", items: [ - { label: "Our Menu", href: "#products" }, - { label: "Custom Orders", href: "#contact" }, + { label: "Our Menu", href: "/#products" }, + { label: "Custom Orders", href: "/#contact" }, ], }, { title: "About", items: [ - { label: "Our Story", href: "#about" }, - { label: "Reviews", href: "#testimonials" }, + { label: "Our Story", href: "/#about" }, + { label: "Reviews", href: "/#testimonials" }, ], }, { title: "Support", items: [ - { label: "FAQ", href: "#faq" }, - { label: "Contact Us", href: "#contact" }, + { label: "FAQ", href: "/#faq" }, + { label: "Contact Us", href: "/#contact" }, ], }, ]} copyrightText="© 2024 Baba's Bakery. All rights reserved." - imageSrc="https://img.b2bpic.net/free-photo/front-view-yummy-pastries-with-eggs-flour-milk-dark-wall-bread-food-meal-breakfast-morning-milk-bird-color_179666-17655.jpg?_wi=3" + imageSrc="https://img.b2bpic.net/free-photo/front-view-yummy-pastries-with-eggs-flour-milk-dark-wall-bread-food-meal-breakfast-morning-milk-bird-color_179666-17655.jpg" imageAlt="Various Ukrainian baked goods on a rustic table" - useInvertedBackground={true} ariaLabel="Site footer with links and copyright" /> -- 2.49.1 From 6f87eb983415cdf9a4a4ea48e06f6a71f37a8788 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 17:29:50 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9a11a2b..5657c8f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -50,7 +50,7 @@ export default function LandingPage() { { text: "View Our Menu", href: "#products" }, { text: "Our Story", href: "#about" }, ]} - imageSrc="https://img.b2bpic.net/free-photo/front-view-yummy-pastries-with-eggs-flour-milk-dark-wall-bread-food-meal-breakfast-morning-milk-bird-color_179666-17655.jpg?_wi=1" + imageSrc="https://img.b2bpic.net/free-photo/front-view-yummy-pastries-with-eggs-flour-milk-dark-wall-bread-food-meal-breakfast-morning-milk-bird-color_179666-17655.jpg" imageAlt="Assortment of traditional Ukrainian pastries on a wooden table" textPosition="bottom-left" showBlur={true} @@ -95,9 +95,6 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} ariaLabel="Product section featuring Ukrainian baked goods" - titleClassName="text-4xl md:text-5xl lg:text-6xl font-bold" - descriptionClassName="text-lg md:text-xl" - tagClassName="text-foreground text-sm font-medium uppercase tracking-wider" /> @@ -117,9 +114,6 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} ariaLabel="Customer Testimonials section" - titleClassName="text-4xl md:text-5xl lg:text-6xl font-bold" - descriptionClassName="text-lg md:text-xl" - tagClassName="text-foreground text-sm font-medium uppercase tracking-wider" /> @@ -138,9 +132,6 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} ariaLabel="FAQ section for bakery" - titleClassName="text-4xl md:text-5xl lg:text-6xl font-bold" - descriptionClassName="text-lg md:text-xl" - tagClassName="text-foreground text-sm font-medium uppercase tracking-wider" /> @@ -174,7 +165,7 @@ export default function LandingPage() { { title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact Us", href: "#contact" }] }, ]} copyrightText="© 2024 Baba's Bakery. All rights reserved." - imageSrc="https://img.b2bpic.net/free-photo/front-view-yummy-pastries-with-eggs-flour-milk-dark-wall-bread-food-meal-breakfast-morning-milk-bird-color_179666-17655.jpg?_wi=2" + imageSrc="https://img.b2bpic.net/free-photo/front-view-yummy-pastries-with-eggs-flour-milk-dark-wall-bread-food-meal-breakfast-morning-milk-bird-color_179666-17655.jpg" imageAlt="Various Ukrainian baked goods on a rustic table" ariaLabel="Site footer with links and copyright" /> -- 2.49.1 From b48012b68166d4f9f456b62bf67ef8912171afb7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 17:29:51 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index a45bae1..43a7601 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -111,14 +111,13 @@ function ProductPageContent({ params }: ProductPageProps) { @@ -167,14 +166,13 @@ function ProductPageContent({ params }: ProductPageProps) { @@ -247,14 +245,13 @@ function ProductPageContent({ params }: ProductPageProps) { -- 2.49.1 From 14ead93a4f987fe42ab2cda8925d687c0856b1ab Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 17:29:51 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 3ad5c79..72c3bda 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -54,14 +54,13 @@ function ShopPageContent() { @@ -109,14 +108,13 @@ function ShopPageContent() { -- 2.49.1