diff --git a/client/src/components/testimonials/testimonials-section.tsx b/client/src/components/testimonials/testimonials-section.tsx
new file mode 100644
index 0000000..d56a736
--- /dev/null
+++ b/client/src/components/testimonials/testimonials-section.tsx
@@ -0,0 +1,56 @@
+import { Testimonial } from "@/components/community/testimonial";
+
+export function TestimonialsSection() {
+ const testimonials = [
+ {
+ quote: "Fadia's approach to Pilates has completely transformed my relationship with my body. The community she's built is supportive and encouraging.",
+ author: "Sarah H.",
+ memberSince: "2021",
+ initials: "SH",
+ 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",
+ 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",
+ initials: "LK",
+ color: "rose",
+ }
+ ];
+
+ return (
+
+
+
+
+ What My Clients Say
+
+
+ Read about the experiences and transformations of people who practice with me
+
+
+
+
+ {testimonials.map((testimonial, index) => (
+
+
+
+ ))}
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/client/src/pages/home-page.tsx b/client/src/pages/home-page.tsx
index 69c0f47..b819780 100644
--- a/client/src/pages/home-page.tsx
+++ b/client/src/pages/home-page.tsx
@@ -2,6 +2,7 @@ import { HeroSection } from "@/components/home/hero-section";
import { AboutSection } from "@/components/about/about-section";
import { ClassesSection } from "@/components/classes/classes-section";
+import { TestimonialsSection } from "@/components/testimonials/testimonials-section";
import { CommunitySection } from "@/components/community/community-section";
import { ContactSection } from "@/components/contact/contact-section";
import { CTASection } from "@/components/home/cta-section";
@@ -18,6 +19,7 @@ export default function HomePage() {
+