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() { -