From 5b19c3f809a39b13903d36c448e16beb738a4840 Mon Sep 17 00:00:00 2001 From: JeffEmmett <20747463-JeffEmmett@users.noreply.replit.com> Date: Sat, 14 Jun 2025 11:39:17 +0000 Subject: [PATCH] Showcase client success stories within the main about section Moves testimonials into the AboutSection and removes the TestimonialsSection component. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 993772ca-0b6c-4a66-865f-43bf247cd140 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/a886cfcd-fc79-4131-a9a2-dcd4f75c8927.jpg --- client/src/components/about/about-section.tsx | 34 +++++++++++++++++++ client/src/pages/about-page.tsx | 2 -- client/src/pages/home-page.tsx | 2 -- 3 files changed, 34 insertions(+), 4 deletions(-) diff --git a/client/src/components/about/about-section.tsx b/client/src/components/about/about-section.tsx index 5f329a5..12ca469 100644 --- a/client/src/components/about/about-section.tsx +++ b/client/src/components/about/about-section.tsx @@ -2,6 +2,7 @@ import { Link } from "wouter"; import FadiaImage from "../../assets/Fadia-167-crop.jpg"; import FadiaBridgeImage from "@assets/fadia-bridge3_1749866400701.jpg"; import FadiaStretchImage from "@assets/fadia-stretch_1749866078708.jpg"; +import { Testimonial } from "@/components/community/testimonial"; export function AboutSection() { return ( @@ -61,6 +62,39 @@ export function AboutSection() { + + {/* Testimonials Section */} +
+
+
+ +
+
+ +
+
+ +
+
+
); diff --git a/client/src/pages/about-page.tsx b/client/src/pages/about-page.tsx index bbc1153..cba7a1e 100644 --- a/client/src/pages/about-page.tsx +++ b/client/src/pages/about-page.tsx @@ -1,5 +1,4 @@ import { AboutSection } from "@/components/about/about-section"; -import { TestimonialsSection } from "@/components/testimonials/testimonials-section"; import { PhotoGallery } from "@/components/photo-gallery"; import { useEffect } from "react"; @@ -17,7 +16,6 @@ export default function AboutPage() {
-
); diff --git a/client/src/pages/home-page.tsx b/client/src/pages/home-page.tsx index aa44af2..fe0c40f 100644 --- a/client/src/pages/home-page.tsx +++ b/client/src/pages/home-page.tsx @@ -2,7 +2,6 @@ import { HeroSection } from "@/components/home/hero-section"; import { HomeAboutSection } from "@/components/about/home-about-section"; import { ClassesSection } from "@/components/classes/classes-section"; -import { TestimonialsSection } from "@/components/testimonials/testimonials-section"; import { ContactSection } from "@/components/contact/contact-section"; import { CTASection } from "@/components/home/cta-section"; @@ -45,7 +44,6 @@ export default function HomePage() { -