From 5863c9e5886bd842159287a4052b76d6e13f0833 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 21:27:28 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 159 +++++++++++------------------------------------ 1 file changed, 37 insertions(+), 122 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index fd03ae7..d64a672 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,14 +3,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FaqBase from '@/components/sections/faq/FaqBase'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; -import FooterBase from '@/components/sections/footer/FooterBase'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; export default function LandingPage() { return ( @@ -30,77 +31,30 @@ export default function LandingPage() {
@@ -108,12 +62,9 @@ export default function LandingPage() { @@ -124,15 +75,11 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} features={[ - { - id: "f1", title: "Orthopedic Rehabilitation", description: "Recover from injuries, surgery, and chronic pain with targeted treatment.", tag: "Care", imageSrc: "http://img.b2bpic.net/free-photo/patient-doing-physical-rehabilitation-helped-by-therapists_23-2149227854.jpg?_wi=2"}, - { - id: "f2", title: "Sports Performance", description: "Helping athletes safely return stronger, faster, and more confident.", tag: "Performance", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-couple-doing-workout-exercises_23-2150470970.jpg?_wi=2"}, - { - id: "f3", title: "Post-Surgical Therapy", description: "Guided rehabilitation designed to restore mobility and strength.", tag: "Recovery", imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071441.jpg?_wi=2"}, + { id: "f1", title: "Orthopedic Rehabilitation", description: "Recover from injuries, surgery, and chronic pain.", tag: "Care", imageSrc: "http://img.b2bpic.net/free-photo/patient-doing-physical-rehabilitation-helped-by-therapists_23-2149227854.jpg?_wi=2" }, + { id: "f2", title: "Sports Performance", description: "Return stronger, faster, and more confident.", tag: "Performance", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-couple-doing-workout-exercises_23-2150470970.jpg?_wi=2" }, ]} title="Healing Designed Around You" - description="Comprehensive physical therapy and movement-based solutions to restore confidence." + description="Comprehensive physical therapy solutions to restore your movement." /> @@ -141,17 +88,9 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split" gridVariant="uniform-all-items-equal" - useInvertedBackground={false} - metrics={[ - { - id: "m1", value: "500+", description: "Patients Helped"}, - { - id: "m2", value: "15", description: "Years Experience"}, - { - id: "m3", value: "4.9", description: "Average Rating"}, - ]} + metrics={[{ id: "m1", value: "500+", description: "Patients Helped" }, { id: "m2", value: "15", description: "Years Experience" }]} title="Proven Results" - description="Trusted by hundreds of families in our community." + description="Trusted by hundreds of families." /> @@ -161,73 +100,49 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} testimonials={[ - { - id: "1", name: "Sarah J.", handle: "@patient", testimonial: "They made me feel like family from day one.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/woman-with-red-rose-valentines-day_23-2148383153.jpg"}, - { - id: "2", name: "Mark R.", handle: "@athlete", testimonial: "Professional, knowledgeable, and incredibly encouraging.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/mature-age-activity-healthy-lifestyle-wellbeing-attractive-sporty-man-retirement-sitting-gym-with-his-cute-young-woman-instructor-who-is-holding-pen-clipboard-making-plan-training_343059-4791.jpg"}, - { - id: "3", name: "Emily D.", handle: "@patient", testimonial: "I could barely get out of bed before treatment. Now I’m living normally again.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/man-relaxing-taking-care-himself_23-2149288091.jpg"}, - { - id: "4", name: "David K.", handle: "@patient", testimonial: "They gave me confidence in my body again.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/woman-rehabilitation-center-getting-treatment_23-2150356697.jpg"}, - { - id: "5", name: "Linda P.", handle: "@patient", testimonial: "The entire team genuinely cares about your success.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/couple-doing-family-therapy_23-2149305190.jpg"}, + { id: "1", name: "Sarah J.", handle: "@patient", testimonial: "The best care I have ever received!", rating: 5 } ]} showRating={true} - title="Patients Feel Cared For" - description="Real transformation stories from our community." + title="Patient Success Stories" />
-
-
); -} +} \ No newline at end of file