53 lines
2.1 KiB
JavaScript
53 lines
2.1 KiB
JavaScript
import Layout from "@/components/layout/Layout"
|
||
import Banner from "@/components/sections/home2/Banner"
|
||
import Features from "@/components/sections/home2/Features"
|
||
import Testimonial from "@/components/sections/home1/Testimonial"
|
||
import Video from "@/components/sections/home1/Video"
|
||
import Solution from "@/components/sections/home2/Solution"
|
||
import AboutSection from "@/components/sections/home/AboutSection"
|
||
import ServicesSection from "@/components/sections/home/ServicesSection"
|
||
import WhyChooseUsSection from "@/components/sections/home/WhyChooseusSection"
|
||
import CounterSection from "@/components/sections/home/CounterSection"
|
||
import FaqSection from "@/components/sections/home/FaqSection"
|
||
import AreaOfInjury from "@/components/sections/home/AreaOfInjury"
|
||
import MobileServices from "@/components/sections/home/MobileServicesSection"
|
||
import MobileFeatureCard from "@/components/sections/home/MobileFeatureCard"
|
||
import MobileBanner from "@/components/sections/home2/MobileBanner"
|
||
|
||
export const metadata = {
|
||
title: "Best Pain Relief & Physiotherapy – Rapharehab Clinic",
|
||
description: "Rapharehab offers trusted physiotherapy and pain relief treatments with professional care tailored to restore your health and mobility.",
|
||
};
|
||
|
||
export default function Home() {
|
||
|
||
return (
|
||
<>
|
||
<Layout headerStyle={2} footerStyle={2}>
|
||
<div className="d-none d-md-block">
|
||
<Banner />
|
||
</div>
|
||
<div className="d-block d-md-none">
|
||
<MobileBanner />
|
||
</div>
|
||
<AboutSection />
|
||
<div className="d-none d-md-block">
|
||
<ServicesSection />
|
||
</div>
|
||
<div className="d-block d-md-none">
|
||
<MobileServices />
|
||
</div>
|
||
<MobileFeatureCard />
|
||
<Features />
|
||
<FaqSection />
|
||
<AreaOfInjury />
|
||
<WhyChooseUsSection />
|
||
<CounterSection />
|
||
<Testimonial />
|
||
<Solution />
|
||
<Video />
|
||
|
||
</Layout>
|
||
</>
|
||
)
|
||
}
|