diff --git a/client/src/components/community/testimonial.tsx b/client/src/components/community/testimonial.tsx
index c88633c..485a14d 100644
--- a/client/src/components/community/testimonial.tsx
+++ b/client/src/components/community/testimonial.tsx
@@ -19,7 +19,7 @@ export function Testimonial({ quote, author, memberSince, initials, color }: Tes
{author}
-
Member since {memberSince}
+ {memberSince &&
Member since {memberSince}
}
diff --git a/client/src/components/testimonials/testimonials-section.tsx b/client/src/components/testimonials/testimonials-section.tsx
index d3be571..5a40a08 100644
--- a/client/src/components/testimonials/testimonials-section.tsx
+++ b/client/src/components/testimonials/testimonials-section.tsx
@@ -3,23 +3,23 @@ import { Testimonial } from "@/components/community/testimonial";
export function TestimonialsSection() {
const testimonials = [
{
- quote: "I dropped in at Fadia's Pilates more than two years ago and since then I have tried my utmost not to miss a class. It's not just a workout, it's an amazing vibe created by sweating together, laughing together and pushing the limits together.",
- author: "Ingrid from Estonia",
- memberSince: "2022",
- initials: "IE",
+ quote: "Fadia's classes are unique and challenging. Having had many pilates trainers throughout the years, I can say that Fadia is the only teacher that involved everyone's needs into one routine and focuses on motivating and engaging everyone like no other. Every time, my body felt renewed and better, even if it was online!",
+ author: "Leyla from Colombia",
+ memberSince: "",
+ initials: "LC",
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.",
- memberSince: "2022",
+ memberSince: "",
initials: "AM",
color: "purple",
},
{
quote: "The mindful approach to movement has helped my chronic back pain tremendously. I look forward to every class!",
author: "Laila K.",
- memberSince: "2023",
+ memberSince: "",
initials: "LK",
color: "rose",
}