From 4783cf35c65c5a902537fd1677e67109d63c73f7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 20:41:41 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 113 ++++++++++++++++++++++-------------------- 1 file changed, 59 insertions(+), 54 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 2e85d89..467d377 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -1,6 +1,5 @@ "use client"; -import React from 'react'; import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; @@ -27,67 +26,73 @@ export default function BlogPage() { headingFontWeight="bold" > - + {isLoading ? (

Loading posts...

) : ( - +
+ +
)} - +
); -- 2.49.1 From 7f51aaa5f5262123a99e67bb1a2d4a72f49d1450 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 20:41:42 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5d8e684..89d4b9b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -44,7 +44,7 @@ export default function LandingPage() { @@ -110,17 +110,17 @@ export default function LandingPage() { imageSrc: "https://img.b2bpic.net/free-photo/woman-films-vlog-praising-bio-local-shop_482257-81629.jpg"}, { id: "2", name: "Dmytro H.", role: "Food Blogger", company: "Lviv Tastings", rating: 5, - imageSrc: "https://img.b2bpic.net/free-photo/man-baker-kitchen-by-pastry-cart_1303-32295.jpg?_wi=1"}, + imageSrc: "https://img.b2bpic.net/free-photo/man-baker-kitchen-by-pastry-cart_1303-32295.jpg"}, { id: "3", name: "Anastasia M.", role: "Community Organizer", company: "Ukrainian Culture Hub", rating: 5, imageSrc: "https://img.b2bpic.net/free-photo/mother-with-little-charming-daughter-is-sitting-cafeteria-sunlight_291650-1195.jpg"}, { id: "4", name: "Serhii V.", role: "Chef", company: "Golden Spoon Restaurant", rating: 5, - imageSrc: "https://img.b2bpic.net/free-photo/man-baker-kitchen-by-pastry-cart_1303-32295.jpg?_wi=2"}, + imageSrc: "https://img.b2bpic.net/free-photo/man-baker-kitchen-by-pastry-cart_1303-32295.jpg"}, ]} textBoxClassName="p-8" - titleClassName="text-3xl md:text-4xl" - descriptionClassName="text-md md:text-lg" + textBoxTitleClassName="text-3xl md:text-4xl" + textBoxDescriptionClassName="text-md md:text-lg" cardClassName="h-96" /> @@ -142,8 +142,8 @@ export default function LandingPage() { id: "4", title: "Do you have gluten-free options?", content: "We offer a selection of gluten-free pastries. Please ask our staff for today's offerings."}, ]} textBoxClassName="p-8" - titleClassName="text-3xl md:text-4xl" - descriptionClassName="text-md md:text-lg" + textBoxTitleClassName="text-3xl md:text-4xl" + textBoxDescriptionClassName="text-md md:text-lg" />
@@ -169,7 +169,7 @@ export default function LandingPage() {