diff --git a/client/src/components/about/about-section.tsx b/client/src/components/about/about-section.tsx
index f625863..2f1903d 100644
--- a/client/src/components/about/about-section.tsx
+++ b/client/src/components/about/about-section.tsx
@@ -18,7 +18,7 @@ export function AboutSection() {
-
My Pilates Story
+
My Pilates Story
I came to movement as a way to feel good in my body and begin healing emotions I hadn't yet processed. It started simply—with home yoga classes—and slowly turned into something much deeper.
diff --git a/client/src/components/about/home-about-section.tsx b/client/src/components/about/home-about-section.tsx
index e0be815..ad70440 100644
--- a/client/src/components/about/home-about-section.tsx
+++ b/client/src/components/about/home-about-section.tsx
@@ -16,7 +16,7 @@ export function HomeAboutSection() {
-
Meet Fadia
+
Meet Fadia
Fadia is a certified Pilates instructor, former lawyer, and community builder with a passion for helping people connect with their bodies through mindful movement.
diff --git a/client/src/components/classes/class-card.tsx b/client/src/components/classes/class-card.tsx
index c7407d8..c209bc0 100644
--- a/client/src/components/classes/class-card.tsx
+++ b/client/src/components/classes/class-card.tsx
@@ -1,4 +1,5 @@
import { Class } from "@shared/schema";
+import { Link } from "wouter";
import FadiaGardenImage from "@assets/fadia-garden_1749836720986.jpg";
import PilatesClassImage from "@assets/pilates_class_1749837680834.jpeg";
import FadiaPrivateImage from "@assets/Fadia-7_1749842141071.jpg";
@@ -46,24 +47,46 @@ export function ClassCard({ classData }: ClassCardProps) {
}
};
+ // Get link based on class type
+ const getClassLink = () => {
+ switch (classData.classType) {
+ case "group": return "https://nuncenter.com/";
+ case "small-group": return "https://nuncenter.com/";
+ case "private": return "/contact";
+ case "online": return "https://www.momoyoga.com/pilates-with-fadia/schedule";
+ default: return "#";
+ }
+ };
+
+ // Determine if link should open in new tab
+ const shouldOpenNewTab = (classType: string) => {
+ return classType === "group" || classType === "small-group" || classType === "online";
+ };
+
+ const linkProps = shouldOpenNewTab(classData.classType)
+ ? { href: getClassLink(), target: "_blank", rel: "noopener noreferrer" }
+ : { href: getClassLink() };
+
return (
-
diff --git a/client/src/components/testimonials/testimonials-section.tsx b/client/src/components/testimonials/testimonials-section.tsx
index 4869942..122026f 100644
--- a/client/src/components/testimonials/testimonials-section.tsx
+++ b/client/src/components/testimonials/testimonials-section.tsx
@@ -10,10 +10,10 @@ export function TestimonialsSection() {
color: "teal",
},
{
- quote: "I've seen incredible improvements in my posture and core strength since joining Fadia's classes. She truly understands how to help each individual.",
- author: "Ahmed M.",
+ quote: "Fadia’s calm and soothingly cueing had me go through the flow steadily, challenging my muscles without even realizing and that felt great!",
+ author: "Sara from Cairo",
memberSince: "",
- initials: "AM",
+ initials: "SC",
color: "purple",
},
{
diff --git a/client/src/pages/home-page.tsx b/client/src/pages/home-page.tsx
index aa44af2..8b366a2 100644
--- a/client/src/pages/home-page.tsx
+++ b/client/src/pages/home-page.tsx
@@ -5,7 +5,6 @@ import { ClassesSection } from "@/components/classes/classes-section";
import { TestimonialsSection } from "@/components/testimonials/testimonials-section";
import { ContactSection } from "@/components/contact/contact-section";
-import { CTASection } from "@/components/home/cta-section";
import { useEffect } from "react";
export default function HomePage() {
@@ -47,7 +46,6 @@ export default function HomePage() {
-
);
}