From 971be069f26cb81970b82cbeaf353c91d48d4367 Mon Sep 17 00:00:00 2001 From: JeffEmmett <20747463-JeffEmmett@users.noreply.replit.com> Date: Sat, 14 Jun 2025 01:37:23 +0000 Subject: [PATCH] Show instructor information on the home page for new website visitors Implements a home-specific About section by creating `HomeAboutSection` and importing it to `home-page.tsx`, resolving incorrect import issue. 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/23407183-70be-46e2-a5fc-9c8076d6d3c8.jpg --- .../components/about/home-about-section.tsx | 47 +++++++++++++++++++ client/src/pages/home-page.tsx | 4 +- 2 files changed, 49 insertions(+), 2 deletions(-) create mode 100644 client/src/components/about/home-about-section.tsx diff --git a/client/src/components/about/home-about-section.tsx b/client/src/components/about/home-about-section.tsx new file mode 100644 index 0000000..45e6b4e --- /dev/null +++ b/client/src/components/about/home-about-section.tsx @@ -0,0 +1,47 @@ +import { Link } from "wouter"; +import FadiaImage from "@assets/Fadia-6_1749838606834.jpg"; + +export function HomeAboutSection() { + return ( +
+
+
+
+ Fadia demonstrating Pilates pose +
+ +
+
+

Meet Fadia

+

+ Fadia is a certified Pilates instructor, former lawyer, and community builder with a passion for helping people connect with their bodies through mindful movement. +

+

+ Based between Cairo and Berlin, she brings a unique approach to her teaching, combining precision with playfulness to create classes that build strength, awareness, and joy. +

+ +
+ + + Learn More About Me + + +
+
+
+
+
+
+ ); +} \ No newline at end of file diff --git a/client/src/pages/home-page.tsx b/client/src/pages/home-page.tsx index a763544..aa44af2 100644 --- a/client/src/pages/home-page.tsx +++ b/client/src/pages/home-page.tsx @@ -1,6 +1,6 @@ import { HeroSection } from "@/components/home/hero-section"; -import { AboutSection } from "@/components/about/about-section"; +import { HomeAboutSection } from "@/components/about/home-about-section"; import { ClassesSection } from "@/components/classes/classes-section"; import { TestimonialsSection } from "@/components/testimonials/testimonials-section"; @@ -44,7 +44,7 @@ export default function HomePage() {
- +