From 109ca9adf7ad3e3a0d3431f632d5142bfefa1a39 Mon Sep 17 00:00:00 2001
From: JeffEmmett <20747463-JeffEmmett@users.noreply.replit.com>
Date: Sat, 14 Jun 2025 01:40:14 +0000
Subject: [PATCH] Use consistent testimonial format across the website for a
unified look
Replaces EnhancedTestimonials component with TestimonialsSection in About, Classes, and Community pages.
Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 149ccd4a-2ccb-4219-9a7b-69a9690dd7ac
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/b3b65288-6ea0-4e83-bbd7-a13118b556c5.jpg
---
client/src/pages/about-page.tsx | 4 ++--
client/src/pages/classes-page.tsx | 4 ++--
client/src/pages/community-page.tsx | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/client/src/pages/about-page.tsx b/client/src/pages/about-page.tsx
index 6d483bc..bbc1153 100644
--- a/client/src/pages/about-page.tsx
+++ b/client/src/pages/about-page.tsx
@@ -1,5 +1,5 @@
import { AboutSection } from "@/components/about/about-section";
-import { EnhancedTestimonials } from "@/components/enhanced-testimonials";
+import { TestimonialsSection } from "@/components/testimonials/testimonials-section";
import { PhotoGallery } from "@/components/photo-gallery";
import { useEffect } from "react";
@@ -17,7 +17,7 @@ export default function AboutPage() {
-
+
);
diff --git a/client/src/pages/classes-page.tsx b/client/src/pages/classes-page.tsx
index 1de7588..a22356d 100644
--- a/client/src/pages/classes-page.tsx
+++ b/client/src/pages/classes-page.tsx
@@ -1,5 +1,5 @@
import { ClassesSection } from "@/components/classes/classes-section";
-import { EnhancedTestimonials } from "@/components/enhanced-testimonials";
+import { TestimonialsSection } from "@/components/testimonials/testimonials-section";
import { PhotoGallery } from "@/components/photo-gallery";
import { useEffect } from "react";
@@ -17,7 +17,7 @@ export default function ClassesPage() {
-
+
);
diff --git a/client/src/pages/community-page.tsx b/client/src/pages/community-page.tsx
index ec50544..efb752d 100644
--- a/client/src/pages/community-page.tsx
+++ b/client/src/pages/community-page.tsx
@@ -1,5 +1,5 @@
import { CommunitySection } from "@/components/community/community-section";
-import { EnhancedTestimonials } from "@/components/enhanced-testimonials";
+import { TestimonialsSection } from "@/components/testimonials/testimonials-section";
import { PhotoGallery } from "@/components/photo-gallery";
import { useEffect } from "react";
@@ -17,7 +17,7 @@ export default function CommunityPage() {
-
+
);