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...

) : ( - +
+ +
)} - +
); 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() {