diff --git a/client/src/components/classes/class-card.tsx b/client/src/components/classes/class-card.tsx index d248a88..3bea44f 100644 --- a/client/src/components/classes/class-card.tsx +++ b/client/src/components/classes/class-card.tsx @@ -49,14 +49,9 @@ export function ClassCard({ classData, onBookClick }: ClassCardProps) { } }; - // Determine button color based on class type + // All buttons use teal as the primary color const buttonColor = () => { - switch (classData.classType) { - case "group": return "bg-teal text-white"; - case "small-group": return "bg-purple text-white"; - case "private": return "bg-rose text-white"; - default: return "bg-gray-500 text-white"; - } + return "bg-teal text-white"; }; // Format class type for display diff --git a/client/src/components/community/community-section.tsx b/client/src/components/community/community-section.tsx index 89f94b8..fcc151e 100644 --- a/client/src/components/community/community-section.tsx +++ b/client/src/components/community/community-section.tsx @@ -108,7 +108,7 @@ export function CommunitySection() {