Restored to '76c50c941a55e9525407eecd39261079a55aa85a'
Replit-Restored-To: 76c50c941a
This commit is contained in:
parent
55ed261157
commit
c223c9424f
|
|
@ -2,7 +2,6 @@ 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 (
|
||||
|
|
@ -62,39 +61,6 @@ export function AboutSection() {
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Testimonials Section */}
|
||||
<div className="mt-16">
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
<div className="bg-teal-light rounded-lg p-6 shadow-sm transition-transform duration-300 hover:scale-105">
|
||||
<Testimonial
|
||||
quote="I dropped in at Fadia's Pilates more than two years ago and since then I have tried my utmost not to miss a class. It's not just a workout, it's an amazing vibe created by sweating together, laughing together and pushing the limits together."
|
||||
author="Ingrid from Estonia"
|
||||
memberSince="2022"
|
||||
initials="IE"
|
||||
color="teal"
|
||||
/>
|
||||
</div>
|
||||
<div className="bg-teal-light rounded-lg p-6 shadow-sm transition-transform duration-300 hover:scale-105">
|
||||
<Testimonial
|
||||
quote="I've seen incredible improvements in my posture and core strength since joining Fadia's classes. She truly understands how to help each individual."
|
||||
author="Ahmed M."
|
||||
memberSince="2022"
|
||||
initials="AM"
|
||||
color="purple"
|
||||
/>
|
||||
</div>
|
||||
<div className="bg-teal-light rounded-lg p-6 shadow-sm transition-transform duration-300 hover:scale-105">
|
||||
<Testimonial
|
||||
quote="The mindful approach to movement has helped my chronic back pain tremendously. I look forward to every class!"
|
||||
author="Laila K."
|
||||
memberSince="2023"
|
||||
initials="LK"
|
||||
color="rose"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
import { Link } from "wouter";
|
||||
import FadiaImage from "@assets/Fadia-167-crop_1749865267638.jpg";
|
||||
import { Testimonial } from "@/components/community/testimonial";
|
||||
|
||||
export function HomeAboutSection() {
|
||||
return (
|
||||
|
|
@ -42,39 +41,6 @@ export function HomeAboutSection() {
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Testimonials Section */}
|
||||
<div className="mt-16">
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
<div className="bg-teal-light rounded-lg p-6 shadow-sm transition-transform duration-300 hover:scale-105">
|
||||
<Testimonial
|
||||
quote="I dropped in at Fadia's Pilates more than two years ago and since then I have tried my utmost not to miss a class. It's not just a workout, it's an amazing vibe created by sweating together, laughing together and pushing the limits together."
|
||||
author="Ingrid from Estonia"
|
||||
memberSince="2022"
|
||||
initials="IE"
|
||||
color="teal"
|
||||
/>
|
||||
</div>
|
||||
<div className="bg-teal-light rounded-lg p-6 shadow-sm transition-transform duration-300 hover:scale-105">
|
||||
<Testimonial
|
||||
quote="I've seen incredible improvements in my posture and core strength since joining Fadia's classes. She truly understands how to help each individual."
|
||||
author="Ahmed M."
|
||||
memberSince="2022"
|
||||
initials="AM"
|
||||
color="purple"
|
||||
/>
|
||||
</div>
|
||||
<div className="bg-teal-light rounded-lg p-6 shadow-sm transition-transform duration-300 hover:scale-105">
|
||||
<Testimonial
|
||||
quote="The mindful approach to movement has helped my chronic back pain tremendously. I look forward to every class!"
|
||||
author="Laila K."
|
||||
memberSince="2023"
|
||||
initials="LK"
|
||||
color="rose"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import { AboutSection } from "@/components/about/about-section";
|
||||
import { TestimonialsSection } from "@/components/testimonials/testimonials-section";
|
||||
import { PhotoGallery } from "@/components/photo-gallery";
|
||||
import { useEffect } from "react";
|
||||
|
||||
|
|
@ -16,6 +17,7 @@ export default function AboutPage() {
|
|||
<main>
|
||||
<div className="pt-10"></div>
|
||||
<AboutSection />
|
||||
<TestimonialsSection />
|
||||
<PhotoGallery />
|
||||
</main>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ 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";
|
||||
|
|
@ -44,6 +45,7 @@ export default function HomePage() {
|
|||
<HeroSection />
|
||||
<ClassesSection />
|
||||
<HomeAboutSection />
|
||||
<TestimonialsSection />
|
||||
<ContactSection />
|
||||
<CTASection />
|
||||
</main>
|
||||
|
|
|
|||
Loading…
Reference in New Issue