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
This commit is contained in:
JeffEmmett 2025-06-14 01:31:09 +00:00
parent 6cc5ad0f25
commit b398c906ba
3 changed files with 12 additions and 6 deletions

View File

@ -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() {
<main>
<div className="pt-10"></div>
<AboutSection />
<NewsletterSection />
<EnhancedTestimonials />
<PhotoGallery />
</main>
);
}

View File

@ -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() {
<main>
<div className="pt-10"></div>
<ClassesSection />
<NewsletterSection />
<EnhancedTestimonials />
<PhotoGallery />
</main>
);
}

View File

@ -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() {
<main>
<div className="pt-10"></div>
<CommunitySection />
<NewsletterSection />
<EnhancedTestimonials />
<PhotoGallery />
</main>
);
}