'use client' import CounterUp from "@/components/elements/CounterUp" import Layout from "@/components/layout/Layout" import Link from "next/link" import { useState } from 'react' import ModalVideo from 'react-modal-video' import { motion } from "framer-motion" const ProgressBar = ({ label, percent }) => (

{label}

{`${percent}%`}
); export default function Home() { const [isOpen, setOpen] = useState(false) const [isActive, setIsActive] = useState({ status: false, key: 1, }) const handleToggle = (key) => { if (isActive.key === key) { setIsActive({ status: false, }) } else { setIsActive({ status: true, key, }) } } return ( <>
{/* Top Intro */}

COVID 19 UPDATES

The COVID-19 pandemic has increased stress, anxiety, and mobility challenges for many people. At Rapha Rehab, your safety comes first. We offer virtual therapy, at-home physiotherapy, and mobile care as safe, effective alternatives to in-clinic treatment.

{/* Virtual Therapy (Right aligned on desktop, center on mobile) */}
Virtual Therapy

VIRTUAL THERAPY

Virtual therapy allows you to continue treatment from home through secure online sessions. Your therapist provides real-time guidance and support, offering a convenient alternative to in-clinic care.

{/* Home Therapy (Left aligned on desktop, center on mobile) */}
Home Therapy

HOME THERAPY

Home therapy brings professional physiotherapy directly to you, removing barriers such as mobility challenges or lack of transportation. By treating you in your home environment, your therapist can better assess your daily movement, personalize your program, and help you stay actively involved in your recovery.

{/* Subscribe Section */} {/*

Subscribe for the exclusive updates!

*/} ) }