Update the website with a new photo for the online Pilates classes

Replaces `FadiaPoseImage` with `FadiaBallImage` for online classes in `class-card.tsx` and adds new image asset.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: d004b9e1-f9be-46e2-acda-f440ccd644a9
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/dc3325df-cfe8-446e-82e2-816c277f97a5.jpg
This commit is contained in:
JeffEmmett 2025-06-13 19:18:18 +00:00
parent aa750a296f
commit 8d841572f8
2 changed files with 2 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1004 KiB

View File

@ -1,9 +1,8 @@
import { Class } from "@shared/schema";
import FadiaGardenImage from "@assets/fadia-garden_1749836720986.jpg";
import PilatesClassImage from "@assets/pilates_class_1749837680834.jpeg";
import FadiaStudioImage from "@assets/Fadia-156.jpg";
import FadiaPrivateImage from "@assets/Fadia-7_1749842141071.jpg";
import FadiaPoseImage from "@assets/fadia pose_1749838215401.jpg";
import FadiaBallImage from "@assets/fadia-ball_1749842241591.jpg";
interface ClassCardProps {
classData: Class;
@ -42,7 +41,7 @@ export function ClassCard({ classData }: ClassCardProps) {
case "group": return FadiaGardenImage; // Garden outdoor class
case "small-group": return PilatesClassImage; // New uploaded class image
case "private": return FadiaPrivateImage; // Studio private session
case "online": return FadiaPoseImage; // Elegant pose for online classes
case "online": return FadiaBallImage; // Ball pose for online classes
default: return FadiaGardenImage;
}
};