From f4fba66c9ba6322ab55fba8f43ac1b018c8d773f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 17:01:49 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 1a7b028..824833d 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -80,7 +80,7 @@ export default function BlogPage() { ]} logoText="Смачно Bakery" copyrightText="© 2024 Смачно Bakery. All rights reserved." - imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg" + imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg?_wi=3" imageAlt="Warm and inviting interior of a traditional Ukrainian bakery" /> -- 2.49.1 From b08474c49940e716f0c82f43decd3942b5262a23 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 17:01:50 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 32021cc..aa13ec0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -74,12 +74,12 @@ export default function SitePage() { title="Our Traditional Delights" description="From sweet Paska to savory Pyrizhky, explore our authentic selection of Ukrainian baked goods." products={[ - { id: "paska", name: "Paska", price: "$25.00", imageSrc: "https://img.b2bpic.net/free-photo/sultana-pie-slices-blue-checked-towel_114579-61932.jpg", imageAlt: "Beautifully decorated Ukrainian Easter bread, Paska" }, - { id: "pyrizhky", name: "Pyrizhky", price: "$4.50", imageSrc: "https://img.b2bpic.net/free-photo/mini-casserole-with-side-salad_140725-4052.jpg", imageAlt: "Assortment of savory Ukrainian pyrizhky pastries" }, - { id: "honey-cake", name: "Medovyk (Honey Cake)", price: "$35.00", imageSrc: "https://img.b2bpic.net/free-photo/slice-homemade-honey-cake_658428-131.jpg", imageAlt: "Delicious multi-layered Ukrainian honey cake, Medovyk" }, - { id: "varenyky-pies", name: "Varenyky (Sweet Pies)", price: "$6.00", imageSrc: "https://img.b2bpic.net/free-photo/mini-casserole-with-side-salad_140725-4052.jpg", imageAlt: "Sweet varenyky pies with fruit filling" }, - { id: "nalysnyky", name: "Nalysnyky (Crepes)", price: "$8.00", imageSrc: "https://img.b2bpic.net/free-photo/sultana-pie-slices-blue-checked-towel_114579-61932.jpg", imageAlt: "Thin Ukrainian crepes filled with cottage cheese" }, - { id: "kolach", name: "Kolach (Braided Bread)", price: "$18.00", imageSrc: "https://img.b2bpic.net/free-photo/slice-homemade-honey-cake_658428-131.jpg", imageAlt: "Round braided Ukrainian bread, Kolach" } + { id: "paska", name: "Paska", price: "$25.00", imageSrc: "https://img.b2bpic.net/free-photo/sultana-pie-slices-blue-checked-towel_114579-61932.jpg?_wi=1", imageAlt: "Beautifully decorated Ukrainian Easter bread, Paska" }, + { id: "pyrizhky", name: "Pyrizhky", price: "$4.50", imageSrc: "https://img.b2bpic.net/free-photo/mini-casserole-with-side-salad_140725-4052.jpg?_wi=1", imageAlt: "Assortment of savory Ukrainian pyrizhky pastries" }, + { id: "honey-cake", name: "Medovyk (Honey Cake)", price: "$35.00", imageSrc: "https://img.b2bpic.net/free-photo/slice-homemade-honey-cake_658428-131.jpg?_wi=1", imageAlt: "Delicious multi-layered Ukrainian honey cake, Medovyk" }, + { id: "varenyky-pies", name: "Varenyky (Sweet Pies)", price: "$6.00", imageSrc: "https://img.b2bpic.net/free-photo/mini-casserole-with-side-salad_140725-4052.jpg?_wi=2", imageAlt: "Sweet varenyky pies with fruit filling" }, + { id: "nalysnyky", name: "Nalysnyky (Crepes)", price: "$8.00", imageSrc: "https://img.b2bpic.net/free-photo/sultana-pie-slices-blue-checked-towel_114579-61932.jpg?_wi=2", imageAlt: "Thin Ukrainian crepes filled with cottage cheese" }, + { id: "kolach", name: "Kolach (Braided Bread)", price: "$18.00", imageSrc: "https://img.b2bpic.net/free-photo/slice-homemade-honey-cake_658428-131.jpg?_wi=2", imageAlt: "Round braided Ukrainian bread, Kolach" } ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -112,7 +112,7 @@ export default function SitePage() { { name: "email", type: "email", placeholder: "Your Email", required: true } ]} textarea={{ name: "message", placeholder: "Your Order / Message", rows: 5, required: true }} - imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg" + imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg?_wi=1" imageAlt="Interior of a cozy Ukrainian bakery with fresh bread" mediaAnimation="slide-up" mediaPosition="right" @@ -146,7 +146,7 @@ export default function SitePage() { ]} logoText="Смачно Bakery" copyrightText="© 2024 Смачно Bakery. All rights reserved." - imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg" + imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg?_wi=2" imageAlt="Warm and inviting interior of a traditional Ukrainian bakery" /> -- 2.49.1 From dcaa6005604c1a8bd9b21b9944ece7b26cd0e98b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 17:01:51 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index a5c1ef7..92c3618 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -113,7 +113,7 @@ function ProductPageContent({ params }: ProductPageProps) { ]} logoText="Смачно Bakery" copyrightText="© 2024 Смачно Bakery. All rights reserved." - imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg" + imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg?_wi=6" imageAlt="Warm and inviting interior of a traditional Ukrainian bakery" /> @@ -169,7 +169,7 @@ function ProductPageContent({ params }: ProductPageProps) { ]} logoText="Смачно Bakery" copyrightText="© 2024 Смачно Bakery. All rights reserved." - imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg" + imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg?_wi=7" imageAlt="Warm and inviting interior of a traditional Ukrainian bakery" /> @@ -249,7 +249,7 @@ function ProductPageContent({ params }: ProductPageProps) { ]} logoText="Смачно Bakery" copyrightText="© 2024 Смачно Bakery. All rights reserved." - imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg" + imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg?_wi=8" imageAlt="Warm and inviting interior of a traditional Ukrainian bakery" /> -- 2.49.1 From c5e0fcc353262746412af91ffe7c99f773ce7872 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 17:01:51 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index fab1208..ce8eb1b 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -80,7 +80,7 @@ function ShopPageContent() { ]} logoText="Смачно Bakery" copyrightText="© 2024 Смачно Bakery. All rights reserved." - imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg" + imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg?_wi=4" imageAlt="Warm and inviting interior of a traditional Ukrainian bakery" /> @@ -150,7 +150,7 @@ function ShopPageContent() { ]} logoText="Смачно Bakery" copyrightText="© 2024 Смачно Bakery. All rights reserved." - imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg" + imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg?_wi=5" imageAlt="Warm and inviting interior of a traditional Ukrainian bakery" /> -- 2.49.1