You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
import BackToTopButton from "../../shared/components/backtotop";
|
|
|
import Approach from "../../shared/components/healthcare/HowItWorksSection";
|
|
|
import Competitions from "../../shared/components/healthcare/BuildForGrowth";
|
|
|
import CustomerInsight from "../../shared/components/healthcare/MassAdoptionSection";
|
|
|
import FirstSection from "../../shared/components/healthcare/FirstSection";
|
|
|
import SectionSection from "../../shared/components/healthcare/SecondSection";
|
|
|
import ProblemsSection from "../../shared/components/healthcare/SecondSection";
|
|
|
import SolutionsOfProduct from "../../shared/components/healthcare/JoinACommunityOfMillions";
|
|
|
import MassAdoptionSection from "../../shared/components/healthcare/MassAdoptionSection";
|
|
|
import HowItWorksSection from "../../shared/components/healthcare/HowItWorksSection";
|
|
|
import BuildForGrowth from "../../shared/components/healthcare/BuildForGrowth";
|
|
|
import JoinACommunityOfMillions from "../../shared/components/healthcare/JoinACommunityOfMillions";
|
|
|
|
|
|
type Props = {};
|
|
|
|
|
|
const Healthcare = (props: Props) => {
|
|
|
return (
|
|
|
<div className="flex flex-col">
|
|
|
<FirstSection />
|
|
|
<SectionSection />
|
|
|
<MassAdoptionSection />
|
|
|
<HowItWorksSection/>
|
|
|
<BuildForGrowth />
|
|
|
<JoinACommunityOfMillions />
|
|
|
<BackToTopButton />
|
|
|
</div>
|
|
|
);
|
|
|
};
|
|
|
|
|
|
export default Healthcare;
|
|
|
|