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
This commit is contained in:
JeffEmmett 2025-06-14 01:40:14 +00:00
parent 971be069f2
commit 109ca9adf7
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
import { AboutSection } from "@/components/about/about-section"; 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 { PhotoGallery } from "@/components/photo-gallery";
import { useEffect } from "react"; import { useEffect } from "react";
@ -17,7 +17,7 @@ export default function AboutPage() {
<main> <main>
<div className="pt-10"></div> <div className="pt-10"></div>
<AboutSection /> <AboutSection />
<EnhancedTestimonials /> <TestimonialsSection />
<PhotoGallery /> <PhotoGallery />
</main> </main>
); );

View File

@ -1,5 +1,5 @@
import { ClassesSection } from "@/components/classes/classes-section"; 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 { PhotoGallery } from "@/components/photo-gallery";
import { useEffect } from "react"; import { useEffect } from "react";
@ -17,7 +17,7 @@ export default function ClassesPage() {
<main> <main>
<div className="pt-10"></div> <div className="pt-10"></div>
<ClassesSection /> <ClassesSection />
<EnhancedTestimonials /> <TestimonialsSection />
<PhotoGallery /> <PhotoGallery />
</main> </main>
); );

View File

@ -1,5 +1,5 @@
import { CommunitySection } from "@/components/community/community-section"; 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 { PhotoGallery } from "@/components/photo-gallery";
import { useEffect } from "react"; import { useEffect } from "react";
@ -17,7 +17,7 @@ export default function CommunityPage() {
<main> <main>
<div className="pt-10"></div> <div className="pt-10"></div>
<CommunitySection /> <CommunitySection />
<EnhancedTestimonials /> <TestimonialsSection />
<PhotoGallery /> <PhotoGallery />
</main> </main>
); );