diff --git a/src/components/sections/BirthdayPricing.tsx b/src/components/sections/BirthdayPricing.tsx index f077492..33a1978 100644 --- a/src/components/sections/BirthdayPricing.tsx +++ b/src/components/sections/BirthdayPricing.tsx @@ -151,7 +151,7 @@ function PricingCard({ pkg }: { pkg: BirthdayPackageCMS }) {
{priceLabel && (
{priceLabel} @@ -203,7 +203,7 @@ function PricingCard({ pkg }: { pkg: BirthdayPackageCMS }) { className="h-[30px] w-[30px] flex-none rounded-[24px] object-contain" /> {f.text} diff --git a/src/components/sections/Gallery.tsx b/src/components/sections/Gallery.tsx index 5de3e0a..f5a7f1b 100644 --- a/src/components/sections/Gallery.tsx +++ b/src/components/sections/Gallery.tsx @@ -83,7 +83,7 @@ export function Gallery({ images, title }: GalleryProps) { const items: GalleryImage[] = images && images.length > 0 ? images.map((img, i) => ({ - src: getMediaUrl(img.image) ?? '/images/figma/gallery-1.webp', + src: getMediaUrl(img.image) ?? STATIC_IMAGES[i % STATIC_IMAGES.length]?.src ?? '/images/figma/gallery-2.webp', alt: img.alt ?? `Шуміленд — фото ${i + 1}`, width: i % 2 === 0 ? 320 : 380, height: 420, diff --git a/src/components/sections/WhyParents.tsx b/src/components/sections/WhyParents.tsx index eeb2e76..dec2574 100644 --- a/src/components/sections/WhyParents.tsx +++ b/src/components/sections/WhyParents.tsx @@ -135,7 +135,7 @@ export function WhyParents({ items, sideGallery, title }: WhyParentsProps) {