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() {
- diff --git a/client/src/components/newsletter/newsletter-section.tsx b/client/src/components/newsletter/newsletter-section.tsx index 53e0541..381663a 100644 --- a/client/src/components/newsletter/newsletter-section.tsx +++ b/client/src/components/newsletter/newsletter-section.tsx @@ -58,7 +58,7 @@ export function NewsletterSection() { }; return ( -
+

@@ -77,7 +77,7 @@ export function NewsletterSection() { id="email" type="email" placeholder="Your email address" - className="px-4 py-3 bg-white border border-gray-300 placeholder-gray-500 text-gray-800 focus:outline-none focus:border-rose" + className="px-4 py-3 bg-white border border-gray-300 placeholder-gray-500 text-gray-800 focus:outline-none focus:border-teal" value={email} onChange={(e) => setEmail(e.target.value)} required