64 lines
2.5 KiB
JavaScript
64 lines
2.5 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 Subscribe from "@/components/sections/home2/Subscribe"
|
|
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 ProcessSection from "@/components/sections/home/ProcessSection"
|
|
import FaqSection from "@/components/sections/home/FaqSection"
|
|
import TeamTwo from "@/components/sections/home1/Team"
|
|
import AreaOfInjury from "@/components/sections/home/AreaOfInjury"
|
|
import News from "@/components/sections/home1/News"
|
|
import Funfacts from "@/components/sections/home1/Funfacts"
|
|
import MobileServices from "@/components/sections/home/MobileServicesSection"
|
|
import MobileFeatureCard from "@/components/sections/home/MobileFeatureCard"
|
|
import MobileBanner from "@/components/sections/home2/MobileBanner"
|
|
|
|
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>
|
|
{/* <Features /> */}
|
|
<AboutSection />
|
|
{/* <ProcessSection /> */}
|
|
{/* Desktop View */}
|
|
<div className="d-none d-md-block">
|
|
<ServicesSection />
|
|
</div>
|
|
|
|
{/* Mobile View */}
|
|
<div className="d-block d-md-none">
|
|
<MobileServices />
|
|
</div>
|
|
<MobileFeatureCard />
|
|
<Features />
|
|
<FaqSection />
|
|
<AreaOfInjury />
|
|
<WhyChooseUsSection />
|
|
<CounterSection />
|
|
{/* <Funfacts /> */}
|
|
|
|
<Solution />
|
|
<Testimonial />
|
|
<Video />
|
|
{/* <Testimonial /> */}
|
|
<News />
|
|
{/* <Subscribe /> */}
|
|
|
|
</Layout>
|
|
</>
|
|
)
|
|
}
|