From b398c906baf22749b7de5248a75c9f9c274685bf Mon Sep 17 00:00:00 2001
From: JeffEmmett <20747463-JeffEmmett@users.noreply.replit.com>
Date: Sat, 14 Jun 2025 01:31:09 +0000
Subject: [PATCH] Showcase client success stories and visual content on key
website pages
Replaces NewsletterSection with EnhancedTestimonials and PhotoGallery components in AboutPage, ClassesPage, and CommunityPage.
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/4fbc3c4e-00d7-41f4-ab51-f1d060e59138.jpg
---
client/src/pages/about-page.tsx | 6 ++++--
client/src/pages/classes-page.tsx | 6 ++++--
client/src/pages/community-page.tsx | 6 ++++--
3 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/client/src/pages/about-page.tsx b/client/src/pages/about-page.tsx
index 3fdfe81..6d483bc 100644
--- a/client/src/pages/about-page.tsx
+++ b/client/src/pages/about-page.tsx
@@ -1,5 +1,6 @@
import { AboutSection } from "@/components/about/about-section";
-import { NewsletterSection } from "@/components/newsletter/newsletter-section";
+import { EnhancedTestimonials } from "@/components/enhanced-testimonials";
+import { PhotoGallery } from "@/components/photo-gallery";
import { useEffect } from "react";
export default function AboutPage() {
@@ -16,7 +17,8 @@ export default function AboutPage() {
-
+
+
);
}
diff --git a/client/src/pages/classes-page.tsx b/client/src/pages/classes-page.tsx
index ed96bc1..1de7588 100644
--- a/client/src/pages/classes-page.tsx
+++ b/client/src/pages/classes-page.tsx
@@ -1,5 +1,6 @@
import { ClassesSection } from "@/components/classes/classes-section";
-import { NewsletterSection } from "@/components/newsletter/newsletter-section";
+import { EnhancedTestimonials } from "@/components/enhanced-testimonials";
+import { PhotoGallery } from "@/components/photo-gallery";
import { useEffect } from "react";
export default function ClassesPage() {
@@ -16,7 +17,8 @@ export default function ClassesPage() {
-
+
+
);
}
diff --git a/client/src/pages/community-page.tsx b/client/src/pages/community-page.tsx
index 1c84a3a..ec50544 100644
--- a/client/src/pages/community-page.tsx
+++ b/client/src/pages/community-page.tsx
@@ -1,5 +1,6 @@
import { CommunitySection } from "@/components/community/community-section";
-import { NewsletterSection } from "@/components/newsletter/newsletter-section";
+import { EnhancedTestimonials } from "@/components/enhanced-testimonials";
+import { PhotoGallery } from "@/components/photo-gallery";
import { useEffect } from "react";
export default function CommunityPage() {
@@ -16,7 +17,8 @@ export default function CommunityPage() {
-
+
+
);
}