diff --git a/client/src/assets/Pilates with Fadia.png b/client/src/assets/Pilates with Fadia.png new file mode 100644 index 0000000..507bad2 Binary files /dev/null and b/client/src/assets/Pilates with Fadia.png differ diff --git a/client/src/components/classes/class-card.tsx b/client/src/components/classes/class-card.tsx index ad98ed0..590ac18 100644 --- a/client/src/components/classes/class-card.tsx +++ b/client/src/components/classes/class-card.tsx @@ -3,6 +3,7 @@ import { useAuth } from "@/hooks/use-auth"; import { useState } from "react"; import { useToast } from "@/hooks/use-toast"; import { useLocation } from "wouter"; +import FadiaClassImage from "../../assets/Fadia-156.jpg"; interface ClassCardProps { classData: Class; @@ -69,7 +70,7 @@ export function ClassCard({ classData, onBookClick }: ClassCardProps) { return (
{classData.name} diff --git a/client/src/components/ui/logo.tsx b/client/src/components/ui/logo.tsx index 1eb84dc..05b6ad3 100644 --- a/client/src/components/ui/logo.tsx +++ b/client/src/components/ui/logo.tsx @@ -1,4 +1,5 @@ import { Link } from "wouter"; +import LogoImage from "../../assets/Pilates with Fadia.png"; export function Logo({ className = "", size = "regular" }: { className?: string, size?: "small" | "regular" | "large" }) { const sizeClasses = { @@ -12,23 +13,11 @@ export function Logo({ className = "", size = "regular" }: { className?: string, href="/" className={`inline-block ${className}`} > - - - Pilates with Fadia - - + Pilates with Fadia ); }